<?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>ThinkSupport.net - Outsourced Web Hosting Support, Cheap Server Management, Cheap Fully Managed Dedicated Servers, Software Development, Website Designing and SEO services, Vision Helpdesk Software &#187; Plesk</title>
	<atom:link href="http://www.thinksupport.net/blog/category/plesk/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thinksupport.net/blog</link>
	<description>Outsourced Web Hosting and Software Development</description>
	<lastBuildDate>Tue, 01 Feb 2011 12:42:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Howto: turn off open_basedir in Plesk</title>
		<link>http://www.thinksupport.net/blog/howto-turn-off-open_basedir-in-plesk.html</link>
		<comments>http://www.thinksupport.net/blog/howto-turn-off-open_basedir-in-plesk.html#comments</comments>
		<pubDate>Thu, 09 Dec 2010 12:49:37 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=331</guid>
		<description><![CDATA[By default Plesk applies open_basedir restriction for all the domains on the server. You can remove the open_basedir restriction lines from the httpd.include file located at /home/httpd/vhosts/example.com/conf/ directory but Plesk will overwrite the file again once it rebuild the include files. To permanently remove the open_basedir restrictions for a domain, create a vhost.conf file vi [...]]]></description>
			<content:encoded><![CDATA[<p>By default Plesk applies open_basedir restriction for all the domains on the server. You can remove the open_basedir restriction lines from the httpd.include file located at /home/httpd/vhosts/example.com/conf/ directory but Plesk will overwrite the file again once it rebuild the include files.</p>
<p>To permanently remove the open_basedir restrictions for a domain, create a vhost.conf file</p>
<p>vi /home/httpd/vhosts/example.com/conf/vhost.conf</p>
<p>and place the following lines:</p>
<p>&lt;Directory /home/httpd/vhosts/example.com/httpdocs/&gt;<br />
php_admin_value open_basedir none<br />
&lt;/Directory&gt;</p>
<p>Once done, rebuild the include file with the command:</p>
<p>/usr/local/psa/admin/bin/websrvmng -a</p>
<p>and restart the Apache service:</p>
<p>service httpd restart</p>
<p>To verify the new settings, place a phpinfo.php file under the account, browse the file and check the “Local Value” column.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/howto-turn-off-open_basedir-in-plesk.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install SuPHP/phpSuExec on Plesk?</title>
		<link>http://www.thinksupport.net/blog/how-to-install-suphpphpsuexec-on-plesk.html</link>
		<comments>http://www.thinksupport.net/blog/how-to-install-suphpphpsuexec-on-plesk.html#comments</comments>
		<pubDate>Thu, 09 Dec 2010 12:46:00 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=328</guid>
		<description><![CDATA[SuPHP Or PHPSuExec is a module that increases the security of the server and executes PHP files under the ownership of the owner of the file instead of the Apache user i.e. “apache”. The advantages of having suPHP are: 1. Files and Directories those need 777 permissions to write into, via the browser will now [...]]]></description>
			<content:encoded><![CDATA[<p>SuPHP Or PHPSuExec is a module that increases the security of the server and executes PHP files under the ownership of the owner of the file instead of the Apache user i.e. “apache”.</p>
<p>The advantages of having suPHP are:</p>
<p>1. Files and Directories those need 777 permissions to write into, via the browser will now need a maximum of 755 permissions. The files/directories with 777 permissions will result in an “Internal Server Error”.</p>
<p>2. If you need to manipulate the value of a php directive for a domain, for ex. register_globals, it needs to be placed in the php.ini of a domain instead of the .htaccess file as it will result in an “Internal Server Error”.</p>
<p>3. All the files and directories uploaded using a script will have the ownership of the user instead of user ‘apache’ (i.e. the Apache user).</p>
<p>4. A user can edit/remove the files using Ftp that are uploaded via the browser.</p>
<p>In order to install SuPHP on the server, download and install the atomic script</p>
<p># wget -q -O – http://www.atomicorp.com/installers/atomic | sh</p>
<p>Once the script is installed, install SuPHP module using yum</p>
<p># yum install mod_suphp</p>
<p>The next step is to load the SuPHP module with Apache. The suphp installation automatically creates a “mod_suphp.conf” file under the Apache configuration directory, if not create it.</p>
<p># vi /etc/httpd/conf.d/mod_suphp.conf</p>
<p>and insert the following lines:</p>
<p>#Load the Mod_SuPHP module<br />
LoadModule suphp_module modules/mod_suphp.so</p>
<p>### Uncomment to activate mod_suphp<br />
suPHP_AddHandler x-httpd-php<br />
AddHandler x-httpd-php .php</p>
<p>#Enable the SuPHP engine<br />
suPHP_Engine on</p>
<p>#Specify the path to the configuration directory<br />
suPHP_ConfigPath /etc</p>
<p>Apache calls all the configuration files from the /etc/httpd/conf.d directory by default so there is no need to include the module in the httpd.conf file separately.</p>
<p>Now,  configuration file under /etc should be present (if not create it)</p>
<p>vi /etc/suphp.conf</p>
<p>copy/paste the following contents as it is:</p>
<p>[global]<br />
logfile=/var/log/suphp.log<br />
loglevel=info<br />
webserver_user=apache<br />
docroot=/var/www/vhosts<br />
allow_file_group_writeable=true<br />
allow_file_others_writeable=false<br />
allow_directory_group_writeable=true<br />
allow_directory_others_writeable=false<br />
errors_to_browser=false<br />
umask=0022<br />
min_uid=30<br />
min_gid=30<br />
x-httpd-php=”php:/usr/bin/php-cgi”<br />
x-suphp-cgi=”execute:!self”</p>
<p>Make sure the “handle_userdir” directive is commented or removed from the file since it is deprecated from the latest version.</p>
<p>At the end, we have to restart the httpd service for all these changes to take effect</p>
<p># service httpd restart</p>
<p>Test the SuPHP installation: Create a phpinfo.php file with 777 permission and it should show you an “Internal Server Error” on browsing.</p>
<p>Note: The double-quotes ( ” ) in the suphp.conf file may change to dots ( . ) if the contents are pasted as it is, so make sure you change them to double-quotes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/how-to-install-suphpphpsuexec-on-plesk.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PleskFatalException Unable to connect to database</title>
		<link>http://www.thinksupport.net/blog/pleskfatalexception-unable-to-connect-to-database.html</link>
		<comments>http://www.thinksupport.net/blog/pleskfatalexception-unable-to-connect-to-database.html#comments</comments>
		<pubDate>Thu, 09 Dec 2010 12:38:52 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=325</guid>
		<description><![CDATA[When a Plesk server exceeds the allotted Mysql connections, you will see the “Mysql: Too many connections” error message while accessing the Plesk control panel instead of the login prompt. The temporary solution is to restart the Mysql service, and the permanent solution is to increase the “max_connections”. ERROR: PleskFatalException Unable to connect to database: [...]]]></description>
			<content:encoded><![CDATA[<p>When a Plesk server exceeds the allotted Mysql connections, you will see the “Mysql: Too many connections” error message while accessing the Plesk control panel instead of the login prompt. The temporary solution is to restart the Mysql service, and the permanent solution is to increase the “max_connections”.</p>
<p>ERROR: PleskFatalException<br />
Unable to connect to database: mysql_connect() : Too many connections<br />
0: /usr/local/psa/admin/plib/common_func.php3:190<br />
psaerror(string ‘Unable to connect to database: mysql_connect() Too many connections’)</p>
<p>To resolve the “Mysql: Too many connections” issue, ssh to your server as root and restart the Mysql service</p>
<p># /etc/init.d/mysqld restart</p>
<p>If the problem occurs quite frequently, you need to increase the “max_connections” on your server. First check the number max_connections set on your server</p>
<p># mysqladmin variables -uadmin -p`cat /etc/psa/.psa.shadow` | grep max_connections</p>
<p>To increase the max_connections, edit the Mysql configuration file my.cnf</p>
<p># vi /etc/my.cnf</p>
<p>and set the following parameter</p>
<p>max_connections = xxx</p>
<p>where, xxx is the number of connections you wish to set.</p>
<p>Save the file and restart the Mysql service for the changes to take affect:</p>
<p># /etc/init.d/mysqld restart</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/pleskfatalexception-unable-to-connect-to-database.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>qmail-inject: fatal: mail server permanently rejected message</title>
		<link>http://www.thinksupport.net/blog/qmail-inject-fatal-mail-server-permanently-rejected-message.html</link>
		<comments>http://www.thinksupport.net/blog/qmail-inject-fatal-mail-server-permanently-rejected-message.html#comments</comments>
		<pubDate>Thu, 09 Dec 2010 12:37:42 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=323</guid>
		<description><![CDATA[You see the “qmail-inject: fatal: mail server permanently rejected message” error message while sending emails from a Plesk server and the error message such as follows in the mail logs: qmail-queue-handlers[xxxx]: Unable to change group ID: Operation not permitted qmail-queue[xxxx]: files: write buf 0xbff4dfe0[156] to fd (5) error – (32) Broken pipe qmail-queue[xxxx]: files: cannot [...]]]></description>
			<content:encoded><![CDATA[<p>You see the “qmail-inject: fatal: mail server permanently rejected message” error message while sending emails from a Plesk server and the error message such as follows in the mail logs:</p>
<p>qmail-queue-handlers[xxxx]: Unable to change group ID: Operation not permitted<br />
qmail-queue[xxxx]: files: write buf 0xbff4dfe0[156] to fd (5) error – (32) Broken pipe<br />
qmail-queue[xxxx]: files: cannot write chuck from 4 to 5 – (32) Broken pipe</p>
<p>It is due to the incorrect permission/ownership of the ‘qmail-queue’ file under the “/var/qmail/bin” directory. Make sure<br />
the ownership is ”mhandlers-user:popuser’<br />
the permission is 2511.</p>
<p>Check the current ownership/permission:</p>
<p># ls -la /var/qmail/bin/qmail-queue</p>
<p>It should be as follows:</p>
<p>-r-x–s–x  1 mhandlers-user popuser 67804 May  4 08:41 /var/qmail/bin/qmail-queue</p>
<p>If not, correct the ownership</p>
<p># chown mhandlers-user.popuser /var/qmail/bin/qmail-queue</p>
<p>set the proper permissions,</p>
<p># chmod 2511 /var/qmail/bin/qmail-queue</p>
<p>Restart Qmail once and see if the email works.</p>
<p>Note: If the emails still doesn’t work, please comment this post with the error message and the output of the following command and I will find out the solution for you:</p>
<p>ls -la /var/qmail/bin/qmail-queue*</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/qmail-inject-fatal-mail-server-permanently-rejected-message.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable http compression on a Plesk server?</title>
		<link>http://www.thinksupport.net/blog/how-to-enable-http-compression-on-a-plesk-server.html</link>
		<comments>http://www.thinksupport.net/blog/how-to-enable-http-compression-on-a-plesk-server.html#comments</comments>
		<pubDate>Thu, 09 Dec 2010 12:36:57 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=321</guid>
		<description><![CDATA[First of all, what is http compression and which module to use for http compression? Compressing data before transmitting to the browsers and then uncompressing the data before displaying. The module that is responsible for http compression i.e. compressing the data is called mod_deflate.The main advantage is that it saves a lot of bandwidth. On [...]]]></description>
			<content:encoded><![CDATA[<p>First of all, what is http compression and which module to use for http compression? Compressing data before transmitting to the browsers and then uncompressing the data before displaying. The module that is responsible for http compression i.e. compressing the data is called mod_deflate.The main advantage is that it saves a lot of bandwidth.</p>
<p>On a Plesk server, the mod_deflate module is installed by default, however it may be disabled in the Apache configuration file. To enable the module edit the Apache configuration file</p>
<p>vi /etc/httpd/conf/httpd.conf</p>
<p>Search for the line</p>
<p>#LoadModule deflate_module modules/mod_deflate.so</p>
<p>and uncomment it i.e. remove the ‘#’ mark</p>
<p>LoadModule deflate_module modules/mod_deflate.so</p>
<p>Save the file and restart the httpd service</p>
<p>service httpd restart</p>
<p>Now, create a .conf file under the /etc/httpd/conf.d/ directory since Apache reads all the .conf files from that directory on a Plesk server</p>
<p>vi /etc/httpd/conf.d/deflate.conf</p>
<p>and place the following code in it</p>
<p>&lt;Location /&gt;<br />
SetOutputFilter DEFLATE<br />
SetEnvIfNoCase Request_URI  \<br />
\.(?:gif|jpe?g|png)$ no-gzip dont-vary<br />
&lt;/Location&gt;</p>
<p>Save the file and restart the httpd service. The compression code will compress all the files except the .gif, .jpe, .jpeg and .png files. To test the compression, use the tool</p>
<p>http://www.whatsmyip.org/mod_gzip_test/</p>
<p>To enable compression for a specific directory or domain, specify the directory path in the &lt;Location&gt; directive in deflate.conf and restart the Apache server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/how-to-enable-http-compression-on-a-plesk-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to access psa database in Plesk?</title>
		<link>http://www.thinksupport.net/blog/how-to-access-psa-database-in-plesk.html</link>
		<comments>http://www.thinksupport.net/blog/how-to-access-psa-database-in-plesk.html#comments</comments>
		<pubDate>Thu, 09 Dec 2010 12:35:44 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=319</guid>
		<description><![CDATA[Plesk uses a ‘psa’ database to store all the data and values. This data can be easily retrieved at any point of time using the Mysql queries. How to access the psa database in Plesk? There are 2 ways to access the Plesk psa database, from the Linux command line (via ssh) and from the [...]]]></description>
			<content:encoded><![CDATA[<p>Plesk uses a ‘psa’ database to store all the data and values. This data can be easily retrieved at any point of time using the Mysql queries.</p>
<p>How to access the psa database in Plesk?<br />
There are 2 ways to access the Plesk psa database, from the Linux command line (via ssh) and from the Plesk control panel.</p>
<p>Method 1) To access the psa database from command line:</p>
<p>SSH to your server as root. and execute the mysql command. The /etc/psa/.psa.shadow file contains the Plesk admin password.</p>
<p># mysql -uadmin -p`cat /etc/psa/.psa.shadow`</p>
<p>You will be taken to the Mysql prompt. To switch to the psa database, execute,</p>
<p>mysql&gt; use psa;</p>
<p>You are now in the psa database and can view all the tables</p>
<p>mysql&gt; show tables;</p>
<p>Method 2) From the Plesk control panel.</p>
<p>Login to Plesk as user ‘admin’ and password from /etc/psa/.psa.shadow file.</p>
<p>Click &#8220;Settings&#8221; &gt;&gt; &#8220;Database Hosting Preferences&#8221; &gt;&gt; click OK &gt;&gt;<br />
&#8220;Local MySQL server&#8221; &gt;&gt; &#8220;Databases&#8221; tab &gt;&gt; &#8220;Webadmin&#8221;.</p>
<p>Once you click “Webadmin”, phpMyAdmin will open in a new window from where you can access all the databases including the ‘psa’ database. Make sure pop-ups are enabled in your browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/how-to-access-psa-database-in-plesk.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk Installation: Unable to install the psa-backup-manager</title>
		<link>http://www.thinksupport.net/blog/plesk-installation-unable-to-install-the-psa-backup-manager.html</link>
		<comments>http://www.thinksupport.net/blog/plesk-installation-unable-to-install-the-psa-backup-manager.html#comments</comments>
		<pubDate>Thu, 09 Dec 2010 12:35:00 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=317</guid>
		<description><![CDATA[You see a “Unable to install the psa-backup-manager” error while installing Plesk and it is because of the incomplete db4 packages needed for embedded database support for various applications. The complete error message looks like: Determining the packages that need to be installed. ERROR: Unable to install the “psa-backup-manager-9.x.x-cos5.buildxxxxxxx.00.i586? package. Not all packages were installed. [...]]]></description>
			<content:encoded><![CDATA[<p>You see a “Unable to install the psa-backup-manager” error while installing Plesk and it is because of the incomplete db4 packages needed for embedded database support for various applications. The complete error message looks like:</p>
<p>Determining the packages that need to be installed.<br />
ERROR: Unable to install the “psa-backup-manager-9.x.x-cos5.buildxxxxxxx.00.i586? package.<br />
Not all packages were installed.<br />
Please, contact product technical support.</p>
<p>Solution:</p>
<p>Check if the required db4 packages are installed by executing:</p>
<p># rpm -qa | grep db4</p>
<p>It will list the db4 packages. If the db4-devel and db4-utils are missing from the above output, install the packages using yum</p>
<p># yum install db4-utils<br />
# yum install db4-devel</p>
<p>That’s it. You can start the Plesk installation once again and it will install the psa-backup-manager successfully.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/plesk-installation-unable-to-install-the-psa-backup-manager.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk: Unable to create PHostingManager object:Unable to set current ip address</title>
		<link>http://www.thinksupport.net/blog/plesk-unable-to-create-phostingmanager-objectunable-to-set-current-ip-address.html</link>
		<comments>http://www.thinksupport.net/blog/plesk-unable-to-create-phostingmanager-objectunable-to-set-current-ip-address.html#comments</comments>
		<pubDate>Thu, 09 Dec 2010 12:33:27 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=314</guid>
		<description><![CDATA[You may notice an error message “Unable to create PHostingManager object:Unable to set current ip address: IP address is missing” in Plesk when trying to manage a domain from Domains &#62;&#62; domainname.tld. The error appears when an IP assigned to a domain is not assigned to the ‘Owner’ of the domain. To fix the issue, [...]]]></description>
			<content:encoded><![CDATA[<p>You may notice an error message “Unable to create PHostingManager object:Unable to set current ip address: IP address is missing” in Plesk when trying to manage a domain from Domains &gt;&gt; domainname.tld. The error appears when an IP assigned to a domain is not assigned to the ‘Owner’ of the domain.</p>
<p>To fix the issue, go to</p>
<p>Plesk &#8211;&gt; Click &#8216;Settings&#8217; &#8211;&gt; click &#8220;IP Addresses&#8221; &#8211;&gt;<br />
click the number under the &#8216;Users&#8217; coloumn in front of the IP address &#8211;&gt;<br />
Assign the IP to the owner.</p>
<p>This will update the ‘psa’ database and allow the user to manage the domain from Plesk.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/plesk-unable-to-create-phostingmanager-objectunable-to-set-current-ip-address.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problem adding a database user in plesk Or restarting mysql: Table mysql.servers doesn’t exist</title>
		<link>http://www.thinksupport.net/blog/problem-adding-a-database-user-in-plesk-or-restarting-mysql-table-mysql-servers-doesn%e2%80%99t-exist.html</link>
		<comments>http://www.thinksupport.net/blog/problem-adding-a-database-user-in-plesk-or-restarting-mysql-table-mysql-servers-doesn%e2%80%99t-exist.html#comments</comments>
		<pubDate>Thu, 09 Dec 2010 12:25:05 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=312</guid>
		<description><![CDATA[Mysql Error with Plesk after updates on server,  You may receive a “Table ‘mysql.servers’ doesn’t exist” error message while adding a database user in Plesk OR while restarting the Mysql service. The complete error message look like: Error: Connection to the database server has failed: Table &#8216;mysql.servers&#8217; doesn&#8217;t exist OR Can&#8217;t open and lock privilege [...]]]></description>
			<content:encoded><![CDATA[<p>Mysql Error with Plesk after updates on server,  You may receive a “Table ‘mysql.servers’ doesn’t exist” error message while adding a database user in Plesk OR while restarting the Mysql service. The complete error message look like:</p>
<p>Error: Connection to the database server has failed:<br />
Table &#8216;mysql.servers&#8217; doesn&#8217;t exist</p>
<p>OR</p>
<p>Can&#8217;t open and lock privilege tables:<br />
Table &#8216;mysql.servers&#8217; doesn&#8217;t exist</p>
<p>Solution :</p>
<p>Step 1: SSH to your server<br />
Step 2: Open mysql by typing:</p>
<p>mysql -u YOURUSERNAMEHERE -p</p>
<p>Make sure to put in your own username. When you hit enter, you’ll be asked for your mysql password.</p>
<p>Step 3: Use the mysql database:</p>
<p>USE mysql;</p>
<p>Step 4: Place this code in to create the table:</p>
<p>CREATE TABLE `servers` (<br />
`Server_name` char(64) NOT NULL,<br />
`Host` char(64) NOT NULL,<br />
`Db` char(64) NOT NULL,<br />
`Username` char(64) NOT NULL,<br />
`Password` char(64) NOT NULL,<br />
`Port` int(4) DEFAULT NULL,<br />
`Socket` char(64) DEFAULT NULL,<br />
`Wrapper` char(64) NOT NULL,<br />
`Owner` char(64) NOT NULL,<br />
PRIMARY KEY (`Server_name`)<br />
) ENGINE=MyISAM DEFAULT CHARSET=utf8<br />
COMMENT=&#8217;MySQL Foreign Servers table&#8217;;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/problem-adding-a-database-user-in-plesk-or-restarting-mysql-table-mysql-servers-doesn%e2%80%99t-exist.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>www.domain.com shows Default Plesk page &#8211; Windows</title>
		<link>http://www.thinksupport.net/blog/www-domain-com-shows-default-plesk-page-windows.html</link>
		<comments>http://www.thinksupport.net/blog/www-domain-com-shows-default-plesk-page-windows.html#comments</comments>
		<pubDate>Wed, 09 Sep 2009 14:20:19 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=290</guid>
		<description><![CDATA[* First check the DNS zone file for domain.com in Plesk -&#62; Domains -&#62; domain.com -&#62; DNS and entry for www.domain.com is set correctly * Disabled/Enabled the option for www in Plesk -&#62; Domains -&#62; domain.com -&#62; Rename Domain -&#62; Uncheck -&#62; Save and repeat it by selecting the option again * Next reconfigured the [...]]]></description>
			<content:encoded><![CDATA[<p>* First check the DNS zone file for domain.com in Plesk -&gt; Domains -&gt; domain.com -&gt; DNS and entry for www.domain.com is set correctly</p>
<p>* Disabled/Enabled the option for www in Plesk -&gt; Domains -&gt; domain.com -&gt; Rename Domain -&gt; Uncheck -&gt; Save and repeat it by selecting the option again</p>
<p>* Next reconfigured the virtual host by running following command in DOS prompt of your VPS.</p>
<p>* cd %plesk_bin%</p>
<p>* websrvmng.exe &#8211;remove-vhost &#8211;vhost-name=domain.com</p>
<p>* websrvmng.exe &#8211;reconfigure-vhost &#8211;vhost-name=domain.com</p>
<p>* Make sure that host header with &#8216;www&#8217; prefix is presented in the list of identities.IIS &gt; Web Sites &gt; domain.com &gt; Right Click Properties &gt; Web Site tab &gt; Advanced ;if it&#8217;s missing then add it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/www-domain-com-shows-default-plesk-page-windows.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

