ok what is your domain?
You have to make sure that your server support php
jencinas69
Junior Poster in Training
68 posts since Nov 2007
Reputation Points: 10
Solved Threads: 1
do you have an index.php file?
jencinas69
Junior Poster in Training
68 posts since Nov 2007
Reputation Points: 10
Solved Threads: 1
You cant just view them.
They are web pages, they are code.
They run on a server then the server returns the HTML. Thats why its dynamic.
Sure your server supports PHP?
jbennet
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,826
Solved Threads: 601
this is the only error I get in the about us page
Notice: Undefined variable: HTTP_USER_AGENT in /home/www/fairfieldlimousine/mission.php on line 25
Notice: Undefined variable: HTTP_USER_AGENT in /home/www/fairfieldlimousine/mission.php on line 31
in this domain www.fairfieldlimousine.com
jencinas69
Junior Poster in Training
68 posts since Nov 2007
Reputation Points: 10
Solved Threads: 1
Send me the mission.php code
jencinas69
Junior Poster in Training
68 posts since Nov 2007
Reputation Points: 10
Solved Threads: 1
this is the only error I get in the about us page
Notice: Undefined variable: HTTP_USER_AGENT in /home/www/fairfieldlimousine/mission.php on line 25
Notice: Undefined variable: HTTP_USER_AGENT in /home/www/fairfieldlimousine/mission.php on line 31
in this domain www.fairfieldlimousine.com
In php versions >=4.20 global variables are turned off anti hacking security
HTTP_USER_AGENT does not exist, ($HTTP_USER_AGENT )
the old domains are running an old(V.old) version of php or have had register_globals turned on to allowbad(old) code to run
the new domain has a newer version of php, or one that has not been altered
now it is $_SERVER['HTTP_USER_AGENT']
almostbob
Posting Sensei
3,149 posts since Jan 2009
Reputation Points: 571
Solved Threads: 376