Image Manager - "You don't have permission..." CMSMS 1.2 [SOLVED]

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Locked
ilia3d

Image Manager - "You don't have permission..." CMSMS 1.2 [SOLVED]

Post by ilia3d »

by trying to access Image Manager, i have this error message:
Forbidden
You don't have permission to access /lib/filemanager/ImageManager/images.php on this server.

Apache/1.3.34 Server at www.*****.** Port 1627
  :(

CHMOD is correct (i tried "777" too...)

whats can be wrong?

-----------------------------------------

Problem was in .htaccess file in /lib


was:

Code: Select all

order deny,allow
deny from all
#your admin network
allow from ***.***.*.*/** 
# allow files .js in /lib avoiding errors related to js calling e.g. tag {startExpandCollapse}
<Files ~ ".*\.js$">
 Order deny,allow
  Allow from all
</Files>
now:

Code: Select all

order deny,allow
<Files ~ ".*\.js$">
 Order deny,allow
  Allow from all
</Files>
Last edited by ilia3d on Tue Jun 17, 2008 10:37 am, edited 1 time in total.
Locked

Return to “CMSMS Core”