PHP error with responsive file manager related to a specific directory

I am using a "pluggable" response file manager ( http://www.responsivefilemanager.com ).

There are many file / path options in the config file and write / modify permissions need to be set to multiple folders. I believe everything is correct. However, this is the error I am getting:

PHP Warning: mkdir (): permission denied at D: \ genspangroup.com \ wwwroot \ models \ filemanager \ include \ utils.php on line 124

Line 124 utils.php says:

mkdir($path_thumbs, 0777, true) or die("$path_thumbs cannot be found");

      

How can I know what the value of $ path_thumbs is in this case? I tried adding "echo $ path_thumbs"; before that, but it doesn't seem to do it.

If you know the path it is trying to access, I can determine if it is a permissions issue or a problem with the $ path_thumbs parameters not being set correctly.

Thank!

+3


source to share


1 answer


The value is normal ../thumbs

, but you can adjust it in the config/config.php

file manager (line 32 in my version).



Also, if you enable PHP errors (only do this in a test environment, not in production), you will get the path as part of the error.

0


source







All Articles