Cannot view file properties in file manager
Permalink 1 user found helpful
When I try to view file properties in the file manager, an empty dialog is shown with a spinning icon, that never disappears.
The same happens when I upload a file, and concrete wants to show its properties after the upload finishes.
Any idea why this happens?
# concrete5 Version
5.6.2.1
The same happens when I upload a file, and concrete wants to show its properties after the upload finishes.
Any idea why this happens?
# concrete5 Version
5.6.2.1
Having exactly the same problem with File Manager, Image Properties. Seems to only be a problem with latest version of C5.
Not sure if you have already found a solution, but I found one that works for me.
I copied this php file:
*root*/updates/concrete5.6.2.1_updater/concrete/libraries/3rdparty/Zend/Cache/Backend/File.php
into *root*/libraries/3rdparty/Zend/Cache/Backend/File.php (you should create this directory structure to use C5's core override feature and prevent future updates from causing problems)
I changed the following line of code in the new php file (around line 91) from
to
Hope this helps!!
I copied this php file:
*root*/updates/concrete5.6.2.1_updater/concrete/libraries/3rdparty/Zend/Cache/Backend/File.php
into *root*/libraries/3rdparty/Zend/Cache/Backend/File.php (you should create this directory structure to use C5's core override feature and prevent future updates from causing problems)
I changed the following line of code in the new php file (around line 91) from
'cache_dir' => null,
to
'cache_dir' => 'files/tmp',
Hope this helps!!
Thank you. This solved my problem.
Can anyone help shed light on this? I'll keep looking for a solution and will definitely post if I find one.