selinux must be off because I moved the whole folder to a backup.<br>Regarding running index.py, how? I tried this:<br>python index.py<br>and it just printed the whole thing to screen. But I can't image how there would be an indent error. (1) This exact file without edit displays fine on another server. (2) I copied the whole thing and pasted it into test.py. I can't explain the size difference.<br>
<br>[root@13gems global_solutions]# diff index.py test.py<br>1,19c1,17<br>< #!/usr/bin/python<br><<br>< import string<br>< import cgitb; cgitb.enable()<br>< import cgi<br>< import sys,os<br>< sys.path.append(os.getcwd())<br>
< from template import template<br><<br>< ourFile = string.split(__file__, "/")<br>< page = ourFile[len(ourFile) - 1][:-3]<br><<br>< form = cgi.FieldStorage()<br>< w = form.getfirst('w', '1024')<br>
<<br>< print page<br><<br>< template(page, w)<br><<br>---<br>> #!/usr/bin/python<br>><br>> import string<br>> import cgitb; cgitb.enable()<br>> import cgi<br>> import sys,os<br>> sys.path.append(os.getcwd())<br>
> from test2 import template<br>><br>> ourFile = string.split(__file__, "/")<br>> page = ourFile[len(ourFile) - 1][:-3]<br>><br>> form = cgi.FieldStorage()<br>> w = form.getfirst('w', '1024')<br>
><br>> template(page, w)<br>><br><br><br><div class="gmail_quote">On Sat, Nov 7, 2009 at 11:42 AM, Benjamin Donnachie <span dir="ltr"><<a href="mailto:benjamin@py-soft.co.uk">benjamin@py-soft.co.uk</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">2009/11/7 mark <<a href="mailto:m.roth@5-cent.us">m.roth@5-cent.us</a>>:<br>
<div class="im">>> What do you mean by 'rebooted apache'?  You have to reboot the whole machine to<br>
>> change selinlux settings.<br>
> No, you don't. Either the echo, or the setenforce command will change it.<br>
<br>
</div>Rebooting probably turned SELinux back on again.  Run the "setenforce<br>
permissive" command again and then try.<br>
<br>
Ben<br>
<div><div></div><div class="h5">_______________________________________________<br>
CentOS mailing list<br>
<a href="mailto:CentOS@centos.org">CentOS@centos.org</a><br>
<a href="http://lists.centos.org/mailman/listinfo/centos" target="_blank">http://lists.centos.org/mailman/listinfo/centos</a><br>
</div></div></blockquote></div><br>