can any one help me ?改httpd.conf

這個版面主要討論 debian 在 server 端的應用問題, server 種類繁多..舉凡 Web Server 、 File Server、 DHCP Server..等等。

版主: 阿信

can any one help me ?改httpd.conf

文章singying304 » 週二 11月 09, 2004 12:17 am

我不知道出現了什麼問題,我的server不support cgi/也不能run 任何東東,包括html

但是default /var/www/html 裏面的就可以run

新create 的user in /home 就不能run,help pls
singying304
可愛的小學生
可愛的小學生
 
文章: 54
註冊時間: 週一 11月 08, 2004 7:00 pm

re:can any one help me ?改httpd.conf

文章singying304 » 週二 11月 09, 2004 12:36 am

Forbidden
You don't have permission to access /~temp/ on this server.

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.

會有這樣的error
singying304
可愛的小學生
可愛的小學生
 
文章: 54
註冊時間: 週一 11月 08, 2004 7:00 pm

Re: re:can any one help me ?改httpd.conf

文章chinson » 週二 11月 09, 2004 11:33 am

singying304 寫:Forbidden
You don't have permission to access /~temp/ on this server.

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.

會有這樣的error


有檢查過檔案權限嗎?看起來像是檔案權限有問題
輕鬆式生活
================================
http://blog.chinson.idv.tw/
頭像
chinson
懵懂的國中生
懵懂的國中生
 
文章: 117
註冊時間: 週一 5月 17, 2004 7:18 pm
來自: 高雄市

re:can any one help me ?改httpd.conf

文章singying304 » 週二 11月 09, 2004 9:46 pm

原來要755
thx your help~
singying304
可愛的小學生
可愛的小學生
 
文章: 54
註冊時間: 週一 11月 08, 2004 7:00 pm

re:can any one help me ?改httpd.conf

文章singying304 » 週二 11月 09, 2004 10:14 pm

還有一個問題就是run cgi

Server error!
The server encountered an internal error and was unable to complete your request.
Error message:
Premature end of script headers: tree_board.cgi
If you think this is a server error, please contact the webmaster
Error 500

help pls~
singying304
可愛的小學生
可愛的小學生
 
文章: 54
註冊時間: 週一 11月 08, 2004 7:00 pm

re:can any one help me ?改httpd.conf

文章mason » 週三 11月 10, 2004 10:57 am

Error 500,

應該是你的 cgi 有 bug 吧。
檢查一下直接在 console 下面跑會不會過。
skype:dantemason
http://blog.sikazozo.org
頭像
mason
快樂的大學生
快樂的大學生
 
文章: 547
註冊時間: 週二 9月 10, 2002 3:40 pm
來自: SIDE 3

re:can any one help me ?改httpd.conf

文章singying304 » 週三 11月 10, 2004 11:14 am

我用apache 2 rh9
default 的mod~

如何console?

thx
singying304
可愛的小學生
可愛的小學生
 
文章: 54
註冊時間: 週一 11月 08, 2004 7:00 pm

Re: re:can any one help me ?改httpd.conf

文章chinson » 週三 11月 10, 2004 4:08 pm

singying304 寫:我用apache 2 rh9
default 的mod~

如何console?

thx


如果不確定你的 apache 是否可以正常跑 cgi ,可以寫一個超簡單的 code 來試試(例如輸出一小段文字),如果可以過,那表示 apache 沒問題,是你原來的 code 有問題,至於怎麼 debug .... 用點小腦袋囉!
輕鬆式生活
================================
http://blog.chinson.idv.tw/
頭像
chinson
懵懂的國中生
懵懂的國中生
 
文章: 117
註冊時間: 週一 5月 17, 2004 7:18 pm
來自: 高雄市

Re: re:can any one help me ?改httpd.conf

文章singying304 » 週三 11月 10, 2004 5:08 pm

chinson 寫:
singying304 寫:我用apache 2 rh9
default 的mod~

