You don't have permission to access /admincp/.....

shyntaxx

New Member
You don't have permission to access /admincp/...

Why do i get this message .. ? I logged in to admin cp iam the only user, and i dont have permisson .. how come ??? Please someone tell me !!
 
shyntaxx said:
You don't have permission to access /admincp/...

Why do i get this message .. ? I logged in to admin cp iam the only user, and i dont have permisson .. how come ??? Please someone tell me !!
Could be that you've set bad permissions (CHMOD) on the folder, deleted it or set wrong .htaccess file.
 
Thanks for the fast reply ..
Can you please let me know what would be the right permission ( i guess on admincp )
and/or what could be wrong in the .htaccess file ..

... the files are on 644 and the folders 755 ...

EDIT: Actualy there is no .htaccess file on the server ...
( and its not hidden )

EDIT2: So i created a .htaccess file on the server i typed the following

Code:
<IfModule mod_security.c>
   SecFilterEngine Off
   SecFilterScanPOST Off
</IfModule>


thanks ... ;)
 
one my friend have the same problem....
you typed only the following text in .htaccess ,or and this above...
because in my .htaccess write like this;
Code:
 # -FrontPage-

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName {site_name}.com
AuthUserFile server path/_vti_pvt/service.pwd
AuthGroupFile server path/_vti_pvt/service.grp
please
 
Back
Top