I did a test code change :

    $thisMachine=getenv("HTTP_HOST");
    $location = "Location: http://$thisMachine/timekeeper/TimeKeeperForm.php?form=Record";
    echo("$location");
//    header("$location");
  
The output was: Location: http://ontario.lakeinfoworks.com/timekeeper/TimeKeeperForm.php?form=Record

I also replaced the echo line with "phpinfo();", but didn't see anything strange.

This is sure a head-scratcher.

On Mon, 2002-09-23 at 12:21, Rod Roark wrote:
Sounds like $thismachine is being set either to an empty
string or to "timekeeper".  So your hostname is probably
not set properly.

A phpinfo() call will tell you a lot.

-- Rod
   http://www.sunsetsystems.com/

On Monday 23 September 2002 11:51 am, Alan H. Lake wrote:
> I'm writing an extranet program that I plan to release under the GPL,
> but have had a problem since installing RH 7.3.  (This was a new
> install.  I've been restoring files from a backup.)  My project is in
> the directory /var/www/html/projects/timekeeper.  When I use this code
> in PHP
>
>    $thisMachine=getenv("HTTP_HOST");
>    $location = "Location:
> http://$thisMachine/timekeeper/TimeKeeperForm.php?form=Record";
>    header("$location");
>
>  or this Javascript code in
> http://ontario.lakeinfoworks.com/timekeeper/index.html
>
>    <SCRIPT LANGUAGE="JAVASCRIPT" type="text/javascript">
>        location.replace("TimeKeeperForm.php?form=Record");
>    </SCRIPT>
>
>  My browser (Mozilla 1.0) reports "resolving host timekeeper".  Then I
> get a Javascript alert "timekeeper could not be found.  Please check the
> name and try again."  This appears to be the only occasion when that my
> machine name ontario.lakeinfoworks.com is not being recognized.
>
>  Any suggestions?  Thanks.
>  Alan

_______________________________________________
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech

Reply via email to