我提交表单时出现错误消息“您无权访问没有访问日志”

时间:2016-06-13 11:09:50

标签: php forms apache web

我有一个在Windows服务器上使用apache 2.4的php网站。在我提交转到同一页面的表单的特定页面中,它不起作用,我有这个

  

403

禁止出现错误消息:

  

“禁止您无权访问   / cg60 / abonnes / abonne / diverse / 000000008528在这台服务器上。“

问题似乎不是 mod_security ,因为它似乎不可用或启用。 另一个奇怪的事情是我在提交表单后没有访问日志。

这是我的apache配置

Listen 443
Listen 444

SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5

SSLPassPhraseDialog  builtin


SSLSessionCache        "shmcb:c:/web/Apache/logs/ssl_scache(512000)"
SSLSessionCacheTimeout  300

<VirtualHost *:443>
DocumentRoot "C:\web\www\Extranet\web"
ServerName extranet.mef-teleassistance.com
<Directory "C:\web\www\Extranet\web">
    AllowOverride All
    Options -Indexes        
    Options -Includes
    Options -ExecCGI
    Order Deny,Allow
    Allow from All
</Directory>

ErrorLog "c:/web/Apache/logs/error.log"
TransferLog "c:/web/Apache/logs/extranet.log"

SSLEngine on
SSLCertificateFile "C:/web/Apache/conf/ssl/crt/extranet.mef-teleassistance.com.crt"
SSLCertificateKeyFile "C:/web/Apache/conf/ssl/crt/extranet.mef-teleassistance.com.key"
SSLCertificateChainFile "C:/web/Apache/conf/ssl/crt/intermediate.crt"   

<FilesMatch "\.(cgi|shtml|phtml|php)$">
    SSLOptions +StdEnvVars
</FilesMatch>
<Directory "c:/web/Apache/cgi-bin">
    SSLOptions +StdEnvVars
</Directory>

BrowserMatch "MSIE [2-5]" \
    nokeepalive ssl-unclean-shutdown \
    downgrade-1.0 force-response-1.0

0 个答案:

没有答案