Hey THere, Please post as much info as you can about this. Preferably the script you're executing and any information up to the point where you get the "script error" output. Thanks, ,Mike
http://www.mknexusonline.com/mkgames/mk1/mk1.php Warning: main(./global.php) [function.main]: failed to open stream: No such file or directory in /home/mkne/public_html/mkgames/mk1/mk1.php on line 10 Fatal error: main() [function.require]: Failed opening required './global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/mkne/public_html/mkgames/mk1/mk1.php on line 10
so i just copy global.php in mk1 directory now it;s show this error Warning: main(/home/mkne/public_html/mkgames/mk1/includes/init.php) [function.main]: failed to open stream: No such file or directory in /home/mkne/public_html/mkgames/mk1/global.php on line 20 Fatal error: main() [function.require]: Failed opening required '/home/mkne/public_html/mkgames/mk1/includes/init.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/mkne/public_html/mkgames/mk1/global.php on line 20
That message is basically telling you you're trying to include a file that doesn't exist. In this case, it's trying to include a file ./includes/init.php Make sure in whatever directory global.php is in: /home/mkne/public_html/mkgames/mk1/ That you copy the includes directory into there. Look inside global.php (probably at the top) for the includes (lines starting with include/require/include_once/require_once and look for the files it's including. Make sure these exist and are in the right place.