<?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>System Network Programming Solution - Linux - windows - centos- security- cpanel - plesk -directadmin helm&#187; httpd</title>
	<atom:link href="http://thegioinguonmo.com/tag/httpd/feed/" rel="self" type="application/rss+xml" />
	<link>http://thegioinguonmo.com</link>
	<description>SHARING EVERYTHING</description>
	<lastBuildDate>Mon, 06 Feb 2012 09:45:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Howto: Apache adding new modules</title>
		<link>http://thegioinguonmo.com/web-server/apache/howto-apache-adding-modules.html</link>
		<comments>http://thegioinguonmo.com/web-server/apache/howto-apache-adding-modules.html#comments</comments>
		<pubDate>Mon, 19 Dec 2011 04:15:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1854</guid>
		<description><![CDATA[Some one posted about, &#8220;What is Modules in Linux and how to add it in apache,&#8221; on our forum. Therefore, I decided to create a small howto for adding new modules under Apache. The Apache HTTP Server is a modular program. So as a UNNIX/Linux administrator you can choose the functionality to include in the [...]]]></description>
			<content:encoded><![CDATA[<p>Some one posted about, &#8220;What is Modules in Linux and how to add it in apache,&#8221; on our <a rel="nofollow" target="_blank" href="http://forum.cyberciti.biz/">forum</a>. Therefore, I decided to create a small howto for adding new modules under Apache. The Apache HTTP Server is a modular program. So as a UNNIX/Linux administrator you can choose the functionality to include in the server by selecting a set of modules (or features via modules).</p>
<p>A module provides variety of features for apache such as security, perl and php support etc. To configure apache for additional modules you need to add LoadModule directive in httpd.conf or modules.conf file. For example you can add session management and tracking through consistent identifiers using mod_session. You need to add following entry to Apache 1.3.xx server (under Debian Linux you need to add to /etc/apache-perl/modules.conf file):</p>
<pre>LoadModule auth_module /usr/lib/apache/1.3/mod_session.so</pre>
<p>Please note that your Apache server must configure for Dynamic Shared Objects (DSOs). Let us assume you have downloaded the module called mymodule.c and you would like to compile and use this module, then you can use Apache apxs utility to compile and install this module:</p>
<p>Build and install a third-party Apache module, say mod_foo.c, into its own DSO mod_foo.so outside of the Apache source tree using apxs:</p>
<pre># apxs -c mymodule.c
# apxs -i -a -n mymodule mymodule.la</pre>
<p>Then open your httpd.conf file and add mymodule using top LoadModule Directive:</p>
<pre># vi  httpd.conf</pre>
<p>Append following line to server config context (this means that the directive may be used in the server configuration files (e.g., httpd.conf), but not within any or containers. It is not allowed in .htaccess files at all).</p>
<pre>LoadModule mymodule /usr/lib/httpd/modules/mymodule.so</pre>
<p>If you find compile and install procdure difficult to use then try Apachetoolbox utility to install your Apache modules easily. See official <a rel="nofollow" target="_blank" href="http://httpd.apache.org/docs/2.2/dso.html">Apache documentation</a> for more information.</p>
<p>If you are a Web developer then do not forget to check out book review of PHP Hacks Tips &amp; Tools for Creating Dynamic Websites.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/web-server/apache/howto-apache-adding-modules.html" title="API module structure `suphp_module in file /etc/httpd/modules/mod_suphp so is garbled - perhaps this is not an Apache module DSO?">API module structure `suphp_module in file /etc/httpd/modules/mod_suphp so is garbled - perhaps this is not an Apache module DSO?</a> (3)</li><li><a href="http://thegioinguonmo.com/web-server/apache/howto-apache-adding-modules.html" title="build apache howto">build apache howto</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/howto-apache-adding-modules.html" title="c apache module">c apache module</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/howto-apache-adding-modules.html" title="call to undefined function mysql_connect() php fast cgi fedora">call to undefined function mysql_connect() php fast cgi fedora</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/howto-apache-adding-modules.html" title="htaccess phpbb centos">htaccess phpbb centos</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/howto-apache-adding-modules.html" title="nginx-0 6 31-3 el5 i386 rpm">nginx-0 6 31-3 el5 i386 rpm</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/web-server/apache/howto-apache-adding-modules.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux: Forcing Apache to correct misspellings of URL</title>
		<link>http://thegioinguonmo.com/web-server/apache/linux-forcing-apache-to-correct-misspellings-of-url.html</link>
		<comments>http://thegioinguonmo.com/web-server/apache/linux-forcing-apache-to-correct-misspellings-of-url.html#comments</comments>
		<pubDate>Sat, 17 Dec 2011 16:33:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[mod]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[Open]]></category>
		<category><![CDATA[perl modules]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1774</guid>
		<description><![CDATA[Apache has mod_speling for automatic URL spell-correction. For example when on this site you can request the page using following format: This module help visitor to get correct content instead of error 404 – document not found and you can also omit file extension such as .pl, .php, .html etc in urls references. It attempts [...]]]></description>
			<content:encoded><![CDATA[<p>Apache has mod_speling for automatic URL spell-correction. For example when on this site you can request the page using following format:</p>
<p>This module help visitor to get correct content instead of error 404 – document not found and you can also omit file extension such as .pl, .php, .html etc in urls references. It attempts to correct misspellings of URLs that users might have entered, by ignoring capitalization and by allowing up to one misspelling. This must be configured on massive web hosting server by ISP and web hosting service providers so the hosting customer can take advantage of this module.</p>
<p>Following steps demonstrates how to activate this module under Debian GNU/Linux:</p>
<p>A) Open your Apache modules configuration file:<br />
<strong># vi /etc/apache-perl/modules.conf</strong></p>
<p>B) Append following line to this file:<br />
<strong>LoadModule speling_module /usr/lib/apache/1.3/mod_speling.so</strong></p>
<p>C) Save the file.</p>
<p>D) This module need to be configured via httpd.conf via CheckSpelling directive. You can configure it for entire site, particular virtual host or even via .htaccess file. Open your /etc/apache-perl/httpd.conf and add followint line in server config context:</p>
<p>CheckSpelling on</p>
<p>E) Restart the apache:<br />
<strong># /etc/init.d/apache-perl restart </strong></p>
<p>Please note that above steps are same under FreeBSD/Solaris for Apache web server except for file location i.e. httpd.conf and modules.conf. Please refer man page for more info.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/web-server/apache/linux-forcing-apache-to-correct-misspellings-of-url.html" title="how-to locally disable python cgi scripts thegioinguonmo">how-to locally disable python cgi scripts thegioinguonmo</a> (4)</li><li><a href="http://thegioinguonmo.com/web-server/apache/linux-forcing-apache-to-correct-misspellings-of-url.html" title="use perl in plesk centos">use perl in plesk centos</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/web-server/apache/linux-forcing-apache-to-correct-misspellings-of-url.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>make mod_security get an error</title>
		<link>http://thegioinguonmo.com/web-server/apache/make-mod_security-get-an-error.html</link>
		<comments>http://thegioinguonmo.com/web-server/apache/make-mod_security-get-an-error.html#comments</comments>
		<pubDate>Fri, 16 Dec 2011 16:43:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[directadmin]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[limit]]></category>
		<category><![CDATA[mod]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1474</guid>
		<description><![CDATA[/usr/lib64/apr-1/build/libtool –silent –mode=compile gcc -prefer-pic -DLINUX =2 -D_REENTRANT -D_GNU_SOURCE -g -O2 -pthread -I/usr/local/include -I/usr/include/apache -I/usr/include/apr-1 -I/usr/include/apache -O2 -g -Wall -DWITH_PCRE _STUDY -DMODSEC_PCRE_MATCH_LIMIT=1500 -DMODSEC_PCRE_MATCH_LIMIT_RECURSION=1500 – I/usr/include/apache -I/usr/include/apache -I. -I/usr/local/directadmin/custombuild/httpd-2.2.17/srclib/apr/include -I/usr/local/directadmin/custombuild/httpd-2.2.17/srclib/apr-util/include -I/usr/local/directadmin/custombuild/httpd-2.2.17/ srclib/apr-util/xml/expat/lib -I/usr/local/include -I/usr/include -I/usr/kerberos/include -I/usr/local/include -I/usr/local/include/libxml2 -c -o msc_pcre.lo m sc_pcre.c &#38;&#38; touch msc_pcre.slo msc_pcre.c: In function ‘msc_pregcomp_ex’: msc_pcre.c:73: error: invalid application of ‘sizeof’ to [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>/usr/lib64/apr-1/build/libtool –silent –mode=compile gcc -prefer-pic -DLINUX =2 -D_REENTRANT -D_GNU_SOURCE -g -O2 -pthread -I/usr/local/include -I/usr/include/apache -I/usr/include/apr-1 -I/usr/include/apache -O2 -g -Wall -DWITH_PCRE _STUDY -DMODSEC_PCRE_MATCH_LIMIT=1500 -DMODSEC_PCRE_MATCH_LIMIT_RECURSION=1500 – I/usr/include/apache -I/usr/include/apache -I. -I/usr/local/directadmin/custombuild/httpd-2.2.17/srclib/apr/include -I/usr/local/directadmin/custombuild/httpd-2.2.17/srclib/apr-util/include -I/usr/local/directadmin/custombuild/httpd-2.2.17/ srclib/apr-util/xml/expat/lib -I/usr/local/include -I/usr/include -I/usr/kerberos/include -I/usr/local/include -I/usr/local/include/libxml2 -c -o msc_pcre.lo m sc_pcre.c &amp;&amp; touch msc_pcre.slo<br />
msc_pcre.c: In function ‘msc_pregcomp_ex’:<br />
msc_pcre.c:73: error: invalid application of ‘sizeof’ to incomplete type ‘pcre_extra’<br />
msc_pcre.c:77: error: invalid application of ‘sizeof’ to incomplete type ‘pcre_extra’<br />
msc_pcre.c:98: warning: ignoring #pragma message<br />
msc_pcre.c:119: warning: ignoring #pragma message<br />
apxs:Error: Command failed with rc=65536<br />
.<br />
make: *** [mod_security2.la] Error 1</p></blockquote>
<p>the solution is simple:</p>
<p>Copy the pcre.h from /usr/include/<br />
TO /usr/include/apache and replace the old pcre.h (always backup)</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/web-server/apache/make-mod_security-get-an-error.html" title="msc_pcre c:73">msc_pcre c:73</a> (2)</li><li><a href="http://thegioinguonmo.com/web-server/apache/make-mod_security-get-an-error.html" title="apxs:error: command failed with rc=65536">apxs:error: command failed with rc=65536</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/make-mod_security-get-an-error.html" title="mod_security2 la error 1">mod_security2 la error 1</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/make-mod_security-get-an-error.html" title="make mod_security get an error">make mod_security get an error</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/make-mod_security-get-an-error.html" title="invalid application of ‘sizeof’ to incomplete type ‘pcre_extra’">invalid application of ‘sizeof’ to incomplete type ‘pcre_extra’</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/make-mod_security-get-an-error.html" title="invalid application of ‘sizeof’ to incomplete type ‘pcre_extra mod sec">invalid application of ‘sizeof’ to incomplete type ‘pcre_extra mod sec</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/make-mod_security-get-an-error.html" title="invalid application of sizeof pcre_extra">invalid application of sizeof pcre_extra</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/make-mod_security-get-an-error.html" title="error: invalid application of ‘sizeof’ to incomplete type pcre_extra mod_security">error: invalid application of ‘sizeof’ to incomplete type pcre_extra mod_security</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/make-mod_security-get-an-error.html" title="error: invalid application of `sizeof to incomplete type `/usr/local/apache2/include/pcre">error: invalid application of `sizeof to incomplete type `/usr/local/apache2/include/pcre</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/make-mod_security-get-an-error.html" title="sc_pcre c mod_security directadmin">sc_pcre c mod_security directadmin</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/web-server/apache/make-mod_security-get-an-error.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>500 error when you try to access the website</title>
		<link>http://thegioinguonmo.com/os/linux/500-error-when-you-try-to-access-the-website.html</link>
		<comments>http://thegioinguonmo.com/os/linux/500-error-when-you-try-to-access-the-website.html#comments</comments>
		<pubDate>Thu, 15 Dec 2011 05:06:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1387</guid>
		<description><![CDATA[If the .htaccess has an error you should get a 500 error when you try to access the website. Is that the case? You can check if mod_rewrite is compiled in with Apache doing: httpd -l &#124; grep mod_rewrite.c If it’s not then you should re-compile Apache. You could also enable mod_rewrite logging: RewriteLog “/var/log/httpd/rewrite.log” [...]]]></description>
			<content:encoded><![CDATA[<p>If the .htaccess has an error you should get a 500 error when you try to access the website. Is that the case?</p>
<p>You can check if mod_rewrite is compiled in with Apache doing:</p>
<pre class="brush:plain">httpd -l | grep mod_rewrite.c</pre>
<p>If it’s not then you should re-compile Apache.</p>
<p>You could also enable mod_rewrite logging:</p>
<blockquote>
<pre class="brush:plain">RewriteLog “/var/log/httpd/rewrite.log”
RewriteLogLevel 9 # Maximum debug level, should be disabled on production environment</pre>
</blockquote>
<p>Note that this must be added on the VirtualHost or at the httpd.conf and *NOT* in the .htaccess.</p>
<p>After this you can check the file /var/log/httpd/rewrite.log to see what happens when you try to access an URL that should be rewritten.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/linux/500-error-when-you-try-to-access-the-website.html" title="invalid command \sslengine\ perhaps misspelled or defined by a module not included in the server configuration cpanel">invalid command \sslengine\ perhaps misspelled or defined by a module not included in the server configuration cpanel</a> (2)</li><li><a href="http://thegioinguonmo.com/os/linux/500-error-when-you-try-to-access-the-website.html" title="•the website has a programming error in linux">•the website has a programming error in linux</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/linux/500-error-when-you-try-to-access-the-website.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chrooting Apache2 With mod_chroot On Fedora 12</title>
		<link>http://thegioinguonmo.com/web-server/apache/chrooting-apache2-with-mod_chroot-on-fedora-12.html</link>
		<comments>http://thegioinguonmo.com/web-server/apache/chrooting-apache2-with-mod_chroot-on-fedora-12.html#comments</comments>
		<pubDate>Mon, 12 Dec 2011 05:49:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[mod]]></category>
		<category><![CDATA[PID]]></category>
		<category><![CDATA[tar gz]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1240</guid>
		<description><![CDATA[This guide explains how to set up mod_chroot with Apache2 on a Fedora 12 system. With mod_chroot, you can run Apache2 in a secure chroot environment and make your server less vulnerable to break-in attempts that try to exploit vulnerabilities in Apache2 or your installed web applications. I do not issue any guarantee that this [...]]]></description>
			<content:encoded><![CDATA[<p>This guide explains how to set up <a rel="nofollow" target="_blank" href="http://core.segfault.pl/%7Ehobbit/mod_chroot/" target="_blank">mod_chroot</a> with Apache2 on a Fedora 12 system. With mod_chroot, you can run Apache2 in a secure chroot environment and make your server less vulnerable to break-in attempts that try to exploit vulnerabilities in Apache2 or your installed web applications.</p>
<p>I do not issue any guarantee that this will work for you!</p>
<h3>1 Preliminary Note</h3>
<p>I’m assuming that you have a running Fedora 12 system with a working Apache2. In addition to that I assume that you have one or more web sites set up within the /var/www directory (e.g. if you use ISPConfig).</p>
<h3>2 Installing mod_chroot</h3>
<p>There’s no mod_chroot package for Fedora 12, therefore we must build it ourselves. First we install the prerequisites:</p>
<pre class="brush:plain">yum groupinstall 'Development Tools'

yum groupinstall 'Development Libraries'

yum install httpd-devel</pre>
<p>&nbsp;</p>
<p>Now we build mod_chroot as follows:</p>
<pre class="brush:plain">cd /tmp
wget http://core.segfault.pl/~hobbit/mod_chroot/dist/mod_chroot-0.5.tar.gz
tar xvfz mod_chroot-0.5.tar.gz
cd mod_chroot-0.5
apxs -cia mod_chroot.c</pre>
<p>&nbsp;</p>
<p>Then we restart Apache:</p>
<pre class="brush:plain">/etc/init.d/httpd restart</pre>
<h3>3 Configuring Apache</h3>
<p>I want to use the /var/www directory as the directory containing the chroot jail. Fedora’s Apache uses the PID file /var/run/httpd/httpd.pid; when Apache is chrooted to /var/www, /var/run/httpd/httpd.pid translates to /var/www/var/run/httpd/httpd.pid. Therefore we create that directory now:</p>
<pre class="brush:plain">mkdir -p /var/www/var/run/httpd
chown -R root:apache /var/www/var/run/httpd</pre>
<p>&nbsp;</p>
<p>Now we must tell Apache that we want to use /var/www as our chroot directory. We open /etc/httpd/conf/httpd.conf, and right below the PidFile line, we add the line ChrootDir /var/www; also comment out the PidFile run/httpd.pid line and add the line PidFile /var/run/httpd/httpd.pid:</p>
<pre class="brush:plain">vi /etc/httpd/conf/httpd.conf

    [...]
    #
    # PidFile: The file in which the server should record its process
    # identification number when it starts.
    #
    #PidFile run/httpd.pid
    PidFile /var/run/httpd/httpd.pid
    ChrootDir /var/www
    [...]</pre>
<p>Next we must tell our vhosts that the document root has changed (for example, a DocumentRoot /var/www translates now to DocumentRoot /). We can do this either by changing the DocumentRoot directive of each vhost, or more easier, by creating a symlink in the file system.</p>
<h4>3.1 First Method: Changing The DocumentRoot</h4>
<p>Let’s assume we have a vhost with DocumentRoot /var/www. We must now open the vhost configuration of that vhost and change DocumentRoot /var/www to DocumentRoot /. Accordingly, DocumentRoot /var/www/web1/web would now translate to DocumentRoot /web1/web, and so on. If you want to use this method, you must change the DocumentRoot for every single vhost.</p>
<h4>3.2 Second Method: Creating A Symlink In the File System</h4>
<p>This method is easier, because you have to do it only once and don’t have to modify any vhost configuration. We create a symlink pointing from /var/www/var/www to /var/www:</p>
<pre class="brush:plain">mkdir -p /var/www/var
cd /var/www/var
ln -s ../../ www</pre>
<p>&nbsp;</p>
<hr />
<p>Finally, we have to stop Apache, delete the directory /var/run/httpd, create a symlink from /var/run/httpd to /var/www/var/run/httpd, and start it again:</p>
<pre class="brush:plain">/etc/init.d/httpd stop

rm -fr /var/run/httpd
ln -sf /var/www/var/run/httpd /var/run/httpd
/etc/init.d/httpd start</pre>
<p>&nbsp;</p>
<p>That’s it. You can now call your web pages as before, and they should be served without problems, as long as they are static HTML files or using mod_php.</p>
<p><img src="http://images.howtoforge.com/images/apache2_mod_chroot_fedora_12/1.png" alt="1 Chrooting Apache2 With mod chroot On Fedora 12 " width="550" height="399" title="Chrooting Apache2 With mod chroot On Fedora 12 " /></p>
<p>If you are using CGI, e.g. Perl, suPHP, Ruby, etc., then you must copy the interpreter (e.g. /usr/bin/perl, /usr/sbin/suphp, etc.) to the chroot jail together with all libraries needed by the interpreter. You can find out about the required libraries with the ldd command, e.g.</p>
<pre class="brush:plain">ldd /usr/sbin/suphp

    [server2:/var/www/web1/log]# ldd /usr/sbin/suphp
    linux-gate.so.1 =&gt;  (0xffffe000)
    libstdc++.so.6 =&gt; /usr/lib/libstdc++.so.6 (0xb7e34000)
    libm.so.6 =&gt; /lib/tls/i686/cmov/libm.so.6 (0xb7e0f000)
    libgcc_s.so.1 =&gt; /lib/libgcc_s.so.1 (0xb7e03000)
    libc.so.6 =&gt; /lib/tls/i686/cmov/libc.so.6 (0xb7cd2000)
    /lib/ld-linux.so.2 (0xb7f23000)
    [server2:/var/www/web1/log]#</pre>
<p>If you’ve copied all required files, but the page still isn’t working, you should take a look at the Apache error log. Usually it tells you where the problem is. Also read <a rel="nofollow" target="_blank" href="http://core.segfault.pl/%7Ehobbit/mod_chroot/caveats.html" target="_blank">http://core.segfault.pl/~hobbit/mod_chroot/caveats.html</a> for known problems and solutions.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/web-server/apache/chrooting-apache2-with-mod_chroot-on-fedora-12.html" title="about mod_chroot">about mod_chroot</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/chrooting-apache2-with-mod_chroot-on-fedora-12.html" title="apache mod_chroot linux">apache mod_chroot linux</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/chrooting-apache2-with-mod_chroot-on-fedora-12.html" title="apache2 mod_chroot documentroot">apache2 mod_chroot documentroot</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/chrooting-apache2-with-mod_chroot-on-fedora-12.html" title="apache2 mod_chroot suphp debian how to">apache2 mod_chroot suphp debian how to</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/chrooting-apache2-with-mod_chroot-on-fedora-12.html" title="cpanel apache mod_chroot">cpanel apache mod_chroot</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/chrooting-apache2-with-mod_chroot-on-fedora-12.html" title="how to virtualhost config with ChrootDir on Apache centos">how to virtualhost config with ChrootDir on Apache centos</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/chrooting-apache2-with-mod_chroot-on-fedora-12.html" title="mod_chroot documentroot virtualhost">mod_chroot documentroot virtualhost</a> (1)</li><li><a href="http://thegioinguonmo.com/web-server/apache/chrooting-apache2-with-mod_chroot-on-fedora-12.html" title="suphp docroot fedora">suphp docroot fedora</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/web-server/apache/chrooting-apache2-with-mod_chroot-on-fedora-12.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fatal error: Call to undefined function mysql_connect()</title>
		<link>http://thegioinguonmo.com/os/linux/fatal-error-call-to-undefined-function-mysql_connect.html</link>
		<comments>http://thegioinguonmo.com/os/linux/fatal-error-call-to-undefined-function-mysql_connect.html#comments</comments>
		<pubDate>Sat, 10 Dec 2011 10:25:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1073</guid>
		<description><![CDATA[When PHP is not compiled with Mysql, you see the error Fatal error: Call to undefined function mysql_connect() in filename.php on line xx on your website though the database details mentioned in the configuration file are correct. In order to solve the problem, install the “php-mysql” package using yum # yum install php-mysql Once installed, [...]]]></description>
			<content:encoded><![CDATA[<p>When PHP is not compiled with Mysql, you see the error</p>
<blockquote><p><span style="color: #ff0000;"><strong>Fatal error: Call to undefined function mysql_connect() in filename.php on line xx</strong></span></p></blockquote>
<p>on your website though the database details mentioned in the configuration file are correct. In order to solve the problem, install the “php-mysql” package using yum</p>
<blockquote>
<pre class="brush:plain">    # yum install php-mysql</pre>
</blockquote>
<p>Once installed, restart the httpd service</p>
<blockquote>
<pre class="brush:plain">    # service httpd restart</pre>
</blockquote>
<p>To check if the package is installed properly, create a phpinfo.php file under your account with the following contents</p>
<blockquote>
<pre class="brush:php">&lt;?php
phpinfo();
?&gt;</pre>
</blockquote>
<p>and browse the phpinfo file.</p>
<p><strong>http://yourdomainname.tld/phpinfo.php</strong></p>
<p>You will see a separate Mysql section in the PHP information. Your website should no longer receive the “Call to undefined function” error message.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/linux/fatal-error-call-to-undefined-function-mysql_connect.html" title="call to undefined function mysql_connect centos">call to undefined function mysql_connect centos</a> (4)</li><li><a href="http://thegioinguonmo.com/os/linux/fatal-error-call-to-undefined-function-mysql_connect.html" title="centos fatal error: call to undefined function mysql_connect()">centos fatal error: call to undefined function mysql_connect()</a> (3)</li><li><a href="http://thegioinguonmo.com/os/linux/fatal-error-call-to-undefined-function-mysql_connect.html" title="Fatal error: Call to undefined function mysql_connect() linux">Fatal error: Call to undefined function mysql_connect() linux</a> (2)</li><li><a href="http://thegioinguonmo.com/os/linux/fatal-error-call-to-undefined-function-mysql_connect.html" title="call to undefined function mysql_connect()">call to undefined function mysql_connect()</a> (2)</li><li><a href="http://thegioinguonmo.com/os/linux/fatal-error-call-to-undefined-function-mysql_connect.html" title="call to undefined function: mysql_connect() in centos">call to undefined function: mysql_connect() in centos</a> (2)</li><li><a href="http://thegioinguonmo.com/os/linux/fatal-error-call-to-undefined-function-mysql_connect.html" title="call to undefined function mysql_connect() linux">call to undefined function mysql_connect() linux</a> (2)</li><li><a href="http://thegioinguonmo.com/os/linux/fatal-error-call-to-undefined-function-mysql_connect.html" title="undefined function mysqli_connect linux centos">undefined function mysqli_connect linux centos</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/fatal-error-call-to-undefined-function-mysql_connect.html" title="php fatal error: call to undefined function mysql_connect() in gnu/linux">php fatal error: call to undefined function mysql_connect() in gnu/linux</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/fatal-error-call-to-undefined-function-mysql_connect.html" title="php fatal error: call to undefined function mysql_connect() in cent os">php fatal error: call to undefined function mysql_connect() in cent os</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/fatal-error-call-to-undefined-function-mysql_connect.html" title="php fatal error: call to undefined function mysql_connect() centos">php fatal error: call to undefined function mysql_connect() centos</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/linux/fatal-error-call-to-undefined-function-mysql_connect.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto: enable HTTP Compression</title>
		<link>http://thegioinguonmo.com/web-server/apache/howto-enable-http-compression.html</link>
		<comments>http://thegioinguonmo.com/web-server/apache/howto-enable-http-compression.html#comments</comments>
		<pubDate>Sat, 10 Dec 2011 08:40:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[mod]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[png files]]></category>
		<category><![CDATA[request uri]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1006</guid>
		<description><![CDATA[How to enable HTTP Compression? In order to enable compression, you will need compression modules compiled with Apache. Apache 1.x needs mod_gzip and Apache 2.x need mod_deflate compiled with it. If  you have these module installed, you need to edit your Apache configuration file locate at “/etc/httpd/conf/httpd.conf” file and add the following lines to it: [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How to enable HTTP Compression?</strong> In order to enable compression, you will need compression modules compiled with Apache. <strong>Apache 1.x needs mod_gzip and Apache 2.x need mod_deflate</strong> compiled with it.</p>
<p>If  you have these module installed, you need to <strong>edit your Apache configuration</strong> file locate at “/etc/httpd/conf/httpd.conf” file and <strong>add the following lines to it</strong>:</p>
<blockquote>
<pre class="brush:plain">&lt;Location /&gt;
SetOutputFilter DEFLATE
SetEnvIfNoCase Request_URI  \
\.(?:gif|jpe?g|png)$ no-gzip dont-vary
&lt;/Location&gt;</pre>
</blockquote>
<p>Save the file and restart the httpd service. This will <strong>compress all the files except the .gif, .jpe, .jpeg and .png files.</strong></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/web-server/apache/howto-enable-http-compression.html" title="http compression cpanel">http compression cpanel</a> (2)</li><li><a href="http://thegioinguonmo.com/web-server/apache/howto-enable-http-compression.html" title="apache centos enable compression">apache centos enable compression</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/web-server/apache/howto-enable-http-compression.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto install a PHP FileInfo module in Linux?</title>
		<link>http://thegioinguonmo.com/os/linux/howto-install-a-php-fileinfo-module-in-linux.html</link>
		<comments>http://thegioinguonmo.com/os/linux/howto-install-a-php-fileinfo-module-in-linux.html#comments</comments>
		<pubDate>Thu, 08 Dec 2011 08:40:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[linux server]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[pecl]]></category>
		<category><![CDATA[tar zxf]]></category>
		<category><![CDATA[untar]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=976</guid>
		<description><![CDATA[The steps to install the PHP ‘Fileinfo’ module on a Linux server is as below: 1) Download and untar the package # wget http://pecl.php.net/get/Fileinfo-1.0.4.tgz # tar -zxf Fileinfo-1.0.4.tgz # cd Fileinfo-1.0.4 2) Generate the extension for compiling # phpize 3) Configure the module # ./configure 4) generate the install files and install it # make [...]]]></description>
			<content:encoded><![CDATA[<p>The <strong>steps to install the PHP ‘Fileinfo’ module</strong> on a Linux server is as below:<br />
<strong></strong></p>
<p><strong>1)</strong> Download and untar the package</p>
<blockquote>
<pre class="brush:plain">    # wget http://pecl.php.net/get/Fileinfo-1.0.4.tgz
    # tar -zxf Fileinfo-1.0.4.tgz
    # cd Fileinfo-1.0.4</pre>
</blockquote>
<p><strong>2)</strong> Generate the extension for compiling</p>
<blockquote>
<pre><strong># phpize</strong></pre>
</blockquote>
<p><strong>3)</strong> Configure the module</p>
<blockquote>
<pre><strong># ./configure</strong></pre>
</blockquote>
<p><strong>4)</strong> generate the install files and install it</p>
<blockquote>
<pre><strong># make # make install</strong></pre>
</blockquote>
<p><strong>5)</strong> Once done, the <strong>extension will be available under the /usr/lib64/php/modules directory.</strong><br />
You now need to add the extension somewhere in the php configuration file. Edit /etc/php.ini and add the following:</p>
<blockquote>
<pre><strong>extension=fileinfo.so</strong></pre>
</blockquote>
<p><strong>6)</strong> Save the file and restart the webserver</p>
<blockquote>
<pre><strong># service httpd restart</strong></pre>
</blockquote>
<p>To <strong>check if “fileinfo” is enabled</strong> on the server, execute:</p>
<blockquote>
<pre><strong># php -i | grep fileinfo </strong>fileinfo
fileinfo support =&gt; enabled</pre>
</blockquote>
<p><strong>Alternate method</strong></p>
<p>Just an FYI, the <strong>module can also be installed using the PECL command</strong> i.e.</p>
<blockquote>
<pre><strong># pecl install fileinfo</strong></pre>
</blockquote>
<p>Once done, <strong>just follow steps 5 and 6 mentioned above</strong>. That’s it.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/linux/howto-install-a-php-fileinfo-module-in-linux.html" title="htaccess php_fileinfo">htaccess php_fileinfo</a> (2)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-a-php-fileinfo-module-in-linux.html" title="install fileinfo plesk">install fileinfo plesk</a> (2)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-a-php-fileinfo-module-in-linux.html" title="directadmin fileinfo so">directadmin fileinfo so</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-a-php-fileinfo-module-in-linux.html" title="directadmin update fileinfo">directadmin update fileinfo</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-a-php-fileinfo-module-in-linux.html" title="download debian linux php_fileinfo so">download debian linux php_fileinfo so</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-a-php-fileinfo-module-in-linux.html" title="fileinfo php extension cpanel">fileinfo php extension cpanel</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-a-php-fileinfo-module-in-linux.html" title="php fileinfo cpanel">php fileinfo cpanel</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-a-php-fileinfo-module-in-linux.html" title="php_fileinfo cpanel">php_fileinfo cpanel</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/linux/howto-install-a-php-fileinfo-module-in-linux.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing subversion with apache on centos</title>
		<link>http://thegioinguonmo.com/os/linux/installing-subversion-with-apache-on-centos.html</link>
		<comments>http://thegioinguonmo.com/os/linux/installing-subversion-with-apache-on-centos.html#comments</comments>
		<pubDate>Thu, 01 Dec 2011 05:39:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=722</guid>
		<description><![CDATA[A step by step guide on installing subversion with http support on centos and redhat machine First of all, install apache/httpd yum install httpd Make sure you apache is running. You can also type ‘http://localhost’ at your browser and apache test page should appear if your apache is running /etc/init.d/httpd status Make it start by [...]]]></description>
			<content:encoded><![CDATA[<p>A step by step guide on installing subversion with http support on centos and redhat machine</p>
<ol>
<li>First of all, install apache/httpd
<ul>
<li><code>yum install httpd</code></li>
</ul>
</li>
<li>Make sure you apache is running. You can also type ‘http://localhost’ at your browser and apache test page should appear if your apache is running
<ul>
<li><code>/etc/init.d/httpd status</code></li>
</ul>
</li>
<li>Make it start by default on startup
<ul>
<li><code>chkconfig httpd on</code></li>
</ul>
</li>
<li>Edit the apache configuration to suit your need. If not sure, leave the default setting as it is
<ul>
<li><code>vi /etc/httpd/conf/httpd.conf</code></li>
</ul>
</li>
<li>Install subversion and mod_dav_svn for apache
<ul>
<li><code>yum install mod_dav_svn subversion</code></li>
</ul>
</li>
<li>Go to subversion.conf in /etc/httpd/conf.d/. Edit as below
<ol>
<li>
<ol>
<li>This is the most basic configuration where anyone will have unrestricted access to the repos. Location is the name that will be used in the browser address bar. In this example it will be ‘http://localhost/svn/repos‘<br />
<blockquote><p>&lt; Location /svn/repos &gt;<br />
DAV svn<br />
SVNPath /var/www/svn/repos<br />
&lt; /Location &gt;</p></blockquote>
<p>(remove space before Location and /Location)</li>
<li>This is a configuration with username and password for the client<br />
<blockquote><p>&lt; Location /repos&gt;<br />
DAV svn<br />
SVNPath /var/www/svn/repos<br />
AuthType Basic<br />
AuthName “Subversion repos”<br />
AuthUserFile /etc/svn-auth-conf<br />
Require valid-user<br />
&lt; /Location &gt;</p></blockquote>
<p>(remove space before Location and /Location)</li>
</ol>
</li>
</ol>
<ul>
<li>cd /etc/httpd/conf.d/</li>
</ul>
<ul>
<li>vi subversion.conf</li>
</ul>
<ul>
<li>htpasswd -cm /etc/svn-auth-conf — This command is not needed for the first configuration. To create the first user with password</li>
<li>htpasswd -m /etc/svn-auth-conf — use this command to add another user</li>
</ul>
</li>
<li>Configure your repository
<ul>
<li>mkdir /var/www/svn — create folder svn</li>
<li>cd /var/www/svn — change diectory to the newly created svn directory</li>
<li>svnadmin create repos — create svn repository named repos</li>
<li>chown apache.apache -R repos — change ownership of ‘repos’ to apache</li>
<li>/etc/init.d/httpd restart — restart apache</li>
</ul>
</li>
<li>Open you browser and type ‘http://localhost/svn/repos‘. You can see that a page with ‘Revision 0:/’ will appear. Congratulation, you just completed the setup for svn server with http.</li>
</ol>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/linux/installing-subversion-with-apache-on-centos.html" title="authname subversion repos">authname subversion repos</a> (2)</li><li><a href="http://thegioinguonmo.com/os/linux/installing-subversion-with-apache-on-centos.html" title="install subversion with directadmin centos">install subversion with directadmin centos</a> (2)</li><li><a href="http://thegioinguonmo.com/os/linux/installing-subversion-with-apache-on-centos.html" title="httpd-svn conf directadmin">httpd-svn conf directadmin</a> (2)</li><li><a href="http://thegioinguonmo.com/os/linux/installing-subversion-with-apache-on-centos.html" title="subversion repos">subversion repos</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/installing-subversion-with-apache-on-centos.html" title="svn centos configuration">svn centos configuration</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/installing-subversion-with-apache-on-centos.html" title="svn centos windows">svn centos windows</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/installing-subversion-with-apache-on-centos.html" title="svn delete repos 1">svn delete repos 1</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/installing-subversion-with-apache-on-centos.html" title="svn directadmin acpache debian">svn directadmin acpache debian</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/installing-subversion-with-apache-on-centos.html" title="svn directadmin centos etc/svn">svn directadmin centos etc/svn</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/installing-subversion-with-apache-on-centos.html" title="svn://localhost centos">svn://localhost centos</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/linux/installing-subversion-with-apache-on-centos.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add a sub-domain in Plesk with www prefix?</title>
		<link>http://thegioinguonmo.com/hosting-controller/plesk-control-panel/how-to-add-a-sub-domain-in-plesk-with-www-prefix.html</link>
		<comments>http://thegioinguonmo.com/hosting-controller/plesk-control-panel/how-to-add-a-sub-domain-in-plesk-with-www-prefix.html#comments</comments>
		<pubDate>Thu, 01 Dec 2011 01:25:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Plesk]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[lt domain]]></category>
		<category><![CDATA[plesk server]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=672</guid>
		<description><![CDATA[Generally, a sub-domain is not accessed using the www prefix i.e. you can access subdomain.domain.tld but cannot access www.subdomain.domain.tld by default. To make a subdomain work with ‘www’ prefix on a Plesk server, you have to add a ServerAlias entry in the vhost configuration of the sub-domain and add an A record from Plesk. Solution: [...]]]></description>
			<content:encoded><![CDATA[<p>Generally, a sub-domain is not accessed using the www prefix i.e. you can access subdomain.domain.tld but cannot access www.subdomain.domain.tld by default. <strong>To make a subdomain work with ‘www’ prefix on a Plesk server, you have to add a ServerAlias entry in the vhost configuration of the sub-domain</strong> and add an A record from Plesk.</p>
<p><strong>Solution:</strong></p>
<p><strong>1.</strong> Create a vhost.conf file for the sub-domain</p>
<blockquote>
<pre><strong># nano /var/www/vhosts/domain.tld/subdomains/&lt;sub-domain&gt;/conf/vhost.conf</strong></pre>
</blockquote>
<p>and add a ServerAlias entry</p>
<blockquote>
<pre><strong>ServerAlias www.subdomain.domain.tld</strong></pre>
</blockquote>
<p><strong>2.</strong> Add an ‘A’ record for the ‘www’ prefix of the sub-domain from <strong>Plesk -&gt; Domains -&gt; &lt;domain.tld&gt; -&gt; DNS Settings -&gt; Add Record</strong></p>
<blockquote>
<pre><strong>www.subdomain.domain.tld A 1.1.1.1</strong></pre>
</blockquote>
<p><strong>3.</strong> To apply the ServerAlias changes, run the <strong>websrvmng</strong> utility</p>
<blockquote>
<pre><strong># /usr/local/psa/admin/bin/websrvmng -a</strong></pre>
</blockquote>
<p><strong>4.</strong> Restart the webserver</p>
<blockquote>
<pre><strong># service httpd restart</strong></pre>
</blockquote>
<p>Replace the subdomain/domain name and the 1.1.1.1 IP with the actual values.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/how-to-add-a-sub-domain-in-plesk-with-www-prefix.html" title="www prefix subdomain plesk windows">www prefix subdomain plesk windows</a> (3)</li><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/how-to-add-a-sub-domain-in-plesk-with-www-prefix.html" title="add sub domail on plesk 10 0 1">add sub domail on plesk 10 0 1</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/how-to-add-a-sub-domain-in-plesk-with-www-prefix.html" title="adding subdomain in plesk windows cmd">adding subdomain in plesk windows cmd</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/how-to-add-a-sub-domain-in-plesk-with-www-prefix.html" title="bash scripts add sub domain centos">bash scripts add sub domain centos</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/how-to-add-a-sub-domain-in-plesk-with-www-prefix.html" title="direct admin adding www prefix">direct admin adding www prefix</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/how-to-add-a-sub-domain-in-plesk-with-www-prefix.html" title="how to add the system in subdomain">how to add the system in subdomain</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/how-to-add-a-sub-domain-in-plesk-with-www-prefix.html" title="plesk hosting add serveralias windows">plesk hosting add serveralias windows</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/how-to-add-a-sub-domain-in-plesk-with-www-prefix.html" title="subdomain cannot be accessed using www prefix">subdomain cannot be accessed using www prefix</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/hosting-controller/plesk-control-panel/how-to-add-a-sub-domain-in-plesk-with-www-prefix.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: thegioinguonmo.com @ 2012-02-07 10:53:48 -->
