Johan Nordenswan
johan.nordenswan.479 at student.lu.se
Thu Oct 9 17:08:33 EDT 2008
Hi Luis, I've just completed an installation of apache2, python 2.6 and mod_python 3.3 from source on a debian etch system. I ran into a similar problem. Seems mod_python.so installed itself in the "modules" directory. try changing: LoadModule python_module libexec/mod_python.so into: LoadModule python_module modules/mod_python.so just my 2 cents ;) Meanwhile, I was wondering why I can't get pydoc documentation for the mod_python package. It's in "site-packages". If I run "pydoc *.py" at it it tells me "no Python documentation found for ..." for every .py file. I had a look in the source files and there are comments in there. Anyhoo, thanks for a great piece of software Graham! I'm working to get a .com going by newyears with mysql cluster, apache and mod_python :) Bonus question: Has anyone tried psyco with mod_python? greetings from Sweden! Johan On Fri, 2008-10-10 at 09:53 +0200, Luis Speciale wrote: > Graham Dumpleton a écrit : > > 2008/10/9 Luis Speciale <info at luis-speciale.net>: > > > > > Graham Dumpleton a écrit : > > > > > > 2008/10/9 Luis Speciale <lspeciale at gmail.com>: > > > > > > > > > Graham Dumpleton a écrit : > > > > > > What errors? I don't see any. There are warnings, but they are normal. > > > > > > Looks to me like it all got installed fine. > > > > > > Did you actually try running it? > > > > > > > > > > > > When I start Apache, it doesn't works. If > > > LoadModule python_module libexec/mod_python.so > > > is uncommented. > > > > > > > > > And what error messages were there in the Apache error log? > > > > > > > > > [Wed Oct 08 17:06:50 2008] [notice] caught SIGTERM, shutting down > > > > > > What do you get when you run the command: > > > > > > /usr/sbin/apachectl -t > > > > > > > > > I get this > > > > > > /usr/sbin/apachectl -t > > > httpd: Syntax error on line 485 of /private/etc/apache2/httpd.conf: Syntax > > > error on line 8 of /private/etc/apache2/other/+entropy-php.conf: Cannot load > > > /usr/local/php5/libphp5.so into server: dlopen(/usr/local/php5/libphp5.so, > > > 10): Symbol not found: _xmlTextReaderSchemaValidate\n Referenced from: > > > /usr/local/php5/libphp5.so\n Expected in: /usr/lib/libxml2.2.dylib\n > > > > > > > Which actually indicates you have a problem with your PHP installation. > > > > Try disabling PHP altogether and then see if mod_python works okay. > > > > No, alas, it doesn't work. I tried without *ANY* php, then with the > apple fournished and its allways the same. > The most sad it's that, 3 or 4 weeks ago, i did it with the svn > version and all worked fine. But i had a crash disk and now I'm unable > to do it. I will try to find why this weekend and if I find a > solution, I'll will come back to the list. > > Thanks again, Graham. > > Cordially > > Luis > > If mod_python then works, you will need to solve your PHP problem. > > > > BTW, doesn't MacOSX Leopard supply a version of PHP. Haven't got > > access to my machine at the moment to check. > > > > Graham > > > > > > > Is the operating system supplied Python the only one on the machine or > > > have you installed another one? > > > > > > > > > No, it's the original. > > > which python > > > /usr/bin/python > > > > > > > > > python > > > Python 2.5.1 (r251:54863, Apr 15 2008, 22:57:26) > > > [GCC 4.0.1 (Apple Inc. build 5465)] on darwin > > > Type "help", "copyright", "credits" or "license" for more information. > > > > > > Graham > > > > > > > > > > > > Luis > > > > > > Graham > > > > > > 2008/10/9 Graham Dumpleton <graham.dumpleton at gmail.com>: > > > > > > > > > Please reply to the list, not to me directly. > > > > > > Graham > > > > > > 2008/10/9 Luis Speciale <lspeciale at gmail.com>: > > > > > > > > > Graham Dumpleton a écrit : > > > > > > 2008/10/8 Luis Speciale <lspeciale at gmail.com>: > > > > > > > > > Hi > > > > > > Newbie question. > > > I'm unable to checkout modpython with SCPlugin and I know i did it sometime > > > ago but I can't remember how ‡] > > > > > > It's this adress correct ? > > > svn.apache.org/repos/asf/quetzalcoatl/mod_python/trunk/ > > > > > > > > > With 'http://' at the front, yes. > > > > > > $ svn list http://svn.apache.org/repos/asf/quetzalcoatl/mod_python/trunk/ > > > COPYRIGHT > > > CREDITS > > > Doc/ > > > LICENSE > > > Makefile.in > > > NEWS > > > NOTICE > > > README > > > configure > > > configure.in > > > dist/ > > > examples/ > > > install-sh > > > lib/ > > > src/ > > > test/ > > > > > > Graham > > > > > > > > > > > > > > > > > > _______________________________________________ > > > Mod_python mailing list > > > Mod_python at modpython.org > > > http://mailman.modpython.org/mailman/listinfo/mod_python > > > > > > > > > > > > > > > _______________________________________________ > Mod_python mailing list > Mod_python at modpython.org > http://mailman.modpython.org/mailman/listinfo/mod_python
|