I am curious as to weither anyone has tried installing the PHP version on Win98se for testing reasons? I set up Apache for windows, PHP 4, and MySQL all to run on my computer so I can hack away at the script and see if itworks before I upload it and have to close the forums while people could be posting.
Anywho, I have several scripts running on my localhost site, but w3t is not working, I get error messages. :-(
First I get an error that there is a parse error on line 13 of main.inc.php. There shouldnt be bacause I havent touched that line :-D. Here is what the script looks like:
[:green]
// THIS NEEDS TO BE SET, OTHERWISE ADMIN SCRIPTS WILL NOT WORK
// THIS IS THE ACTUAL PATH TO YOUR PHP INSTALLATION
$thispath = "c:\program files\apache group\apache\htdocs\w3t";
include("$thispath/config.inc.php");
include("$thispath/$config[dbtype].inc.php");
include("$thispath/theme.inc.php");[:black]
Now I dont see any parse error, but all I can figure is that the problem may be that the windows path is formated with \ while the paths to the language files and such are formated with the / . Any ideas on how I can fix this problem?