<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux Tips &#38; Tricks</title>
	<atom:link href="http://adminspanel.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://adminspanel.com</link>
	<description>Knowledge gained from Experience</description>
	<lastBuildDate>Sun, 18 Dec 2011 21:48:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>export: Command not found.</title>
		<link>http://adminspanel.com/export-command-not-found/</link>
		<comments>http://adminspanel.com/export-command-not-found/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 09:53:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux- HOWTOs and FAQs]]></category>

		<guid isPermaLink="false">http://adminspanel.com/?p=196</guid>
		<description><![CDATA[FFMPEG installation failed with following error. &#8212;- Unable to create and execute files in /tmp.  Set the TMPDIR environment variable to another directory and make sure that it is not mounted noexec. Sanity test failed. &#8212;- Tried the normal fix. &#8230; <a href="http://adminspanel.com/export-command-not-found/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>FFMPEG installation failed with following error.</p>
<p>&#8212;-<br />
Unable to create and execute files in /tmp.  Set the TMPDIR environment<br />
variable to another directory and make sure that it is not mounted noexec.<br />
Sanity test failed.<br />
&#8212;-</p>
<p>Tried the normal fix.</p>
<p>&#8212;-<br />
mkdir /usr/local/src/tmp<br />
chmod 777 /usr/local/src/tmp<br />
export TMPDIR=/usr/local/src/tmp<br />
export: Command not found.<br />
&#8212;-</p>
<p>On further investigation, noticed that server was using tcsh shell.  All shells don&#8217;t support &#8216;export&#8217;.  For example, bash shell support it, but &#8216;tcsh&#8217; dont support.</p>
<p>You can use command &#8216;setenv&#8217; in cases like this.</p>
<p>setenv TMPDIR /usr/local/src/tmp</p>
<p>Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://adminspanel.com/export-command-not-found/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL database not showing in cPanel</title>
		<link>http://adminspanel.com/mysql-database-not-showing-in-cpanel/</link>
		<comments>http://adminspanel.com/mysql-database-not-showing-in-cpanel/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 08:10:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://adminspanel.com/?p=192</guid>
		<description><![CDATA[If database is not showing in cpanel, make sure database exists in the server. If it exists, make sure permission/ownership of database is correct. Then check whether database details are listed in /var/cpanel/databases/username.yaml If it is not listed in it, &#8230; <a href="http://adminspanel.com/mysql-database-not-showing-in-cpanel/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If database is not showing in cpanel, make sure database exists in the server. If it exists, make sure permission/ownership of database is correct.</p>
<p>Then check whether database details are listed in /var/cpanel/databases/username.yaml</p>
<p>If it is not listed in it, run following command to fix it.</p>
<p>/usr/local/cpanel/bin/setupdbmap</p>
<p>Check cpanel and database should be listed in it.</p>
<p>If database size is zero while listing, run the following command to fix it.</p>
<p>/scripts/update_db_cache</p>
]]></content:encoded>
			<wfw:commentRss>http://adminspanel.com/mysql-database-not-showing-in-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>configure: error: DOM extension requires LIBXML extension, easyapache</title>
		<link>http://adminspanel.com/configure-error-dom-extension-requires-libxml-extension-easyapache/</link>
		<comments>http://adminspanel.com/configure-error-dom-extension-requires-libxml-extension-easyapache/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 02:48:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://adminspanel.com/?p=189</guid>
		<description><![CDATA[While recompiling php using easyapache in a cpanel server, I got stuck with following error: &#8212;&#8212;- configure: error: DOM extension requires LIBXML extension, add &#8211;enable-libxml !! &#8216;./configure &#8211;disable-libxml &#8211;enable-bcmath &#8211;enable-calendar &#8211;enable-ftp &#8211;enable-gd-native-ttf &#8211;enable-magic-quotes &#8211;enable-mbstring &#8211;enable-pdo=shared &#8211;enable-sockets &#8211;prefix=/usr/local &#8211;with-apxs2=/usr/local/apache/bin/apxs &#8211;with-curl=/opt/curlssl/ &#8211;with-freetype-dir=/usr &#8230; <a href="http://adminspanel.com/configure-error-dom-extension-requires-libxml-extension-easyapache/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While recompiling php using easyapache in a cpanel server, I got stuck with following error:</p>
<p>&#8212;&#8212;-</p>
<p>configure: error: DOM extension requires LIBXML extension, add &#8211;enable-libxml<br />
!! &#8216;./configure &#8211;disable-libxml &#8211;enable-bcmath &#8211;enable-calendar &#8211;enable-ftp &#8211;enable-gd-native-ttf &#8211;enable-magic-quotes &#8211;enable-mbstring &#8211;enable-pdo=shared &#8211;enable-sockets &#8211;prefix=/usr/local &#8211;with-apxs2=/usr/local/apache/bin/apxs &#8211;with-curl=/opt/curlssl/ &#8211;with-freetype-dir=/usr &#8211;with-gd &#8211;with-gettext &#8211;with-imap=/opt/php_with_imap_client/ &#8211;with-imap-ssl=/usr &#8211;with-jpeg-dir=/usr &#8211;with-kerberos &#8211;with-libexpat-dir=/usr &#8211;with-mcrypt=/opt/libmcrypt/ &#8211;with-mhash=/opt/mhash/ &#8211;with-mysql=/usr &#8211;with-mysql-sock=/var/lib/mysql/mysql.sock &#8211;with-mysqli=/usr/bin/mysql_config &#8211;with-openssl=/usr &#8211;with-openssl-dir=/usr &#8211;with-pcre-regex=/opt/pcre &#8211;with-pdo-mysql=shared &#8211;with-pdo-sqlite=shared &#8211;with-png-dir=/usr &#8211;with-sqlite=shared &#8211;with-ttf &#8211;with-xmlrpc &#8211;with-xpm-dir=/usr/X11R6 &#8211;with-zlib &#8211;with-zlib-dir=/usr&#8217; failed with exit code &#8217;256&#8242; !!</p>
<p>&#8212;&#8212;</p>
<p>I have applied following fix to get it working.</p>
<p>yum install rpm-build<br />
cd /usr/src<br />
wget <a href="http://ftp.man.poznan.pl/pub/linux/fedora/core/5/source/SRPMS/zlib-1.2.3-1.2.1.src.rpm">http://ftp.man.poznan.pl/pub/linux/fedora/core/5/source/SRPMS/zlib-1.2.3-1.2.1.src.rpm</a><br />
rpmbuild &#8211;rebuild zlib-1.2.3-1.2.1.src.rpm<br />
rpm -Uhv /usr/src/redhat/RPMS/i386/zlib-*1.2.3-1.2.1.i386.rpm</p>
<p>I have noticed this error mainly in centOS 4 version.</p>
<p>Hope this helps.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://adminspanel.com/configure-error-dom-extension-requires-libxml-extension-easyapache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dovecot: unable to connect to localhost:143</title>
		<link>http://adminspanel.com/dovecot-unable-to-connect-to-localhost143-2/</link>
		<comments>http://adminspanel.com/dovecot-unable-to-connect-to-localhost143-2/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 10:53:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://adminspanel.com/?p=186</guid>
		<description><![CDATA[If you&#8217;re using dovecot instead of courier imap in cpanel server and get the following error while trying to login to squirrel mail. Warning: fsockopen() [function.fsockopen]: unable to connect to localhost:143 (Connection refused) in /usr/local/cpanel/base/3rdparty/squirrelmail/plugins/login_auth/functions.php on line 129 Check whether &#8230; <a href="http://adminspanel.com/dovecot-unable-to-connect-to-localhost143-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re using dovecot instead of courier imap in cpanel server and get  the following error while trying to login to squirrel mail.</p>
<p>Warning:  fsockopen() [function.fsockopen]: unable to connect to localhost:143  (Connection refused) in  /usr/local/cpanel/base/3rdparty/squirrelmail/plugins/login_auth/functions.php  on line 129</p>
<p>Check whether IMAP service is running. If no, try restarting dovecot.</p>
<p>If imap service is not getting started, open the file /etc/dovecot.conf and add imap/imaps to protocols line as follows:</p>
<p>protocols = pop3 pop3s imap imaps</p>
<p>Then restart dovecot using the command /etc/init.d/dovecot restart</p>
<p>Make sure imap is running.</p>
<p>netstat -lpn |grep dovecot</p>
]]></content:encoded>
			<wfw:commentRss>http://adminspanel.com/dovecot-unable-to-connect-to-localhost143-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset whm theme of a reseller account from command prompt</title>
		<link>http://adminspanel.com/reset-whm-theme-of-a-reseller-account-from-command-prompt-2/</link>
		<comments>http://adminspanel.com/reset-whm-theme-of-a-reseller-account-from-command-prompt-2/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 10:52:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://adminspanel.com/?p=184</guid>
		<description><![CDATA[WHM theme of a reseller account can be changed by editing file /home/reseller_user/.whmtheme To switch to x theme. echo x &#62; /home/username/.whmtheme]]></description>
			<content:encoded><![CDATA[<p>WHM theme of a reseller account can be changed by editing file /home/reseller_user/.whmtheme</p>
<p>To switch to x theme.</p>
<p>echo x &gt; /home/username/.whmtheme</p>
]]></content:encoded>
			<wfw:commentRss>http://adminspanel.com/reset-whm-theme-of-a-reseller-account-from-command-prompt-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable HTML Mail Plugin in squirrel mail</title>
		<link>http://adminspanel.com/how-to-enable-html-mail-plugin-in-squirrel-mail/</link>
		<comments>http://adminspanel.com/how-to-enable-html-mail-plugin-in-squirrel-mail/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 10:50:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://adminspanel.com/?p=181</guid>
		<description><![CDATA[Please check the following URL and download latest version of HTML mail plugin. http://www.squirrelmail.org/plugin_view.php?id=209 cd /usr/local/cpanel/base/3rdparty/squirrelmail/plugins wget http://www.squirrelmail.org/countdl.php &#8230; 1.4.tar.gz (latest version when I tried it) tar xzf html_mail-2.3-1.4.tar.gz chown -R root.wheel html_mail cd /usr/local/cpanel/base/3rdparty/squirrelmail/config perl conf.pl It will show &#8230; <a href="http://adminspanel.com/how-to-enable-html-mail-plugin-in-squirrel-mail/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Please check the following URL and download latest version of HTML mail plugin.</p>
<p><a href="http://www.squirrelmail.org/plugin_view.php?id=209">http://www.squirrelmail.org/plugin_view.php?id=209</a></p>
<p>cd /usr/local/cpanel/base/3rdparty/squirrelmail/plugins<br />
wget <a href="http://www.squirrelmail.org/countdl.php?fileurl=http%3A%2F%2Fwww.squirrelmail.org%2Fplugins%2Fhtml_mail-2.3-1.4.tar.gz">http://www.squirrelmail.org/countdl.php &#8230; 1.4.tar.gz</a> (latest version when I tried it)<br />
tar xzf html_mail-2.3-1.4.tar.gz<br />
chown -R root.wheel html_mail</p>
<p>cd /usr/local/cpanel/base/3rdparty/squirrelmail/config<br />
perl conf.pl</p>
<p>It  will show a menu with corresponding number. Enter 8 for plugins. It  will show the installed &amp; available plugins. Enter the number  corresponding to html_mail and press enter. It will be installed and  listed under available plugins.</p>
<p>Now enter S to save.</p>
<p>Now login to squirrel mail, click Options &gt;&gt; Display Preference and Select Default Email Composition Format as HTML.</p>
<p>Start sending mails in html format <img src='http://adminspanel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://adminspanel.com/how-to-enable-html-mail-plugin-in-squirrel-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable to send mail via RoundCube</title>
		<link>http://adminspanel.com/unable-to-send-mail-via-roundcube/</link>
		<comments>http://adminspanel.com/unable-to-send-mail-via-roundcube/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 10:49:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://adminspanel.com/?p=179</guid>
		<description><![CDATA[Check the log file /var/cpanel/roundcube/log/errors and if you&#8217;re getting the following error: SMTP Error: SMTP error: Authentication failure: STARTTLS failed (Code: ) in /usr/local/cpanel/base/3rdparty/roundcube/program/steps/mail/func.inc on line 1248 (POST /3rdparty/roundcube/index.php?_task=mail&#38;_action=send) PHP Warning: ob_start() [&#60;a href='ref.outcontrol'&#62;ref.outcontrol&#60;/a&#62;]: output handler &#8216;ob_gzhandler&#8217; cannot be used &#8230; <a href="http://adminspanel.com/unable-to-send-mail-via-roundcube/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Check the log file /var/cpanel/roundcube/log/errors and if you&#8217;re getting the following error:</p>
<p>SMTP  Error: SMTP error: Authentication failure: STARTTLS failed (Code: ) in  /usr/local/cpanel/base/3rdparty/roundcube/program/steps/mail/func.inc on  line 1248 (POST  /3rdparty/roundcube/index.php?_task=mail&amp;_action=send)<br />
PHP  Warning:  ob_start() [&lt;a  href='ref.outcontrol'&gt;ref.outcontrol&lt;/a&gt;]: output handler  &#8216;ob_gzhandler&#8217; cannot be used after &#8216;URL-Rewriter&#8217; in  /usr/local/cpanel/base/3rdparty/roundcube/index.php on line 45<br />
STARTTLS failed ():<br />
Invalid response code received from server (421):<br />
Invalid response code received from server (-1):</p>
<p>Run the following command to fix it.</p>
<p>/scripts/autorepair net_smtp_fix</p>
]]></content:encoded>
			<wfw:commentRss>http://adminspanel.com/unable-to-send-mail-via-roundcube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fantastico is not installed at the default location</title>
		<link>http://adminspanel.com/fantastico-is-not-installed-at-the-default-location/</link>
		<comments>http://adminspanel.com/fantastico-is-not-installed-at-the-default-location/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 10:48:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://adminspanel.com/?p=176</guid>
		<description><![CDATA[If you get the following error when you access Fantastico from a cpanel account:&#160; Fantastico is not installed at the default location /usr/local/cpanel/3rdparty/fantastico. Either move the Fantastico directory from it&#8217;s current location to /usr/local/cpanel/3rdparty/fantastico OR enable ioncube loaders in WHM &#8230; <a href="http://adminspanel.com/fantastico-is-not-installed-at-the-default-location/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div>If you get the following error when you access Fantastico from a cpanel account:&nbsp;</p>
<p>Fantastico  is not installed at the default location  /usr/local/cpanel/3rdparty/fantastico. Either move the Fantastico  directory from it&#8217;s current location to  /usr/local/cpanel/3rdparty/fantastico OR enable ioncube loaders in WHM  -&gt; Tweak settings.</p>
<p>If fantastico is installed in the correct path and Ioncube is enabled, run the following command:</p>
<p>/scripts/makecpphp</p>
<p>Which will rebuild the copy of PHP that cPanel and WHM use, and not apache php.</p>
</div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://adminspanel.com/fantastico-is-not-installed-at-the-default-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>exim: ** [535 Incorrect authentication data != 2]</title>
		<link>http://adminspanel.com/exim-535-incorrect-authentication-data-2/</link>
		<comments>http://adminspanel.com/exim-535-incorrect-authentication-data-2/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 10:47:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://adminspanel.com/?p=172</guid>
		<description><![CDATA[Error: Exim status is not showing correctly in WHM &#62;&#62; Service Status and if you get mail with the following error: &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- exim failed @ Tue Mar 24 22:57:24 2009. A restart was attempted automagically. Service Check Method: [tcp connect] &#8230; <a href="http://adminspanel.com/exim-535-incorrect-authentication-data-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Error:</p>
<p>Exim status is not showing correctly in WHM &gt;&gt; Service Status and  if you get mail with the following error:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
exim failed @ Tue Mar 24 22:57:24 2009. A restart was attempted automagically.<br />
Service Check Method: [tcp connect]</p>
<p>Failure Reason: TCP Transaction Log:<br />
&lt;&lt; 220-***.******.com ESMTP Exim 4.69 #1 Tue, 24 Mar 2009 22:57:49 -0400 &lt;&lt; &lt;&lt;<br />
&gt;&gt; EHLO localhost<br />
&lt;&lt; 250-***.******.com Hello localhost [127.0.0.1] &lt;&lt; &lt;&lt; &lt;&lt; &lt;&lt; &lt;&lt;<br />
&gt;&gt; AUTH PLAIN<br />
&gt;&gt; AF9fY3BhbmVsX19zZXJ2aWNlX19hdXRoX19leGltX19sRE96V0hpWjVoS2dPakJhdld2O<br />
&gt;&gt; G0xNThXXzF5Nmw1VlVLSms3U3VCTjV4ZkxyeGdwMWNyZ1ZxX0h0M3hISTNzAFc1V0p4ME<br />
&gt;&gt; pQRjJpN1lWWmtKR2NBUlUxY29RbFRNQjNrVjVuN0RHV3hOWjVrT0JkSVpZU3ZqY1RiT1h<br />
&gt;&gt; RZWZfNWs=<br />
&lt;&lt; 535 Incorrect authentication data<br />
exim: ** [535 Incorrect authentication data != 2]<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>Fix:</p>
<p>cd /var/cpanel/serviceauth/<br />
rm -rf exim<br />
/etc/init.d/exim  restart</p>
]]></content:encoded>
			<wfw:commentRss>http://adminspanel.com/exim-535-incorrect-authentication-data-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All Mailman web pages give a 404 File not found error.</title>
		<link>http://adminspanel.com/all-mailman-web-pages-give-a-404-file-not-found-error/</link>
		<comments>http://adminspanel.com/all-mailman-web-pages-give-a-404-file-not-found-error/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 10:46:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://adminspanel.com/?p=170</guid>
		<description><![CDATA[Error: All Mailman web pages give a 404 File not found error. Fix: Check the mail permission using the script ./check_perms inside /usr/local/cpanel/3rdparty/mailman/bin/ If you get the following warning: &#8212;&#8212;&#8212;&#8212;&#8212;&#8211; Warning: Private archive directory is other-executable (o+x). This could allow &#8230; <a href="http://adminspanel.com/all-mailman-web-pages-give-a-404-file-not-found-error/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div>Error:</p>
<p>All Mailman web pages give a 404 File not found error.</p>
<p>Fix:</p>
<p>Check the mail permission using the script ./check_perms inside /usr/local/cpanel/3rdparty/mailman/bin/</p>
<p>If you get the following warning:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Warning: Private archive directory is other-executable (o+x).<br />
This could allow other users on your system to read private archives.<br />
If you&#8217;re on a shared multiuser system, you should consult the<br />
installation manual on how to fix this.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Fix:</p>
<p>cd /usr/local/cpanel/3rdparty/mailman/archives<br />
chown nobody private<br />
chmod o-x private</p>
<p>Permission of private directory should be as follows:</p>
<p>drwxrws&#8212; 14 nobody  mailman 4096 Mar 18 15:35 private</p>
<p>Hope this helps <img title="Smile" src="http://forum.adminspanel.com/images/smilies/icon_e_smile.gif" alt=":)" /></div>
]]></content:encoded>
			<wfw:commentRss>http://adminspanel.com/all-mailman-web-pages-give-a-404-file-not-found-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
