Quote:
Originally Posted by Iceman62
Ok I did that and still got the same error. I even downloaded the 1.0.9 version and tried that and still got the error. 
|
Post the error, please.
Previously you posted this:
Quote:
Inactive User Reminder Emails
Warning: include_once(/home/xxxxxxxx/public_html/forums/./includes/cron/remindermail.php) [function.include-once]: failed to open stream: No such file or directory in /admincp/cronadmin.php on line 110
Warning: include_once() [function.include]: Failed opening '/home/xxxxxxxx/public_html/forums/./includes/cron/remindermail.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /admincp/cronadmin.php on line 110
|
That error was telling you you have a bad path specification. Notice the
/./ part up there? No valid path could have that in the middle. The "./" is saying "go up one directory level and then follow the rest of the path to the correct directory". In a valid path statement, that would always be the FIRST part of the path, not stuck in the middle like that.