Hi guys,
Here's the latest hitch I've run into with dreamhost:
The tg_fcgi.fcgi script uses the following to load config files:
if exists(join(code_dir, "setup.py")):
turbogears.update_config(configfile=join(code_dir,
"devcfg.py"),modulename="PROJECTNAME.config")
else:
turbogears.update_config(configfile=join(code_dir,
"prodcfg.py"),modulename="PROJECTNAME.config")
Using that, it gets the configfile just fine, but the modulename gives
it trouble, because the tg_fcgi.fcgi script and project folder are in
different locations, i.e.:
/home/mikez0r/webpath/tg_fcgi.fcgi
/home/mikez0r/TGapps/photogal
How can I reconcile this difference in the modulename part of the code?
Thanks,
Mike