- 论坛徽章:
- 0
|
正在配一个qmail 服务器, AS3+ MYSQL+Qmail1.03
问题:配置结束后测试 http://localhost/cgi-bin/vqadmin/vqadmin.cgi 有登陆框弹出, 但是登陆不进去,始终报 Internal Server Error (错误见下图)
配置过程:
tar zxvf vqadmin-2.3.6.tar.gz
cd vqadmin-2.3.6
./configure --enable-cgibindir=/var/www/cgi-bin --enable-htmldir=/var/www//html
make && make install-strip
成功
修改http.conf
<Directory "/var/www/cgi-bin/vqadmin">
deny from all
Options ExecCGI
AllowOverride AuthConfig
Order deny,allow
</Directory>
cd /var/www/cgi-bin/vqadmin
vi .htaccess
AuthType Basic
AuthUserFile /var/www/cgi-bin/vqadmin/.htpasswd
AuthName vQadmin
require valid-user
satisfy any
chown apache .htaccess
chmod 644 .htaccess
htpasswd -bc /var/www/cgi-bin/vqadmin/.htpasswd admin 123456
chmod 644 /var/www/cgi-bin/vqadmin/.htpasswd
apachectl stop
apachectl start
http://X.X.X.X/cgi-bin/vqadmin/vqadmin.cgi
输入 用户名 admin 密码 123456
显示
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, root@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
有谁知道这个问题怎么解决吗? 我弄了两天了,还是不行
[ 本帖最后由 yaogunrouqing 于 2006-7-20 08:58 编辑 ] |
|