<div dir="ltr">I sent an example of the errors in Apache&#39;s error_log, it was like this:<br><br>[Wed Sep 17 18:30:18 2008] [notice] Apache/2.2.3 (CentOS) configured -- resuming normal operations<br>[info] *** Request 1 (0.143/s) [30709] [Wed Sep 17 18:30:24 2008] ***<br>
[debug] &quot;GET&quot; request for &quot;/&quot; from &quot;<a href="http://10.137.9.24">10.137.9.24</a>&quot;<br>[debug] Rendering template &quot;<a href="http://index.tt">index.tt</a>&quot;<br>[error] Couldn&#39;t render template &quot;file error - <a href="http://index.tt">index.tt</a>: not found&quot;<br>
[error] Couldn&#39;t render template &quot;file error - <a href="http://index.tt">index.tt</a>: not found&quot;<br>[info] Request took 0.066461s (15.046/s)<br>.----------------------------------------------------------------+-----------.<br>
| Action&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | Time&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>+----------------------------------------------------------------+-----------+<br>| /index&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | 0.000804s |<br>
| /end&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | 0.008121s |<br>|&nbsp; -&gt; LookingGlass::View::HTML-&gt;process&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | 0.004464s |<br>&#39;----------------------------------------------------------------+-----------&#39;<br>
<br><br>Not very helpful, was hoping Catalyst could be more verbose.<br><br><div class="gmail_quote">On Wed, Sep 17, 2008 at 18:25, Mesdaq, Ali <span dir="ltr">&lt;<a href="mailto:amesdaq@websense.com">amesdaq@websense.com</a>&gt;</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;">Did you try also looking at the apache error log? Might have useful information in there about file paths or permissions<br>

<br>
Thanks,<br>
------------------------------------------<br>
Ali Mesdaq (CISSP, GIAC-GREM)<br>
Sr. Security Researcher<br>
Websense Security Labs<br>
<a href="http://www.WebsenseSecurityLabs.com" target="_blank">http://www.WebsenseSecurityLabs.com</a><br>
------------------------------------------<br>
<div><div></div><div class="Wj3C7c"><br>
<br>
-----Original Message-----<br>
From: sardaukar_siet [mailto:<a href="mailto:sardaukar.siet@gmail.com">sardaukar.siet@gmail.com</a>]<br>
Sent: Wednesday, September 17, 2008 9:47 AM<br>
To: <a href="mailto:catalyst@lists.scsys.co.uk">catalyst@lists.scsys.co.uk</a><br>
Subject: [Catalyst] Help! Need help deploying app to Apache<br>
<br>
<br>
Hello all.<br>
<br>
I have a Catalyst app running fine with the _server.pl script, but trying to<br>
deploy it with mod_perl for Apache 2 has proven itself impossible... %-|<br>
<br>
Here is the file I include at the end of my httpd.conf:<br>
<br>
-----------------------------------------------------------------<br>
PerlOptions +GlobalRequest<br>
PerlSwitches -I/home/LookingGlass/LookingGlass/lib/<br>
PerlSwitches -I/home/LookingGlass/LookingGlass/lib/Net<br>
PerlModule LookingGlass<br>
<br>
<br>
&lt;Location /&gt;<br>
 &nbsp;SetHandler &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;modperl<br>
 &nbsp;PerlResponseHandler LookingGlass<br>
&lt;/Location&gt;<br>
<br>
&lt;VirtualHost *&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp;DocumentRoot /home/LookingGlass/LookingGlass/lib/<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;&lt;Directory /&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Options FollowSymLinks<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AllowOverride None<br>
 &nbsp; &nbsp; &nbsp; &nbsp;&lt;/Directory&gt;<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;&lt;Directory /home/LookingGlass/LookingGlass/root/src/ &gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Options Indexes FollowSymLinks MultiViews<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AllowOverride None<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Order allow,deny<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;allow from all<br>
 &nbsp; &nbsp; &nbsp; &nbsp;&lt;/Directory&gt;<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;ErrorLog /var/log/httpd/LookingGlass_error.log<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;LogLevel warn<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;CustomLog /var/log/httpd/LookingGlass_access.log combined<br>
 &nbsp; &nbsp; &nbsp; &nbsp;ServerSignature On<br>
