-
as seen on Server Fault
- Search for 'Server Fault'
I have a seemingly easy task, but somehow I just can't get it to work:
Some interesting lines from my httpd.conf:
...
DocumentRoot "D:/opt/apache/htdocs"
...
ScriptAlias /cgi-bin/ "D:/opt/apache/cgi-bin/"
...
<Directory "D:/opt/apache/htdocs">
Options Indexes FollowSymLinks ExecCGI
AllowOverride…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
Hi, I'm trying to install mailman + postfix + apache2 on a VPS running Ubuntu 8.10. I think I got it all according to the official Ubuntu docs. I'm getting this error though when trying to access mailman's admin page.
[Wed Jun 09 21:36:02 2010] [error] [client 77.65.61.4] (12)Cannot allocate memory:…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
500 internal server error is shown when
i access http://mysite.com/cgi-bin/test.php
test.php
<p> title here</p>
<?php
echo "hi";
?>
error log shows
(8)Exec format error: exec of '/var/www/cgi-bin/test.php' failed'.
Premature end of script headers: test.php.
solved it…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
First problem i have is i am getting 403 forbidden error for cgi-bin/
I have created a new /var/www2/ i can access it fine. php runs fine.
Second problem is I cannot password protect it. i first tried doing htpasswd, it asks for login but everytime i login it keeps asking for new one.
its getting…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I have a perl form email script on the servers cgi-bin directory ( /usr/lib/cgi-bin ).
/etc/apache2/sites-enabled/000-default
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
AddHandler…
>>> More