Is there a way to know what path Catalyst is looking for the file? What was the precise error? Whatever info more you need, I am able to provide. Please
help me...

Thanks for your time reading this,

strace is your friend.

Copy your apache config to /tmp, reset it to a high port for testing, reduce the MinSpareServers to 0, MinSpareServers to 1, and set StartServers to 1 (assuming the prefork mpm here..

Then start your apache with strace -f, and grep out index.tt (i.e. say something like: sudo strace -f /usr/sbin/apache2 -f /tmp/ debugapache.conf 2>&1 | grep index.tt | tee /tmp/apache-syscalls.log)

Then hit the index page of your app, and you'll get what you want in the output...

Cheers
t0m




_______________________________________________
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/

Reply via email to