From: James E. F. <jf...@ac...> - 2002-02-21 16:30:22
|
On Thu, 21 Feb 2002, Richard M. Pavonarius wrote: > I've installed phpESP on two other machines with no problem. I just > installed in on the real server and there's a problem. At the top of every > page I get this: > > Parse error: parse error in > /home/sites/home/web/phpESP/admin/include/lib/esphtml.results.inc on line 238 > (Line 238 is the last line of the file.) > > That file's contents are exactly the same on all three servers. What's > different is I don't have a root account on the real server so I put phpESP > in the web directory. All three servers are using php 4.1.1. On the problem > server, here's how it was compiled: --snip-- Just for kicks, could you tell me what this php code says when run on each server: <?php echo("prepend: " . ini_get("auto_prepend_file") . "<br>"); echo("append: " . ini_get("auto_append_file") . "<br>"); echo("gettext: " . (extension_loaded("gettext") ? "Yes" : "No") . "<br>"); echo("mysql: " . (extension_loaded("mysql") ? "Yes" : "No") . "<br>"); ?> Also, you could check to make sure all files have unix line breaks (\n) not DOS breaks (\r\n). -James |