formfields
Joined: 01 Aug 2005 Posts: 465
|
Posted: Wed Apr 18, 2007 3:42 pm Post subject: Forbidden - You don't have permission to access printZone |
|
|
Error messages like "Forbidden - You don't have permission to access /adMan/printZone.php" are often caused by mod_security.
While mod_security can be a very powerful tool, misconfigured or overly strict rule sets can interfere with AdMan. Apache users can avoid this error by placing the following .htaccess file in their /adMan directory to disable mod_security.
.htaccess:
| Code: |
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
|
Note: The specific problem occurs when an AdMan page attempts to pass the string "http:/" or "http%3A%2F" in the query string and gets shut down by mod_security. |
|