如何console?

thx


如果不確定你的 apache 是否可以正常跑 cgi ,可以寫一個超簡單的 code 來試試(例如輸出一小段文字),如果可以過,那表示 apache 沒問題,是你原來的 code 有問題,至於怎麼 debug .... 用點小腦袋囉!
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "<html><body>\n";
print "<h2>Hello World !</h2>\n";
print "</body></html>\n";
exit;

這段code沒問題吧?還是不行,一直error500
請幫幫忙~如何fix這問題,我在google也找不到解決方法/.\
singying304
可愛的小學生
可愛的小學生
 
文章: 54
註冊時間: 週一 11月 08, 2004 7:00 pm

Re: re:can any one help me ?改httpd.conf

文章chinson » 週五 11月 12, 2004 4:05 am

singying304 寫:
chinson 寫:
singying304 寫:我用apache 2 rh9
default 的mod~

如何console?

thx


如果不確定你的 apache 是否可以正常跑 cgi ,可以寫一個超簡單的 code 來試試(例如輸出一小段文字),如果可以過,那表示 apache 沒問題,是你原來的 code 有問題,至於怎麼 debug .... 用點小腦袋囉!
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "<html><body>\n";
print "<h2>Hello World !</h2>\n";
print "</body></html>\n";
exit;

這段code沒問題吧?還是不行,一直error500
請幫幫忙~如何fix這問題,我在google也找不到解決方法/.\


根據您在另一篇文章的討論,我想您要先確認你的 perl 模組是否正確安裝了,而且你放置 cgi 的目錄是否有執行 cgi 的權限。
雖然以前為了打工需要曾寫過一小段時間的 perl ,不過我從沒有在系統上安裝設定過,對於這方面所知並不多,而且你好像用 red hat 系統的....

還是去鳥哥私房菜看看吧(最近怎麼常說這句話,感覺像在打廣告 ^^")
我初學伺服器架設時常參考那裡的資料,那邊也有討論區(我記得那裡是以red hat為主),或許可以找到你要的資訊。
輕鬆式生活
================================
http://blog.chinson.idv.tw/
頭像
chinson
懵懂的國中生
懵懂的國中生
 
文章: 117
註冊時間: 週一 5月 17, 2004 7:18 pm
來自: 高雄市

Re: re:can any one help me ?改httpd.conf

文章singying304 » 週五 11月 12, 2004 7:50 pm

chinson 寫:
singying304 寫:
chinson 寫:
singying304 寫:我用apache 2 rh9
default 的mod~

如何console?

thx


如果不確定你的 apache 是否可以正常跑 cgi ,可以寫一個超簡單的 code 來試試(例如輸出一小段文字),如果可以過,那表示 apache 沒問題,是你原來的 code 有問題,至於怎麼 debug .... 用點小腦袋囉!
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "<html><body>\n";
print "<h2>Hello World !</h2>\n";
print "</body></html>\n";
exit;

這段code沒問題吧?還是不行,一直error500
請幫幫忙~如何fix這問題,我在google也找不到解決方法/.\


根據您在另一篇文章的討論,我想您要先確認你的 perl 模組是否正確安裝了,而且你放置 cgi 的目錄是否有執行 cgi 的權限。
雖然以前為了打工需要曾寫過一小段時間的 perl ,不過我從沒有在系統上安裝設定過,對於這方面所知並不多,而且你好像用 red hat 系統的....

還是去鳥哥私房菜看看吧(最近怎麼常說這句話,感覺像在打廣告 ^^")
我初學伺服器架設時常參考那裡的資料,那邊也有討論區(我記得那裡是以red hat為主),或許可以找到你要的資訊。
好的,謝謝你
singying304
可愛的小學生
可愛的小學生
 
文章: 54
註冊時間: 週一 11月 08, 2004 7:00 pm


回到 debian server

誰在線上

正在瀏覽這個版面的使用者:沒有註冊會員 和 1 位訪客

cron