Quote:
Originally Posted by gigaenvy
Trill,
Yes. All files are in /includes and were transferred in binary mode and are readable. I also tried the install again, first deleting and then reuploading and the problem still occurs.
The require_once has also been verified. Looks pretty straightforward - minimal changes and no-brainer. FYI - The error above comes up very very fast.
|
OK, for the require_once, try using the full path to the includes directory. It shouldn't be required, but if you're using a mod that does a chroot, like vba_cmps, then it could cause problems, I suppose. Basically, for whatever reason, your setup isn't seeing the function_querybot.php file and the function inside of it.
In your case, change the require_once from ./includes/function_querybot.php to:
require_once('/home/mmotri2/public_html/forums/includes/function_querybot.php');
Try it and let me know.