Chào các anh chị trên HVA online,
Em có đọc và đang thực hành viêt python, thực thi py script qua CGI nhưng gặp 1 số vấn đề về cấu hình apache để chạy như sau :
file index.py có nội dung :
Code:
#!/usr/bin/python
print "Content-type: text/html; charset=UTF-8"
print "Hello!"
ở file cấu hình httpd.conf có dòng :
Code:
<Directory "/home/www/">
Options +Indexes +FollowSymLinks +ExecCGI
AddHandler cgi-script .py
AllowOverride All
Order allow,deny
Allow from all
</Directory>
trong đó thư mục /home/www là thư mục chứa file index.py
Nhưng khi duyệt thì lại đưa ra lỗi :
Code:
[Sat Jun 09 22:11:24 2012] [error] [client 113.*.*.*] (2)No such file or directory: exec of /home/www/index.py' failed,
Mọi người cho em hướng giải quyết với.