<br>
&lt;/VirtualHost&gt;<br>
-----------------------------------------------------------------<br>
<br>
And here is a typical error msg when going to <a href="https://localhost/" target="_blank">https://localhost/</a>:<br>
-----------------------------------------------------------------<br>
Request<br>
<br>
bless({<br>
 &nbsp;action &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =&gt; &quot;index&quot;,<br>
 &nbsp;address &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=&gt; &quot;<a href="http://10.137.9.24" target="_blank">10.137.9.24</a>&quot;,<br>
 &nbsp;arguments &nbsp; &nbsp; &nbsp; &nbsp;=&gt; [],<br>
 &nbsp;base &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =&gt; bless(do{\(my $o = &quot;<a href="https://lgdeploy/" target="_blank">https://lgdeploy/</a>&quot;)},<br>
&quot;URI::https&quot;),<br>
 &nbsp;body_parameters &nbsp;=&gt; {},<br>
 &nbsp;captures &nbsp; &nbsp; &nbsp; &nbsp; =&gt; [],<br>
 &nbsp;cookies &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=&gt; {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;lookingglass_session =&gt; bless({<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;name &nbsp;=&gt; &quot;lookingglass_session&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;path &nbsp;=&gt; &quot;/&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;value =&gt;<br>
[&quot;e56ac9d37cac79e47e1c6de681dc67313b0da6e0&quot;],<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}, &quot;CGI::Simple::Cookie&quot;),<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;},<br>
 &nbsp;headers &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=&gt; bless({<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;accept&quot; =&gt;<br>
&quot;text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;accept-charset&quot; =&gt;<br>
&quot;ISO-8859-1,utf-8;q=0.7,*;q=0.7&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;accept-encoding&quot; =&gt; &quot;gzip,deflate&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;accept-language&quot; =&gt; &quot;en-us,en;q=0.5&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;connection =&gt; &quot;keep-alive&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;cookie =&gt;<br>
&quot;lookingglass_session=e56ac9d37cac79e47e1c6de681dc67313b0da6e0&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;host =&gt; &quot;lgdeploy&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;keep-alive&quot; =&gt; 300,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;user-agent&quot; =&gt; &quot;Mozilla/5.0 (X11; U; Linux i686;<br>
en-US; rv:<a href="http://1.9.0.1" target="_blank">1.9.0.1</a>) Gecko/2008071615 Fedora/3.0.1-1.fc9 Firefox/3.0.1&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}, &quot;HTTP::Headers&quot;),<br>
 &nbsp;hostname &nbsp; &nbsp; &nbsp; &nbsp; =&gt; undef,<br>
 &nbsp;match &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=&gt; &quot;&quot;,<br>
 &nbsp;method &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =&gt; &quot;GET&quot;,<br>
 &nbsp;parameters &nbsp; &nbsp; &nbsp; =&gt; {},<br>
 &nbsp;path &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =&gt; &quot;&quot;,<br>
 &nbsp;protocol &nbsp; &nbsp; &nbsp; &nbsp; =&gt; &quot;HTTP/1.1&quot;,<br>
 &nbsp;query_parameters =&gt; {},<br>
 &nbsp;secure &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =&gt; 1,<br>
 &nbsp;uploads &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=&gt; {},<br>
 &nbsp;uri &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=&gt; bless(do{\(my $o = &quot;<a href="https://lgdeploy/" target="_blank">https://lgdeploy/</a>&quot;)},<br>
&quot;URI::https&quot;),<br>
 &nbsp;user &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =&gt; undef,<br>
}, &quot;Catalyst::Request&quot;)<br>
<br>
Response<br>
<br>
bless({<br>
 &nbsp;body &nbsp; &nbsp;=&gt; &quot;&quot;,<br>
 &nbsp;cookies =&gt; {},<br>
 &nbsp;headers =&gt; bless({<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;content-type&quot; =&gt; &quot;text/html; charset=utf-8&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;x-catalyst&quot; &nbsp; =&gt; &quot;5.7014&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &quot;HTTP::Headers&quot;),<br>
 &nbsp;status &nbsp;=&gt; 200,<br>
}, &quot;Catalyst::Response&quot;)<br>
<br>
Stash<br>
<br>
{}<br>
<br>
Config<br>
<br>
do {<br>
 &nbsp;my $a = {<br>
 &nbsp; &nbsp;&quot;Plugin::Authentication&quot; =&gt; {},<br>
 &nbsp; &nbsp;&quot;Plugin::ConfigLoader&quot; =&gt; {},<br>
 &nbsp; &nbsp;debug =&gt; {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ignore_classes =&gt; [<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;DBIx::Class::ResultSource::Table&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;DBIx::Class::ResultSourceHandle&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;DateTime&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;],<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;scrubber_func &nbsp;=&gt; sub { &quot;???&quot; },<br>
 &nbsp; &nbsp; &nbsp; &nbsp;},<br>
 &nbsp; &nbsp;form =&gt; {},<br>
 &nbsp; &nbsp;home =&gt; &quot;/home/LookingGlass/LookingGlass&quot;,<br>
 &nbsp; &nbsp;name =&gt; &quot;LookingGlass&quot;,<br>
 &nbsp; &nbsp;root =&gt; bless({<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;dirs =&gt; [&quot;&quot;, &quot;home&quot;, &quot;LookingGlass&quot;, &quot;LookingGlass&quot;, &quot;root&quot;],<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;file_spec_class =&gt; undef,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;volume =&gt; &quot;&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp;}, &quot;Path::Class::Dir&quot;),<br>
 &nbsp; &nbsp;session =&gt; {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;cookie_name &nbsp; &nbsp;=&gt; &quot;lookingglass_session&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;expires &nbsp; &nbsp; &nbsp; &nbsp;=&gt; 7200,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;namespace &nbsp; &nbsp; &nbsp;=&gt; &quot;&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;storage &nbsp; &nbsp; &nbsp; &nbsp;=&gt; &quot;/tmp/lookingglass/session/data&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;verify_address =&gt; 0,<br>
 &nbsp; &nbsp; &nbsp; &nbsp;},<br>
 &nbsp; &nbsp;static =&gt; {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;debug =&gt; 1,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;dirs =&gt; [],<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ignore_dirs =&gt; [],<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ignore_extensions =&gt; [&quot;tmpl&quot;, &quot;tt&quot;, &quot;tt2&quot;, &quot;html&quot;, &quot;xhtml&quot;],<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;include_path =&gt; [&#39;fix&#39;],<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;mime_types =&gt; {},<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;mime_types_obj =&gt; bless({}, &quot;MIME::Types&quot;),<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;no_logs =&gt; 1,<br>
 &nbsp; &nbsp; &nbsp; &nbsp;},<br>
 &nbsp;};<br>
 &nbsp;$a-&gt;{static}{include_path}[0] = $a-&gt;{root};<br>
 &nbsp;$a;<br>
}<br>
<br>
Session ID<br>
<br>
&quot;e56ac9d37cac79e47e1c6de681dc67313b0da6e0&quot;<br>
<br>
Session<br>
<br>
{<br>
 &nbsp;__created =&gt; 1221670415,<br>
 &nbsp;__updated =&gt; 1221671167,<br>
 &nbsp;command_detail =&gt; { config =&gt; { type =&gt; &quot;normal&quot; }, name =&gt; &quot;show diag&quot;,<br>
param_list =&gt; [] },<br>
 &nbsp;user =&gt; { groups =&gt; [{ id =&gt; 1, name =&gt; &quot;Admin&quot; }], id =&gt; 1, name =&gt;<br>
&quot;Admin&quot; },<br>
}<br>
-----------------------------------------------------------------<br>
<br>
Here is Apache&#39;s ssl.conf:<br>
-----------------------------------------------------------------<br>
LoadModule ssl_module modules/mod_ssl.so<br>
Listen 443<br>
AddType application/x-x509-ca-cert .crt<br>
AddType application/x-pkcs7-crl &nbsp; &nbsp;.crl<br>
SSLPassPhraseDialog &nbsp;builtin<br>
SSLSessionCache &nbsp; &nbsp; &nbsp; &nbsp; shmcb:/var/cache/mod_ssl/scache(512000)<br>
SSLSessionCacheTimeout &nbsp;300<br>
SSLMutex default<br>
SSLRandomSeed startup file:/dev/urandom &nbsp;256<br>
SSLRandomSeed connect builtin<br>
SSLCryptoDevice builtin<br>
&lt;VirtualHost _default_:443&gt;<br>
ErrorLog logs/ssl_error_log<br>
TransferLog logs/ssl_access_log<br>
LogLevel warn<br>
SSLEngine on<br>
SSLProtocol all -SSLv2<br>
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW<br>
SSLCertificateFile /etc/pki/tls/certs/localhost.crt<br>
SSLCertificateKeyFile /etc/pki/tls/private/localhost.key<br>
&lt;Files ~ &quot;\.(cgi|shtml|phtml|php3?)$&quot;&gt;<br>
 &nbsp; &nbsp;SSLOptions +StdEnvVars<br>
&lt;/Files&gt;<br>
&lt;Directory &quot;/var/www/cgi-bin&quot;&gt;<br>
 &nbsp; &nbsp;SSLOptions +StdEnvVars<br>
&lt;/Directory&gt;<br>
<br>
SetEnvIf User-Agent &quot;.*MSIE.*&quot; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; nokeepalive ssl-unclean-shutdown \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; downgrade-1.0 force-response-1.0<br>
<br>
CustomLog logs/ssl_request_log \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \&quot;%r\&quot; %b&quot;<br>
<br>
&lt;/VirtualHost&gt;<br>
-----------------------------------------------------------------<br>
<br>
And here is what I usually get in the server script debug output:<br>
<br>
[info] *** Request 1 (0.167/s) [30473] [Wed Sep 17 18:23:35 2008] ***<br>
[debug] &quot;GET&quot; request for &quot;/&quot; from &quot;<a href="http://10.137.9.24" target="_blank">10.137.9.24</a>&quot;<br>
[debug] Rendering template &quot;<a href="http://index.tt" target="_blank">index.tt</a>&quot;<br>
[error] Couldn&#39;t render template &quot;file error - <a href="http://index.tt" target="_blank">index.tt</a>: not found&quot;<br>
[error] Couldn&#39;t render template &quot;file error - <a href="http://index.tt" target="_blank">index.tt</a>: not found&quot;<br>
[info] Request took 0.069101s (14.472/s)<br>
.----------------------------------------------------------------+-----------.<br>
| Action &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; | Time<br>
|<br>
+----------------------------------------------------------------+-----------+<br>
| /index &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; | 0.000914s<br>
|<br>
| /end &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; | 0.008844s<br>
|<br>
| &nbsp;-&gt; LookingGlass::View::HTML-&gt;process &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;| 0.004835s<br>
|<br>
&#39;----------------------------------------------------------------+-----------&#39;<br>
<br>
<br>
<br>
Is there a way to know what path Catalyst is looking for the file? What was<br>
the precise error? Whatever info more you need, I am able to provide. Please<br>
help me...<br>
<br>
Thanks for your time reading this,<br>
<br>
Bruno<br>
--<br>
View this message in context: <a href="http://www.nabble.com/Help%21-Need-help-deploying-app-to-Apache-tp19536440p19536440.html" target="_blank">http://www.nabble.com/Help%21-Need-help-deploying-app-to-Apache-tp19536440p19536440.html</a><br>

Sent from the Catalyst Web Framework mailing list archive at Nabble.com.<br>
<br>
<br>
_______________________________________________<br>
List: <a href="mailto:Catalyst@lists.scsys.co.uk">Catalyst@lists.scsys.co.uk</a><br>
Listinfo: <a href="http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst" target="_blank">http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst</a><br>
Searchable archive: <a href="http://www.mail-archive.com/catalyst@lists.scsys.co.uk/" target="_blank">http://www.mail-archive.com/catalyst@lists.scsys.co.uk/</a><br>
Dev site: <a href="http://dev.catalyst.perl.org/" target="_blank">http://dev.catalyst.perl.org/</a><br>
<br>
<br>
</div></div>&nbsp;Protected by Websense Messaging Security -- <a href="http://www.websense.com" target="_blank">www.websense.com</a><br>
<div><div></div><div class="Wj3C7c"><br>
_______________________________________________<br>
List: <a href="mailto:Catalyst@lists.scsys.co.uk">Catalyst@lists.scsys.co.uk</a><br>
Listinfo: <a href="http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst" target="_blank">http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst</a><br>
Searchable archive: <a href="http://www.mail-archive.com/catalyst@lists.scsys.co.uk/" target="_blank">http://www.mail-archive.com/catalyst@lists.scsys.co.uk/</a><br>
Dev site: <a href="http://dev.catalyst.perl.org/" target="_blank">http://dev.catalyst.perl.org/</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Bruno<br><a href="http://iruel.net">http://iruel.net</a><br>
</div>