SimplePortal

Support => English Support => Topic started by: kai920 on July 30, 2009, 09:24:22 AM

Title: [SOLVED] Cache directory not writeable in standalone mode
Post by: kai920 on July 30, 2009, 09:24:22 AM
I'm using SP 2.2.2 with SMF 2.0 RC1.2.

SMF is installed in /forums, and I copied the standalone php file to /index.php and changed the $forum_dir variable. The portal homepage loads fine on /index.php but I'm getting this warning:

Quote
The cache directory is not writable - this will adversely affect the performance of your forum.

I've tried changing the /forums/cache directory to 777 or 775, 755 but the message persists. Note that it only appears on the portal's standalone index.php file and not anywhere else.

If SP is in the default setting of Frontpage mode I do not see the performance warning on the portal page (/forums).

Any ideas?
Title: Re: Cache directory not writeable in standalone mode
Post by: ???1031 on August 05, 2009, 02:42:32 AM
Question is it solved or did this error appear?
Title: Re: Cache directory not writeable in standalone mode
Post by: kai920 on August 05, 2009, 04:48:42 AM
Not solved.

I need some ideas on how to eliminate SP as a potential cause for this...
Title: Re: Cache directory not writeable in standalone mode
Post by: [SiNaN] on August 09, 2009, 11:48:22 AM
Well, I haven't seen this before really. Try adding this after SSI.php is included in standalone file:

var_dump($cachedir);

It will echo the relative path to cache directory. See if the path is correct.
Title: Re: Cache directory not writeable in standalone mode
Post by: kai920 on August 09, 2009, 09:57:54 PM
I included var_dump($cachedir); and it says NULL when I load the frontpage (standalone file).
Title: Re: Cache directory not writeable in standalone mode
Post by: kai920 on August 11, 2009, 02:26:00 AM
Any reason why $cachedir would be null? (I only see the warning on the standalone php page)
Title: Re: Cache directory not writeable in standalone mode
Post by: ???1031 on August 12, 2009, 05:20:18 AM
Did you disable the complete cache?
Possible this will not fill this value.
Title: Re: Cache directory not writeable in standalone mode
Post by: kai920 on August 12, 2009, 09:38:04 AM
My cache was disabled, but I changed it to Level 1 and it still shows the warning - on the standalone php page.

(is the cache warning supposed to show on other pages?)
Title: Re: Cache directory not writeable in standalone mode
Post by: ???1031 on August 15, 2009, 05:55:00 AM
No i only ask if you disabled it =). Possible that the reason why the $cachedir is empty. I want only find a hint for the empty cachdir value and this would be a good reason.
Title: Re: Cache directory not writeable in standalone mode
Post by: kai920 on August 15, 2009, 09:34:40 AM
Well as I said, I enabled caching (level 1) and the warning is still showing...
Title: Re: Cache directory not writeable in standalone mode
Post by: kai920 on September 03, 2009, 03:01:25 AM
Still seeing this on SP 2.3. Not a showstopper by any means, but I'm just curious why the message is there...
Title: Re: Cache directory not writeable in standalone mode
Post by: kai920 on September 13, 2009, 03:10:32 AM
Might be related to this.

http://dev.simplemachines.org/mantis/view.php?id=3747
Title: Re: Cache directory not writeable in standalone mode
Post by: Nathaniel on October 14, 2009, 03:52:28 AM
Sorry for the long wait on this issue.

I have another suggestion, have a look in your 'Settings.php' file.

Is the $cachedir variable defined there? index.php will give $cachedir an automatic value in case your Settings.php file is corrupt, something that SSI.php doesn't. That would explain the issue with the Standalone mod for the portal.
Title: Re: Cache directory not writeable in standalone mode
Post by: kai920 on October 14, 2009, 04:33:03 AM
Ah, you may be on to something :)

There's no $cachedir in settings.php. Should I just add it in?
Title: Re: Cache directory not writeable in standalone mode
Post by: Nathaniel on October 14, 2009, 04:38:35 AM
Yes, add it after the declaration of the $sourcedir setting. Make sure that it is the exact path to your cache directory.
Title: Re: Cache directory not writeable in standalone mode
Post by: kai920 on October 14, 2009, 05:03:26 AM
Very nice, the message is gone now. Thank you  :applause:

shouldn't this have taken care of the message in the standalone php file?

Code: [Select]
// Make absolutely sure the cache directory is defined.
if ((empty($cachedir) || !file_exists($cachedir)) && file_exists($boarddir . '/cache'))
$cachedir = $boarddir . '/cache';
Title: Re: Cache directory not writeable in standalone mode
Post by: Nathaniel on October 14, 2009, 05:13:40 AM
Yes, it should have worked anyway. I can only replicate this issue with the Settings.php file, if I remove all references to $cachedir.

My Settings.php file on a SMF 2 RC1.2 test install that was installed with the full install package works has the code below:
Code: [Select]
if (!file_exists($cachedir) && file_exists($boarddir . '/cache'))
$cachedir = $boarddir . '/cache';

Your 'checking code' for the $cachedir may be from an older version of SMF, but it should still work...

I can't say I am sure why it wasn't working, I'm glad its working now though. :)
Title: Re: Cache directory not writeable in standalone mode
Post by: kai920 on October 14, 2009, 06:02:35 AM
Tried your code, doesn't work either unless I have the specific $cachedir definition in settings.php. Strange..
Title: Re: [SOLVED] Cache directory not writeable in standalone mode
Post by: Chas on August 20, 2010, 06:58:15 AM
Just experienced the same problem. I had just enabled Level 1 Cache in SMF 2.0 RC3 with SP 2.3.2.

Previously the cache was set to No Cache.

FTP and SMF reported that the directory was set to 777 but my standalone page reported this error.

Adding $cachedir to my Settings.php file and setting the full path removed the error message.

Thanks.
SimplePortal 2.3.8 © 2008-2024, SimplePortal