Quote:
Originally Posted by iogames
Warning: chdir() [function.chdir]: No such file or directory (errno 2) in /home/iogamesc/public_html/searchresults.php on line 8
Warning: main(./global.php) [function.main]: failed to open stream: No such file or directory in /home/iogamesc/public_html/searchresults.php on line 19
Fatal error: main() [function.require]: Failed opening required './global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/iogamesc/public_html/searchresults.php on line 19
|
iogames, I suspect you need to correct the file path in file searchresults.php
From your errors above, it seems that line 8 reads
Code:
chdir('/home/iogamesc/public_html/');
However, your forum is at a subdomain:
Code:
http://chat.iogames.com/
My guess is you need to edit line 8 in searchresults.php to read as follows:
Code:
chdir('/home/iogamesc/public_html/chat/');
Try that. If it doesn't work, email me.