Sep 29 2007

HOWTO: apache2 & mod_python.publisher

Tags:, , , Ignace Mouzannar (-ghantoos-) @ 8:20 pm

After a bit of research and some debugging time, and as i couldn’t find obvious mod_python howtos, I decided to write a little Apache2/mod_python.publisher howto.

http://ghantoos.org/index.php/howto-apache2-mod_python/

Cheers,

Ghantoos


Sep 24 2007

Apache mod_python local module import

Tags:, , , Ignace Mouzannar (-ghantoos-) @ 1:39 pm

I have searched a lot before finding this tip, so I post it.
It show how to easily import with mod_python a module based on a personal .py file located somewhere on your box.
In this example, I will try to import the module bloup.py located in the same directory of my index.py mainpage.
when trying to import using the usual means, i get:

#!/usr/bin/env python
import os
import bloup
...

>>>ImportError: No module named bloup

The solution I found was:
Continue reading “Apache mod_python local module import”


Sep 18 2007

NextGen Gallery SQL script (to scan folders and add them as galleries)

Tags:, , , , , , , , Ignace Mouzannar (-ghantoos-) @ 5:51 pm

This time I needed this time to provision the NextGen SQL database with all the folders I’ve put on my server.

Again, i did a little python script. I scans your NextGen gallery folder, and enters all new folders as “galleries” in the SQL DB, and creates the thumbs for the pictures.

This was usefull for me. : )
Continue reading “NextGen Gallery SQL script (to scan folders and add them as galleries)”


Sep 14 2007

Picture database recursive copier/resizer

Tags:, , , , , , , Ignace Mouzannar (-ghantoos-) @ 4:33 pm

That a little script I did yesterday because I needed to copy my 35gig picture gallery in a new directory then resize all the pictures.

Of course, this MUST not be done “à la mano”! So i did a little python script. : ) Here it is, hope you find it of any interest.
Continue reading “Picture database recursive copier/resizer”