<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Install and Configure Apache2 with PHP5 and SSL Support in Debian Etch</title>
	<atom:link href="http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html</link>
	<description>Debian/Ubuntu Linux System Administration Tutorials,Howtos,Tips</description>
	<lastBuildDate>Thu, 18 Mar 2010 07:47:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: zeigerpuppy</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-2#comment-4527</link>
		<dc:creator>zeigerpuppy</dc:creator>
		<pubDate>Wed, 03 Mar 2010 13:35:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-4527</guid>
		<description>I am having a problem with ubuntu dapper php5 and apache2 ssl.  php pages work fine over http but I get a blank page with https, no error message in logs.
Other https pages seem fine.  Any ideas?</description>
		<content:encoded><![CDATA[<p>I am having a problem with ubuntu dapper php5 and apache2 ssl.  php pages work fine over http but I get a blank page with https, no error message in logs.<br />
Other https pages seem fine.  Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: robert langdon</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-2#comment-4375</link>
		<dc:creator>robert langdon</dc:creator>
		<pubDate>Thu, 04 Feb 2010 14:36:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-4375</guid>
		<description>Thanks Man.
I was working on the same problem since last 4 days. But cant derive the solution. But your post has done it.
Nice work..
Keep it up.</description>
		<content:encoded><![CDATA[<p>Thanks Man.<br />
I was working on the same problem since last 4 days. But cant derive the solution. But your post has done it.<br />
Nice work..<br />
Keep it up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duir</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-2#comment-4365</link>
		<dc:creator>Duir</dc:creator>
		<pubDate>Tue, 02 Feb 2010 13:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-4365</guid>
		<description>Sorry, the command above should have been:

ln -s ../sites-available/default-ssl 001-default-ssl

, and the tag I was referring to was (got eaten up by this editor): &lt;IfModule mod_ssl.c&gt;</description>
		<content:encoded><![CDATA[<p>Sorry, the command above should have been:</p>
<p>ln -s ../sites-available/default-ssl 001-default-ssl</p>
<p>, and the tag I was referring to was (got eaten up by this editor): &lt;IfModule mod_ssl.c&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duir</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-2#comment-4364</link>
		<dc:creator>Duir</dc:creator>
		<pubDate>Tue, 02 Feb 2010 13:16:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-4364</guid>
		<description>My installation of Apache with SSL had the VirtualHosts configuration for HTTP and HTTPS split in two files: /etc/apache2/sites-available/default (80) and /etc/apache2/sites-available/default-ssl (443). 

I actually didn&#039;t have to do anything with the ports.conf, because the &quot;Listen 443&quot; was already included within the &quot;&quot; tag condition. Adding the standalone &quot;Listen 443&quot; (outside this tag) actually resulted in error.

So after I completed all the configuration and verified that apache listens on both the 80 and 443 ports (using &quot;telnet localhost 80&quot; and &quot;... 443&quot;) I still couldn&#039;t connect to https://... from the outside world. I kept getting the &quot;Invalid method in request&quot; in my error.log.

The solution was extremely simple... I had to make a symbolic link from the /etc/apache2/sites-enabled directory to the default-ssl file in ../sites-available via the command:

ln -s 001-default-ssl ../sites-available/default-ssl

, where the &quot;001-default-ssl&quot; was merely chosen - use can use whatever other name you wish.

I hope this will help. I am pretty unskilled apache administrator, so if this was clear to everyone around here, sorry :)</description>
		<content:encoded><![CDATA[<p>My installation of Apache with SSL had the VirtualHosts configuration for HTTP and HTTPS split in two files: /etc/apache2/sites-available/default (80) and /etc/apache2/sites-available/default-ssl (443). </p>
<p>I actually didn&#8217;t have to do anything with the ports.conf, because the &#8220;Listen 443&#8243; was already included within the &#8220;&#8221; tag condition. Adding the standalone &#8220;Listen 443&#8243; (outside this tag) actually resulted in error.</p>
<p>So after I completed all the configuration and verified that apache listens on both the 80 and 443 ports (using &#8220;telnet localhost 80&#8243; and &#8220;&#8230; 443&#8243;) I still couldn&#8217;t connect to <a href="https://.." rel="nofollow">https://..</a>. from the outside world. I kept getting the &#8220;Invalid method in request&#8221; in my error.log.</p>
<p>The solution was extremely simple&#8230; I had to make a symbolic link from the /etc/apache2/sites-enabled directory to the default-ssl file in ../sites-available via the command:</p>
<p>ln -s 001-default-ssl ../sites-available/default-ssl</p>
<p>, where the &#8220;001-default-ssl&#8221; was merely chosen - use can use whatever other name you wish.</p>
<p>I hope this will help. I am pretty unskilled apache administrator, so if this was clear to everyone around here, sorry <img src='http://www.debianadmin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sihker</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-4262</link>
		<dc:creator>Sihker</dc:creator>
		<pubDate>Sun, 10 Jan 2010 10:13:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-4262</guid>
		<description>Thanks for the tutorial. The half hour, that I gained using this, I lost with &quot;SSL received a record that exceeded the maximum permissible length.&quot; :D
Turns out one needs to
&lt;code&gt;
sudo a2ensite default-ssl
sudo /etc/init.d/apache2 reload
&lt;/code&gt;
to enforce the new configuration.</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial. The half hour, that I gained using this, I lost with &#8220;SSL received a record that exceeded the maximum permissible length.&#8221; <img src='http://www.debianadmin.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
Turns out one needs to<br />
<code><br />
sudo a2ensite default-ssl<br />
sudo /etc/init.d/apache2 reload<br />
</code><br />
to enforce the new configuration.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-3637</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 10 Sep 2009 20:43:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-3637</guid>
		<description>The command has to be:

openssl req $@ -new -x509 -days 365 -nodes -out /etc/apache2/ssl/apache.pem -keyout /etc/apache2/apache.pem

You missed the &quot;ssl&quot; in the first path.</description>
		<content:encoded><![CDATA[<p>The command has to be:</p>
<p>openssl req $@ -new -x509 -days 365 -nodes -out /etc/apache2/ssl/apache.pem -keyout /etc/apache2/apache.pem</p>
<p>You missed the &#8220;ssl&#8221; in the first path.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matey</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-3564</link>
		<dc:creator>matey</dc:creator>
		<pubDate>Thu, 20 Aug 2009 13:36:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-3564</guid>
		<description>Are you running it as root ?
in the terminal do;
sudo /etc/init.d/apache2 restart</description>
		<content:encoded><![CDATA[<p>Are you running it as root ?<br />
in the terminal do;<br />
sudo /etc/init.d/apache2 restart</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yogi</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-3562</link>
		<dc:creator>Yogi</dc:creator>
		<pubDate>Wed, 19 Aug 2009 18:56:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-3562</guid>
		<description>Hi,

I followed through your instruction, everything worked fine but when i run this command /etc/apache2/ports.conf it shows -bash : /etc/apache2/ports.conf : permission denied and also for this command too /etc/apache2/sites-available/default.

Please help me i am new to Debian...

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I followed through your instruction, everything worked fine but when i run this command /etc/apache2/ports.conf it shows -bash : /etc/apache2/ports.conf : permission denied and also for this command too /etc/apache2/sites-available/default.</p>
<p>Please help me i am new to Debian&#8230;</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Brown</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-3387</link>
		<dc:creator>Michael Brown</dc:creator>
		<pubDate>Mon, 20 Jul 2009 23:02:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-3387</guid>
		<description>to fix ssl_error_rx_record_too_long
I removed all
NameVirtualHost *
from other site definitions,
and addedd :80 or :443 to the virtual host </description>
		<content:encoded><![CDATA[<p>to fix ssl_error_rx_record_too_long<br />
I removed all<br />
NameVirtualHost *<br />
from other site definitions,<br />
and addedd :80 or :443 to the virtual host</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: grzech</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-2890</link>
		<dc:creator>grzech</dc:creator>
		<pubDate>Thu, 07 May 2009 16:21:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-2890</guid>
		<description>It works, it was easy. Thank you very much.</description>
		<content:encoded><![CDATA[<p>It works, it was easy. Thank you very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matey</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-2527</link>
		<dc:creator>Matey</dc:creator>
		<pubDate>Tue, 10 Mar 2009 17:45:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-2527</guid>
		<description>#  cartoonist Says:
February 24th, 2009 at 8:37 am

SOLVED! :) I unistalled all apache and libapr related package (apt-get purge) and then reinstall by:
#apt-get install apache2
Then Everything is OK!! :D


Hey Thanks for taking the time and posting the Solution!
I wished everyone did that.</description>
		<content:encoded><![CDATA[<p>#  cartoonist Says:<br />
February 24th, 2009 at 8:37 am</p>
<p>SOLVED! <img src='http://www.debianadmin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I unistalled all apache and libapr related package (apt-get purge) and then reinstall by:<br />
#apt-get install apache2<br />
Then Everything is OK!! <img src='http://www.debianadmin.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Hey Thanks for taking the time and posting the Solution!<br />
I wished everyone did that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matey</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-2480</link>
		<dc:creator>Matey</dc:creator>
		<pubDate>Wed, 04 Mar 2009 11:04:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-2480</guid>
		<description>khairul 
That is not really an error. 
Your system is working just fine it seems. 
If this is supposed to be a part of a web server and/or a domain then that is an error message otherwise if you are on a local network or not a web related server then its OK.(its looking for .com .org etc.)
I am no expert but for what I have seen the web configurations are scattered around but look into the folders called sites-available , sites-enabled etc. under /etc/apache2/...that is a good start


BTW apache2 requires a -k to start I think?!</description>
		<content:encoded><![CDATA[<p>khairul<br />
That is not really an error.<br />
Your system is working just fine it seems.<br />
If this is supposed to be a part of a web server and/or a domain then that is an error message otherwise if you are on a local network or not a web related server then its OK.(its looking for .com .org etc.)<br />
I am no expert but for what I have seen the web configurations are scattered around but look into the folders called sites-available , sites-enabled etc. under /etc/apache2/&#8230;that is a good start</p>
<p>BTW apache2 requires a -k to start I think?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: khairul</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-2477</link>
		<dc:creator>khairul</dc:creator>
		<pubDate>Tue, 03 Mar 2009 21:03:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-2477</guid>
		<description>I have followed your instruction but i get some error

#tail -f /var/log/apache2/error.log

[Wed Mar 04 02:20:28 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server&#039;s fully qualified domain name, using 221.120.101.237 for ServerName
[Wed Mar 04 02:20:28 2009] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Wed Mar 04 02:20:28 2009] [warn] RSA server certificate CommonName (CN) `Khairul&#039; does NOT match server name!?
[Wed Mar 04 02:20:28 2009] [notice] Apache/2.2.3 (Debian) PHP/5.2.0-8+etch13 mod_ssl/2.2.3 OpenSSL/0.9.8c configured -- resuming normal operations
[Wed Mar 04 02:34:57 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server&#039;s fully qualified domain name, using 221.120.101.237 for ServerName
[Wed Mar 04 02:34:57 2009] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Wed Mar 04 02:34:57 2009] [warn] RSA server certificate CommonName (CN) `Khairul&#039; does NOT match server name!?
[Wed Mar 04 02:34:57 2009] [notice] Apache/2.2.3 (Debian) PHP/5.2.0-8+etch13 mod_ssl/2.2.3 OpenSSL/0.9.8c configured -- resuming normal operations</description>
		<content:encoded><![CDATA[<p>I have followed your instruction but i get some error</p>
<p>#tail -f /var/log/apache2/error.log</p>
<p>[Wed Mar 04 02:20:28 2009] [notice] Graceful restart requested, doing restart<br />
apache2: Could not reliably determine the server&#8217;s fully qualified domain name, using 221.120.101.237 for ServerName<br />
[Wed Mar 04 02:20:28 2009] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)<br />
[Wed Mar 04 02:20:28 2009] [warn] RSA server certificate CommonName (CN) `Khairul&#8217; does NOT match server name!?<br />
[Wed Mar 04 02:20:28 2009] [notice] Apache/2.2.3 (Debian) PHP/5.2.0-8+etch13 mod_ssl/2.2.3 OpenSSL/0.9.8c configured -- resuming normal operations<br />
[Wed Mar 04 02:34:57 2009] [notice] Graceful restart requested, doing restart<br />
apache2: Could not reliably determine the server&#8217;s fully qualified domain name, using 221.120.101.237 for ServerName<br />
[Wed Mar 04 02:34:57 2009] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)<br />
[Wed Mar 04 02:34:57 2009] [warn] RSA server certificate CommonName (CN) `Khairul&#8217; does NOT match server name!?<br />
[Wed Mar 04 02:34:57 2009] [notice] Apache/2.2.3 (Debian) PHP/5.2.0-8+etch13 mod_ssl/2.2.3 OpenSSL/0.9.8c configured -- resuming normal operations</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cartoonist</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-2438</link>
		<dc:creator>cartoonist</dc:creator>
		<pubDate>Tue, 24 Feb 2009 08:37:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-2438</guid>
		<description>SOLVED! :) I unistalled all apache and libapr related package (apt-get purge) and then reinstall by:
#apt-get install apache2
Then Everything is OK!! :D</description>
		<content:encoded><![CDATA[<p>SOLVED! <img src='http://www.debianadmin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I unistalled all apache and libapr related package (apt-get purge) and then reinstall by:<br />
#apt-get install apache2<br />
Then Everything is OK!! <img src='http://www.debianadmin.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cartoonist</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-2418</link>
		<dc:creator>cartoonist</dc:creator>
		<pubDate>Thu, 19 Feb 2009 06:04:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-2418</guid>
		<description>I have a problem with Apache 2!! :(
when i start apache2:
# /etc/init.d/apache2 start
Starting web server: apache2/usr/sbin/apache2: error while loading shared libraries: libapr-1.so.0: cannot open shared object file: No such file or directory
 failed!

I&#039;ve installed &#039;libapr1&#039; but no change occures! (excuse me because of my bad english! it&#039;s not my native language!)
help me please!</description>
		<content:encoded><![CDATA[<p>I have a problem with Apache 2!! <img src='http://www.debianadmin.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
when i start apache2:<br />
# /etc/init.d/apache2 start<br />
Starting web server: apache2/usr/sbin/apache2: error while loading shared libraries: libapr-1.so.0: cannot open shared object file: No such file or directory<br />
 failed!</p>
<p>I&#8217;ve installed &#8216;libapr1&#8242; but no change occures! (excuse me because of my bad english! it&#8217;s not my native language!)<br />
help me please!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matey</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-2400</link>
		<dc:creator>matey</dc:creator>
		<pubDate>Mon, 16 Feb 2009 17:35:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-2400</guid>
		<description>when I run the apache2 force restart thing mentioned above I get this error:

ERROR:  APACHE_PID_FILE needs to be defined in /etc/apache2/envvars

But no matter how I define the PID file I still get more errors about that goofy envvar file?!
I wished some one would have taken the time to put a sample in there like most other conf. files do.</description>
		<content:encoded><![CDATA[<p>when I run the apache2 force restart thing mentioned above I get this error:</p>
<p>ERROR:  APACHE_PID_FILE needs to be defined in /etc/apache2/envvars</p>
<p>But no matter how I define the PID file I still get more errors about that goofy envvar file?!<br />
I wished some one would have taken the time to put a sample in there like most other conf. files do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: douglasmbiandou</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-2278</link>
		<dc:creator>douglasmbiandou</dc:creator>
		<pubDate>Sat, 24 Jan 2009 18:11:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-2278</guid>
		<description>Thank you very much ! It works &amp; helped me a lot.</description>
		<content:encoded><![CDATA[<p>Thank you very much ! It works &amp; helped me a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sameera Gayan</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-2254</link>
		<dc:creator>Sameera Gayan</dc:creator>
		<pubDate>Wed, 21 Jan 2009 14:02:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-2254</guid>
		<description>Hi,
I got the same issue. 
-------------------------------------------------------------------
An error occurred during a connection to localhost.

SSL received a record that exceeded the maximum permissible length.

(Error code: ssl_error_rx_record_too_long)
--------------------------------------------------------------------
Please help!!!</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I got the same issue.<br />
-------------------------------------------------------------------<br />
An error occurred during a connection to localhost.</p>
<p>SSL received a record that exceeded the maximum permissible length.</p>
<p>(Error code: ssl_error_rx_record_too_long)<br />
--------------------------------------------------------------------<br />
Please help!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dre</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-1598</link>
		<dc:creator>Dre</dc:creator>
		<pubDate>Wed, 03 Dec 2008 18:44:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-1598</guid>
		<description>Now I am getting a connection issue when trying to connect via https...

--------------------------------------------------------------------
An error occurred during a connection to mars-webserver.local.lan.

SSL received a record that exceeded the maximum permissible length.

(Error code: ssl_error_rx_record_too_long)
--------------------------------------------------------------------
What can I to correct that ?

tia :)</description>
		<content:encoded><![CDATA[<p>Now I am getting a connection issue when trying to connect via https&#8230;</p>
<p>--------------------------------------------------------------------<br />
An error occurred during a connection to mars-webserver.local.lan.</p>
<p>SSL received a record that exceeded the maximum permissible length.</p>
<p>(Error code: ssl_error_rx_record_too_long)<br />
--------------------------------------------------------------------<br />
What can I to correct that ?</p>
<p>tia <img src='http://www.debianadmin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adhelle</title>
		<link>http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html/comment-page-1#comment-1596</link>
		<dc:creator>Adhelle</dc:creator>
		<pubDate>Sun, 02 Nov 2008 13:22:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/install-and-configure-apache2-with-php5-and-ssl-support-in-debian-etch.html#comment-1596</guid>
		<description>hey,
i get an error :(

Starting web server (apache2)…(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs
failed!

help please? thanks ^^</description>
		<content:encoded><![CDATA[<p>hey,<br />
i get an error <img src='http://www.debianadmin.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Starting web server (apache2)…(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80<br />
no listening sockets available, shutting down<br />
Unable to open logs<br />
failed!</p>
<p>help please? thanks ^^</p>
]]></content:encoded>
	</item>
</channel>
</rss>
