Update to Joomla! 3.6. Navigate to content component in the administrator panel.
OK.
"The file Cache Storage is not supported on this platform"
Ubuntu + Nginx + PHP-7-FPM
if I empty a variable public $cache_handler = 'file';
in the configuration.php
, it works.
It is writable -- 775. I do not use a custom cache path.
Hmm. Should be fine then.
https://github.com/joomla/joomla-cms/blob/staging/libraries/joomla/cache/storage/file.php#L247
is the check.
Without a custom path defined, the path constant is relative to the app.
So /administrator/cache for admin and /cache for site. Affecting both apps
or just one?
On Tuesday, July 12, 2016, Philip Sorokin notifications@github.com wrote:
It is writable -- 775. I do not use a custom cache path.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
#11083 (comment),
or mute the thread
https://github.com/notifications/unsubscribe/AAWfoUGmmksReGIKXRUkLU6g1ZMRvNMhks5qVBV_gaJpZM4JK49w
.
Labels |
Added:
?
|
In my configuration.php file, there was not a variable cache_path
, so I added one: public $cache_path = '/var/www/site/cache';
, and now it works in the administrator panel.
Oh, sorry! That was my error. This is not an issue, so, i am closing this one!
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2016-07-12 22:48:24 |
Closed_By | ⇒ | addondev | |
Labels |
Added:
?
|
The cache directory on your site should be writable. If you have a custom
cache path check that otherwise check /cache.
On Tuesday, July 12, 2016, Philip Sorokin notifications@github.com wrote: