I sent them all back and bought some different ones. Which we are also experiencing problems with. As soon as their installed the LAN connection almost dies. Average of 80% fail on Ping. And the problem persists when unplugged and uninstalled.
I had to Ghost copy the contents from another drive...
Hello,
I have searched the internet and cant find any answers to the following question. I have an Intel 536EP modem with phone/line rj11 socket and microphone/speaker 3.5mm jacks. When I plug my headphones into the modem I can hear the person on the phone, but I can be heard with a microphone...
Yes, that page uses %0, and I assume it is like the pattern matches of grep. But it is not a reference to how to use it and therefore is not really where %0 is located in the manual.
ericbrunson:"I think the FAQ says %0 would match the entire domain, not just the glob match". A link to this is...
first make sure apache is running. Do a CTRL-ALT-DEL and use Task Manager to look at the processes currently running.
Try restarting apache to see if there are any problems with your configuration.
Then look at your httpd.conf file to see where your doc root is located and make sure there's a...
I forgot to say that you must have the re-write engine switched on.
RewriteEngine On
You may also need to add some settings in your <directory>
<Directory /www/htdocs/yoursite>
Options ExecCGI FollowSymLinks Includes MultiViews
</Directory>
so if %0 matches the *, the would the following fit with my question?
<VirtualHost *.domain.com>
UseCanonicalName off
ServerName %0.domain.com
VirtualDocumentRoot /www/domain/%0
</VirtualHost>
...after some wildcard or re-write information.
e.g.
normally I would do the following, adding each subdomain as another virtual host.
<VirtualHost *>
ServerName www.domain.com domain.com
DocumentRoot /www/domain/www
</VirtualHost>
<VirtualHost *>
ServerName subdomain.domain.com
DocumentRoot...
These are my personal time manipulation functions. I always use dates in the mysql format for consistancy (YYYY-MM-DD HH:II:SS) which avoids US/UK conversion problems and table formts are "datetime".
function timestamp_from_mysql($timestamp)
{
ereg...
Yup its apache, but you should have already done this when installing apche and php.
Edit apache's httpd.conf
----------
AddType application/x-httpd-php .php
<IfModule mod_dir.c>
DirectoryIndex index.html index.php
</IfModule>
----------
This also means that you can serve any extension...
...2 entries will limit someone from just entering single numbers in series until they hit one that works.
request.php?u=23&mid=48
$sql="SELECT * FROM table WHERE user_id=23 AND tone_id=48 AND bought_expire_date<now()";
if an entry exists get the file details otherwise display an...
Within Flash you can have a text box, with properties of Dynamic-text, Multi-line, variable "myText" and HTML ticked.
To load the external code in you can place myText= in front of the code when it is output. ie
myText=<!--#include virtual="news.txt" -->
Then use...
Change that to the following because of the / characters being encoded too
$URL="../convicts.php?currltr=$conltr#" . urlencode($convict);
header ("Location: $URL");
I tested it on 4.2.1 and it didn't work until I removed the leading spaces from your unique start and end code
You may also want to change the end code to </body>
It is good practise when dealing with scripts that use the header() function to also include session information.
When a user doesn't allow cookies and trans id is set to ON. The browser will automatically add the session id to all anchors and forms, so that is can be passed to the next page...
I am not really sure what you want to do.
Do you want to just put a link to another page or do you want to submit the details in a form to another location?
a standard help button would be :
<a href="info.php"><img src="images/button.gif" alt="Explanation"...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.