<?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>SupportSages &#187; Plesk</title>
	<atom:link href="http://www.supportsages.com/blog/tag/plesk-control-panel/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.supportsages.com/blog</link>
	<description>Technical Support and Server Management : Musings in the fox hole.</description>
	<lastBuildDate>Fri, 16 Jul 2010 02:47:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Manually removing the domains from plesk &#8211; when plesk frontend don&#8217;t work</title>
		<link>http://www.supportsages.com/blog/2010/06/manually-deleting-the-domains-from-plesk/</link>
		<comments>http://www.supportsages.com/blog/2010/06/manually-deleting-the-domains-from-plesk/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 03:06:07 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[Howtos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[deleting domains from plesk]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[manually removing domains]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=921</guid>
		<description><![CDATA[Could be a bug with Plesk 9.5 version. But Plesk 9.5 is giving issues once in a while in deleting the domains which are "partially" created.

<strong>ISSUE</strong>

DNS zones are never created, and the DBs are not properly updated. Even after reconfiguring the domains using websrvmng.exe --reconfigure-vhost --vhost-name ="domain.com" it couldn't be deleted. Shows the message "Information: Domains are now removed", but in real, the domain will be still shown under the domains list.

And the domain will be in suspended state. Unsuspension of the domain will result in an error message "<strong>DNSZone::Table::select() failed: no such row in the table"</strong>

Solution for the above ...]]></description>
			<content:encoded><![CDATA[<p>Could be a bug with Plesk 9.5 version. But Plesk 9.5 is giving issues once in a while in deleting the domains which are &#8220;partially&#8221; created.</p>
<p><strong>ISSUE</strong></p>
<p>DNS zones are never created, and the DBs are not properly updated. Even after reconfiguring the domains using websrvmng.exe &#8211;reconfigure-vhost &#8211;vhost-name =&#8221;domain.com&#8221; it couldn&#8217;t be deleted. Shows the message &#8220;Information: Domains are now removed&#8221;, but in real, the domain will be still shown under the domains list.</p>
<p>And the domain will be in suspended state. Unsuspension of the domain will result in an error message &#8220;<strong>DNSZone::Table::select() failed: no such row in the table&#8221;</strong></p>
<p>Solution for the above issue is explained at <a  href="http://www.supportsages.com/blog/2009/08/plesk-account-unsuspension-tableselect-failed-no-such-row-in-the-table/">http://www.supportsages.com/blog/2009/08/plesk-account-unsuspension-tableselect-failed-no-such-row-in-the-table/</a></p>
<p>However even after fixing the DNS like this, the issue cycles.</p>
<p>Removal of domain results in suspension of domain -&gt; Unsuspension of domains results in above error -&gt; Fixing the error allows to unsuspend and Removal of domain results in suspension of domain <img src='http://www.supportsages.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><strong>SOLUTION</strong></p>
<p>So solution I used to solve was to manually remove the domain related entries from plesk database, from the file system and also from the email services. Get into MySQL or whichever DB plesk is using. For finding the current DB, use Plesk Reconfigurator and then follow the parallels KB found at <a  href="http://kb.parallels.com/en/3472">http://kb.parallels.com/en/3472</a></p>
<p>The instructions below assumes that you are using Mailenable and Plesk vhosts directory is at &#8220;C:\Inetpub\Vhosts&#8221; . This location can be at D:\ or E:\ even. Also, I hereby assume that there are no two domains which can match the mysql LIKE query I used below i.e There are no domains like 1domain.com , 2domain.com along with actual domain.com. If there is one, please use your &#8220;brain&#8221; to find the right domain and the IDs associated with it. When in doubt, please comment.</p>
<p>Disclaimer : If you mess up the database neither me or SS will be responsible for it <img src='http://www.supportsages.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Let&#8217;s first gather all the &#8216;id&#8217;&#8217;s first, like dom_id, sys_user_id, id etc which will be helpful in the deletion of database entries relating to the domain name which you want to removed.</p>
<p>1. Getting the IDs.</p>
<p><strong>Domain ID &#8211; dom_id or id </strong></p>
<pre class="brush: bash;">

 mysql&gt; SELECT id FROM domains where name=’domain.com’
</pre>
<p>We are assuming that dom_id you got as a result of above command is 8880</p>
<p><strong>Database ID &#8211; db_id </strong></p>
<pre class="brush: bash;">

﻿﻿mysql&gt; select id FROM data_bases where dom_id=(SELECT id FROM domains where name=’domain.com’);
</pre>
<p>We are assuming that db_id you got as a result of above query is 1433. Please note that you could get more than one result. Please save all the db_id and re-execute the sql query for each db_id.</p>
<p><strong>System User ID</strong> &#8211; <strong>sys_user_id</strong></p>
<pre class="brush: bash;">

mysql&gt; select id FROM sys_users where home like '%domain.com%';
</pre>
<p>We are assuming that sys_user_id you got as a result of above command is 8843</p>
<p>Let&#8217;s start the actual deletion process</p>
<p>Shall we backup ? Better be safe!</p>
<pre class="brush: bash;">

C:\Program Files (x86)\Parallels\Plesk\Databases\MySQL\bin&gt;mysqldump -P8306 -uadmin -p&lt;plesk DB admin pass&gt; psa &gt; c:\psa.sql﻿﻿
</pre>
<p>You are now ready to delete. Please execute the follow sql commands in mysql prompt</p>
<pre class="brush: bash;">

delete from db_users where db_id='1433';
delete from data_bases where dom_id='8880';
delete from mail where id='8880';
delete from subdomains where id='8880';
delete from dns_recs where id='8880';
delete from domains where id='8880';
delete from domain_aliases where dom_id='8880';
delete from hosting where sys_user_id='8843';
delete FROM sys_users where id='8843';
delete from dns_zone where displayName=’domain.com’;
</pre>
<p>Database entries are deleted. Now it&#8217;s time to remove the users and files from the filesystems, IIS, Server, Mail server, DNS server etc.</p>
<ol>
<li>Remove the domain from inetpub -&gt; vhosts</li>
<li>Remove from Mail Enable Administrator. If it is SmarterMail, follow other steps.</li>
<li>Start =&gt; run =&gt; mailenable.msc =&gt; Post Offices and remove it.</li>
<li>Remove Sites &#8220;domain.com&#8221; and &#8220;Application Pool&#8221; from Internet Information Services manager. If IIS7, use command line option ﻿=&gt; %systemroot%\system32\inetsrv\APPCMD.EXE delete site &#8220;domain.com&#8221; .</li>
<li>Remove from Computer management Console -  System Tools &gt; Local Users and Groups &gt; Users. You must remove references to the domain for Plesk Domain User and Plesk IIS User as well.</li>
<li>Remove DNS entry &#8211; depending on the DNS server.</li>
</ol>
<p>Finally,</p>
<pre class="brush: bash;">

cd %plesk_bin%
domain.exe -r domain.com
</pre>
<p>These steps should help remove the domain manually from the plesk. Please note that this article is based on the second attempt and could be buggy. I assume some &#8220;common sense&#8221; when running these commands. Understand the commands and each step before you actually execute it. Good luck. Don&#8217;t MESS up!!</p>
<p align="left"><a  class="tt" href="http://twitter.com/home/?status=Manually+removing+the+domains+from+plesk+-+when+plesk+frontend+don%27t+work+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F921" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=Manually+removing+the+domains+from+plesk+-+when+plesk+frontend+don%27t+work+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F921" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2010/06/manually-deleting-the-domains-from-plesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I change the default Plesk Backup Repository location ?</title>
		<link>http://www.supportsages.com/blog/2010/05/how-do-i-change-the-default-plesk-backup-repository-location/</link>
		<comments>http://www.supportsages.com/blog/2010/05/how-do-i-change-the-default-plesk-backup-repository-location/#comments</comments>
		<pubDate>Thu, 20 May 2010 02:25:53 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[Howtos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[backup respository]]></category>
		<category><![CDATA[windows 32 bit editions]]></category>
		<category><![CDATA[windows 64 bit editions]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=755</guid>
		<description><![CDATA[<strong>Windows 32 bit edition</strong>

You can edit default server backup repository directory path through registry. Go to 

Regedit and then browse the keys
HKEY_LOCAL_MACHINE\SOFTWARE\PLESK\PSA Config\Config

Right Click on variable "DUMP_D" select Modify and set the server backup repository path as you wish. Default Directory Path for Plesk Backup is "C:\Program Files\Parallels\Plesk\Backup\". Go ahead and change it to a location of your wish, say "E:\Backup"

<strong>Windows 64 bit edition</strong>

Again it's the registry only, but the location may be a bit different. You need to browse to 
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PLESK\PSA Config\Config

And repeat the steps mentioned above. If you cant find these keys, search for the "DUMP_D" without quotes ...]]></description>
			<content:encoded><![CDATA[<p><strong>Windows 32 bit edition</strong></p>
<p>You can edit default server backup repository directory path through registry. Go to </p>
<p>Regedit and then browse the keys<br />
HKEY_LOCAL_MACHINE\SOFTWARE\PLESK\PSA Config\Config</p>
<p>Right Click on variable &#8220;DUMP_D&#8221; select Modify and set the server backup repository path as you wish. Default Directory Path for Plesk Backup is &#8220;C:\Program Files\Parallels\Plesk\Backup\&#8221;. Go ahead and change it to a location of your wish, say &#8220;E:\Backup&#8221;</p>
<p><strong>Windows 64 bit edition</strong></p>
<p>Again it&#8217;s the registry only, but the location may be a bit different. You need to browse to<br />
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PLESK\PSA Config\Config</p>
<p>And repeat the steps mentioned above. If you cant find these keys, search for the &#8220;DUMP_D&#8221; without quotes and update it.</p>
<p><strong>Linux 32/64 bit editions</strong></p>
<p>#vi /etc/psa/psa.conf</p>
<p>Find the following variable, DUMP_D  and edit the server backup repository directory PATH as you wish. Default Directory Path for Plesk Backup is &#8220;/var/lib/psa/dumps&#8221; You may change it to /media/backups</p>
<p># Backups directory<br />
DUMP_D /var/lib/psa/dumps</p>
<p>Okay. Those were the steps of a sysadmin not so greenhorn. If you are not comfortable with running regedit, use Plesk Panel Reconfigurator.</p>
<p>By using Parallels Plesk Panel Reconfigurator you can move the Parallels Plesk Panel backup files storage directory to another location on the same or another partition.</p>
<p>To change location of the backup files directory, follow these steps:</p>
<p>   1. Run Parallels Plesk Panel Reconfigurator and select the Change Plesk Backup Data location option.<br />
   2. Specify the destination directory name. If the directory does not exist, it will be created.<br />
   3. Click Next. During this operation all Parallels Plesk Panel services will be restarted.</p>
<p align="left"><a  class="tt" href="http://twitter.com/home/?status=How+do+I+change+the+default+Plesk+Backup+Repository+location+%3F+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F755" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=How+do+I+change+the+default+Plesk+Backup+Repository+location+%3F+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F755" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2010/05/how-do-i-change-the-default-plesk-backup-repository-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solving &#8220;Service Unavailable&#8221; message just for one website in Plesk and IIS7</title>
		<link>http://www.supportsages.com/blog/2010/05/solving-service-unavailable-message-just-for-one-website-in-plesk-and-iis7/</link>
		<comments>http://www.supportsages.com/blog/2010/05/solving-service-unavailable-message-just-for-one-website-in-plesk-and-iis7/#comments</comments>
		<pubDate>Mon, 17 May 2010 17:16:24 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[Howtos]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Application pool]]></category>
		<category><![CDATA[IIS7]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[retrieve domain password]]></category>
		<category><![CDATA[Service Unavailable]]></category>
		<category><![CDATA[Shared pool]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=740</guid>
		<description><![CDATA[A particular website of a client was getting "Service Unavailable" message for just one website in a Plesk server while all other website was working fine. No logs in Event Viewer were giving any clue. However when someone changed the Application pool to use the shared pool plesk(domain2.0)pool, it was working fine which deserted the issue to application pool issue.

Approach to the solution
<ol>
	<li>Check the application pool running, by taking <strong>Start </strong>=&#62;<strong> Run </strong>=&#62;<strong> inetmgr</strong></li>
	<li>Find out which application pool a website is running by taking the <strong>IIS Manager</strong> =&#62; <strong>Sites</strong> =&#62; <strong>domain.com</strong> (domain in question) and right column of options =&#62; ...]]></description>
			<content:encoded><![CDATA[<p>A particular website of a client was getting &#8220;Service Unavailable&#8221; message for just one website in a Plesk server while all other website was working fine. No logs in Event Viewer were giving any clue. However when someone changed the Application pool to use the shared pool plesk(domain2.0)pool, it was working fine which deserted the issue to application pool issue.</p>
<p>Approach to the solution</p>
<ol>
<li>Check the application pool running, by taking <strong>Start </strong>=&gt;<strong> Run </strong>=&gt;<strong> inetmgr</strong></li>
<li>Find out which application pool a website is running by taking the <strong>IIS Manager</strong> =&gt; <strong>Sites</strong> =&gt; <strong>domain.com</strong> (domain in question) and right column of options =&gt; <strong>Advanced Settings</strong> =&gt; <strong>General</strong> =&gt; <strong>Application pool<br />
</strong></li>
<li>Expand application pools and check whether the application pool is stopped and if it is in the stopped status, start it.</li>
<li>As a good measure, please recycle the application pool as well.</li>
<li>If it fails to start, check whether the application pool generates any event logs. Next measure is to reset the password of IUSR_username</li>
<li>For resetting the password of IUSR_username, go with the below steps,
<ol>
<li> Login to the server by RDP</li>
<li>Retrieve password of the domain owner from Parallels Panel database running this command:
<div>
<p>&#8220;%plesk_bin%&#8221;\dbclient &#8211;direct-sql &#8211;sql=&#8221;select su.login, a.password from accounts a, sys_users su  where a.id=su.account_id and su.login=&#8217;username&#8217; &#8221;</p>
<p>login       password<br />
<em>username </em><em>password</em></p>
<p>where <em>username </em>is an owner of the domain, which can be taken from <strong>Plesk</strong> =&gt; <strong>Domains</strong> =&gt; <strong>Web Hosting Settings </strong></p>
</div>
</li>
<li>Synchronize system password with accordance of retrieved one as follow:
<div>
<p>net user <em>IUSR_username </em><em>password</em></p>
<p><em> </em></p>
</div>
</li>
</ol>
</li>
<li>Try restarting the application pool again and if is works well, all is good, or else, check to see further options, like Handler Mappings or ISAPI_Filters. But Handler Mappings or ISAPI filters usually affects only one or two types of file extensions.</li>
</ol>
<p align="left"><a  class="tt" href="http://twitter.com/home/?status=Solving+%22Service+Unavailable%22+message+just+for+one+website+in+Plesk+and+IIS7+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F740" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=Solving+%22Service+Unavailable%22+message+just+for+one+website+in+Plesk+and+IIS7+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F740" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2010/05/solving-service-unavailable-message-just-for-one-website-in-plesk-and-iis7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bad Request (Invalid Hostname) when accessing via IP</title>
		<link>http://www.supportsages.com/blog/2009/12/bad-request-invalid-hostname-when-accessing-via-ip/</link>
		<comments>http://www.supportsages.com/blog/2009/12/bad-request-invalid-hostname-when-accessing-via-ip/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 19:19:57 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Bad Request]]></category>
		<category><![CDATA[Invalid Hostname]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=610</guid>
		<description><![CDATA[Customer wanted to have a dedicated IP, but once I change the IP from the plesk control panel, I couldn't get the website when accessed using IP. Instead, it was giving me the plesk control panel's default page. Reason ? Default Website was having the IP as "All Unassigned". Set that to the main IP address. But after that I was getting a new error.

What I could get was "Bad Request (Invalid Hostname)" in bold letters. Here is what I did to fix the same.

Start -> Run -> inetmgr -> Expand the (+) -> Websites -> Right click on the ...]]></description>
			<content:encoded><![CDATA[<p>Customer wanted to have a dedicated IP, but once I change the IP from the plesk control panel, I couldn&#8217;t get the website when accessed using IP. Instead, it was giving me the plesk control panel&#8217;s default page. Reason ? Default Website was having the IP as &#8220;All Unassigned&#8221;. Set that to the main IP address. But after that I was getting a new error.</p>
<p>What I could get was &#8220;Bad Request (Invalid Hostname)&#8221; in bold letters. Here is what I did to fix the same.</p>
<p>Start -> Run -> inetmgr -> Expand the (+) -> Websites -> Right click on the domain name -> Take Properties -> Website -> IP Address (make sure that it has the dedicated IP assigned there) and then click &#8220;Advanced&#8221;</p>
<p><strong>Add/Edit Web Site Identification</strong></p>
<p>IP Address : Choose the dedicated IP from drop down list<br />
TCP/IP Port : 80<br />
Host Header Value : Leave it blank (Important)</p>
<p>Leaving the Host Header Value should fix the issue and fetch the website when accessing it using the IP.</p>
<p align="left"><a  class="tt" href="http://twitter.com/home/?status=Bad+Request+%28Invalid+Hostname%29+when+accessing+via+IP+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F610" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=Bad+Request+%28Invalid+Hostname%29+when+accessing+via+IP+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F610" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/12/bad-request-invalid-hostname-when-accessing-via-ip/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to recover forgotten plesk password from a Linux or Windows Dedicated or VPS server</title>
		<link>http://www.supportsages.com/blog/2009/05/how-to-recover-forgotten-plesk-password-from-a-linux-or-windows-dedicated-or-vps-server/</link>
		<comments>http://www.supportsages.com/blog/2009/05/how-to-recover-forgotten-plesk-password-from-a-linux-or-windows-dedicated-or-vps-server/#comments</comments>
		<pubDate>Sat, 02 May 2009 12:02:27 +0000</pubDate>
		<dc:creator>Fabian</dc:creator>
				<category><![CDATA[Howtos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[recover plesk password]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=199</guid>
		<description><![CDATA[<h4>To Recover your <span class="highlight">plesk</span> <span class="highlight">password</span> on a Linux Dedicated or VPS Server</h4>
<ol>
	<li>Login as root to the server using ssh</li>
	<li>Then issue the command below, to see your plesk password<code> cat /etc/psa/.psa.shadow</code></li>
</ol>
<strong>To Recover your plesk password on a windows dedicated or VPS server</strong>
<ol>
	<li><code><strong>cd %plesk_bin%</strong></code></li>
	<li>Make sure that you ended up in a folder which is a line similar to "C:\Program Files\Parallels\Plesk\admin\bin\" If not, you will have to do a "D:\" or so depending on which drive or disk you installed Plesk on and then issue the below command</li>
	<li><strong><code>plesksrvclient.exe -get</code></strong></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h4>To Recover your <span class="highlight">plesk</span> <span class="highlight">password</span> on a Linux Dedicated or VPS Server</h4>
<ol>
<li>Login as root to the server using ssh</li>
<li>Then issue the command below, to see your plesk password<code> cat /etc/psa/.psa.shadow</code></li>
</ol>
<p><strong>To Recover your plesk password on a windows dedicated or VPS server</strong></p>
<ol>
<li><code><strong>cd %plesk_bin%</strong></code></li>
<li>Make sure that you ended up in a folder which is a line similar to &#8220;C:\Program Files\Parallels\Plesk\admin\bin\&#8221; If not, you will have to do a &#8220;D:\&#8221; or so depending on which drive or disk you installed Plesk on and then issue the below command</li>
<li><strong><code>plesksrvclient.exe -get</code></strong></li>
</ol>
<p align="left"><a  class="tt" href="http://twitter.com/home/?status=How+to+recover+forgotten+plesk+password+from+a+Linux+or+Windows+Dedicated+or+VPS+server+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F199" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=How+to+recover+forgotten+plesk+password+from+a+Linux+or+Windows+Dedicated+or+VPS+server+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F199" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/05/how-to-recover-forgotten-plesk-password-from-a-linux-or-windows-dedicated-or-vps-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One website in Plesk is asking for user name and password. What is the solution</title>
		<link>http://www.supportsages.com/blog/2009/04/one-website-in-plesk-is-asking-for-user-name-and-password-what-is-the-solution/</link>
		<comments>http://www.supportsages.com/blog/2009/04/one-website-in-plesk-is-asking-for-user-name-and-password-what-is-the-solution/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 08:18:55 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[permissions]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=51</guid>
		<description><![CDATA[This is common issue, but solutions varies based on situations. It could be one or a combination of a solutions listed below. If you had to go through another solution to solve it, please add it over here for others.
<ul>
	<li>Permission issue was making the website to ask for the password. Run the Plesk permissions fix from the Plesk reconfigurator. It could help you 10% of the time</li>
	<li>If it is asking for username and password, right after you changed the password of the account, 80% of the cases, below command based solution would work.
<blockquote>cd %plesk_bin%
websrvmng --update-anon-password --domain-name=<strong>domainname.com</strong></blockquote>
</li>
	<li>Login to plesk, select the ...]]></description>
			<content:encoded><![CDATA[<p>This is common issue, but solutions varies based on situations. It could be one or a combination of a solutions listed below. If you had to go through another solution to solve it, please add it over here for others.</p>
<ul>
<li>Permission issue was making the website to ask for the password. Run the Plesk permissions fix from the Plesk reconfigurator. It could help you 10% of the time</li>
<li>If it is asking for username and password, right after you changed the password of the account, 80% of the cases, below command based solution would work.<br />
<blockquote><p>cd %plesk_bin%<br />
websrvmng &#8211;update-anon-password &#8211;domain-name=<strong>domainname.com</strong></p></blockquote>
</li>
<li>Login to plesk, select the domain, click web directories. And there, select the the protection tab and click remove protection if enabled &#8211; Only 5% chances to have this solve your issue <img src='http://www.supportsages.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>Try resetting the domain password from Plesk, with Additional Write/Modify permissions checked. This may sync the IUSR_username&#8217;s password and the Plesk/FTP password. If it didn&#8217;t move on to next option to manually synchronize it.</li>
<li>Go to IIS &gt; Web sites &gt; <strong>domainname.com</strong> &gt; Properties &gt; Directory Security tab &gt; Click on Edit button within “Authentication and access control” section &gt; enter “<strong>password</strong>” in password filed &gt; click OK.<br />
After that, Go to Users Management &gt; find user IUSR_<strong>pleskusername </strong>&gt; Right Click &gt; set password &gt; proceed &gt; enter “<strong>password</strong>” &gt; click OK. If this also didn&#8217;t fix, issue is much more serious and move on to next options</li>
<li>Depending on the Plesk versions you use, Plesk group `psacln` should be allowed to access  the server from the network. For that Go to, Administrative Tools &gt; Security Settings &gt; Local Polices &gt; User Rights Assignment &gt; Access this computer from the network</li>
<li>Check whether there is any new FTP accounts added with the &#8220;<label for="fid-home">Home directory</label>&#8221; as httpdocs itself. If so please remove it and then change the password at Domain Setup and save it</li>
<li>Check whether the <strong>plesk_username</strong> and<strong> IIS_pleskusernam</strong>e are added and has proper permissions for the <strong>DriveLetter</strong>:\Inetpub\vhosts\<strong>domainname.com</strong> as well as <strong>DriveLetter</strong>:\Inetpub\vhosts\<strong>domainname.com</strong>\httpdocs.</li>
</ul>
<p>Okay those are my current solutions.</p>
<p align="left"><a  class="tt" href="http://twitter.com/home/?status=One+website+in+Plesk+is+asking+for+user+name+and+password.+What+is+the+solution+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F51" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=One+website+in+Plesk+is+asking+for+user+name+and+password.+What+is+the+solution+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F51" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/04/one-website-in-plesk-is-asking-for-user-name-and-password-what-is-the-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When trying to log in to Plesk horde, the login page reloads and does not log in into webmail.</title>
		<link>http://www.supportsages.com/blog/2009/04/when-trying-to-log-in-to-plesk-horde-the-login-page-reloads-and-does-not-log-in-into-webmail/</link>
		<comments>http://www.supportsages.com/blog/2009/04/when-trying-to-log-in-to-plesk-horde-the-login-page-reloads-and-does-not-log-in-into-webmail/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 15:58:20 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Webmail]]></category>
		<category><![CDATA[horde]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=26</guid>
		<description><![CDATA[Operating System was Linux

No one was able to login to Plesk's default webmail, horde. Enabled error reporting in php.ini and got the error message as below in the "<strong>/etc/httpd/logs/error_log</strong>" and/or "<strong>/var/log/psa-horde/psa-horde.log</strong>"
<blockquote>PHP Warning:  Unknown(): Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/usr/local/psa/admin/sessions) in Unknown on line 0, referer: http://webmail.supportsages.com/test.php?mode=unregister</blockquote>
Here the solution was to edit the php.ini to use /tmp as the  session.save_path or even "/var/lib/php/session"

Other solution, for similar issue (not this exact error though) is to set,

session.auto_start = 0 in php.ini
Making sure that localhost entry is in /etc/hosts and resolves. ...]]></description>
			<content:encoded><![CDATA[<p>Operating System was Linux</p>
<p>No one was able to login to Plesk&#8217;s default webmail, horde. Enabled error reporting in php.ini and got the error message as below in the &#8220;<strong>/etc/httpd/logs/error_log</strong>&#8221; and/or &#8220;<strong>/var/log/psa-horde/psa-horde.log</strong>&#8221;</p>
<blockquote><p>PHP Warning:  Unknown(): Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/usr/local/psa/admin/sessions) in Unknown on line 0, referer: http://webmail.supportsages.com/test.php?mode=unregister</p></blockquote>
<p>Here the solution was to edit the php.ini to use /tmp as the  session.save_path or even &#8220;/var/lib/php/session&#8221;</p>
<p>Other solution, for similar issue (not this exact error though) is to set,</p>
<p>session.auto_start = 0 in php.ini<br />
Making sure that localhost entry is in /etc/hosts and resolves. For that do a <strong>telnet localhost 143 </strong> and if you get &#8220;Connected to&#8221; message, its not that issue <img src='http://www.supportsages.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' />  check <strong>/etc/hosts</strong> file. It must have permissions <strong>-rw-r&#8211;r&#8211;</strong> (644) on a ls -l<br />
Whatever be the session.save_path setting in the php.ini, it should have the permission of 1777<br />
Run IMP test to check the problem at: http://webmail.DOMAIN.COM/horde/imp/test.php and make sure that you get the <strong><span style="color: #008000;">green</span></strong> words for all the tests.<br />
This problem may occur if the domain&#8217;s web content is hosted on another server and the MX DNS record doesn&#8217;t exist or points not to the Plesk server. IMP tries to check mail on whatever server the domain name resolves to. In order to prevent this from happening the domain name or MX record (if it exists) must be resolved locally to the server.</p>
<p>References : <a  href="http://kb.parallels.com/article_41_260_en.html">http://kb.parallels.com/article_41_260_en.html</a></p>
<p align="left"><a  class="tt" href="http://twitter.com/home/?status=When+trying+to+log+in+to+Plesk+horde%2C+the+login+page+reloads+and+does+not+log+in+into+webmail.+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F26" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=When+trying+to+log+in+to+Plesk+horde%2C+the+login+page+reloads+and+does+not+log+in+into+webmail.+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F26" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/04/when-trying-to-log-in-to-plesk-horde-the-login-page-reloads-and-does-not-log-in-into-webmail/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Plesk : Unable to send or receive emails to users in the domain hosted in the server</title>
		<link>http://www.supportsages.com/blog/2009/04/plesk-unable-to-send-or-receive-emails-to-users-in-the-domain-hosted-in-the-server/</link>
		<comments>http://www.supportsages.com/blog/2009/04/plesk-unable-to-send-or-receive-emails-to-users-in-the-domain-hosted-in-the-server/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 15:01:43 +0000</pubDate>
		<dc:creator>Jince</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[qmail]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=23</guid>
		<description><![CDATA[Customers were not receiving any emails or unable to send email to users in the domain hosted in the server.

Log was saying 
<blockquote>Server Error: 421 fopen('users/assign') failed (#5.7.10) Permission denied.</blockquote>

As the log says, it is permission or ownership issue with the folder. We could have reset that file alone, but almost all the ownerships &#038; permissions were messed up. So the first step was to use the mchk utility. Issued<strong> /usr/local/psa/admin/sbin/mchk --with-spam
</strong>

But that didn't fix the issue and we had to force the reinstallation/upgrade of psa-qmail package available as an rpm. Reinstalled and mail started working. 

Parallels KB is improving ...]]></description>
			<content:encoded><![CDATA[<p>Customers were not receiving any emails or unable to send email to users in the domain hosted in the server.</p>
<p>Log was saying </p>
<blockquote><p>Server Error: 421 fopen(&#8216;users/assign&#8217;) failed (#5.7.10) Permission denied.</p></blockquote>
<p>As the log says, it is permission or ownership issue with the folder. We could have reset that file alone, but almost all the ownerships &#038; permissions were messed up. So the first step was to use the mchk utility. Issued<strong> /usr/local/psa/admin/sbin/mchk &#8211;with-spam<br />
</strong></p>
<p>But that didn&#8217;t fix the issue and we had to force the reinstallation/upgrade of psa-qmail package available as an rpm. Reinstalled and mail started working. </p>
<p>Parallels KB is improving day by day and even better than cPanel documentation. Refer <a  href="http://kb.parallels.com/en/944">http://kb.parallels.com/en/944</a> for more details on mchk.exe usage.</p>
<p align="left"><a  class="tt" href="http://twitter.com/home/?status=Plesk+%3A+Unable+to+send+or+receive+emails+to+users+in+the+domain+hosted+in+the+server+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F23" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=Plesk+%3A+Unable+to+send+or+receive+emails+to+users+in+the+domain+hosted+in+the+server+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F23" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/04/plesk-unable-to-send-or-receive-emails-to-users-in-the-domain-hosted-in-the-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable to delete a domain from Windows Plesk</title>
		<link>http://www.supportsages.com/blog/2009/04/unable-to-delete-a-domain-from-windows-plesk/</link>
		<comments>http://www.supportsages.com/blog/2009/04/unable-to-delete-a-domain-from-windows-plesk/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 14:43:27 +0000</pubDate>
		<dc:creator>Jince</dc:creator>
				<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=19</guid>
		<description><![CDATA[Error was this one. Mailenable Free version was the mail server installed.

<blockquote>Unable to delete DSMail service for domain: Unable to remove domain mail: mailmng failed: MEAOSM.Domain.GetDomain failed
---------------------- Debug Info -------------------------------
0: C:\Program Files\SWsoft\Plesk\admin\plib\class.PhDomain.php:327 psaerror(string "Unable to delete DSMail service for domain: Unable to remove domain mail: mailmng failed: MEAOSM.Domain.GetDomain failed")
1: C:\Program Files\SWsoft\Plesk\admin\plib\class.BsDomain.php:277 phdomain::delete()
2: C:\Program Files\SWsoft\Plesk\admin\plib\class.BsDomain.php:470 bsdomain->delete(integer "0")
3: C:\Program Files\SWsoft\Plesk\admin\plib\class.Manager.php:334 mdeletedomains(array)
4: C:\Program Files\SWsoft\Plesk\admin\htdocs\domains\domains.php3:166 manager->removedomains(array)</blockquote>

Solution would be



<blockquote>C:\Documents and Settings\Administrator\Desktop>  cd %plesk_bin%
C:\Documents and Settings\Administrator\Desktop>  mchk.exe --domain --domain-name=domain.com</blockquote>

If the plesk is installed on another drive,  after the %plesk_bin%, you would need to do a drive change by a simple D:\ or so, ...]]></description>
			<content:encoded><![CDATA[<p>Error was this one. Mailenable Free version was the mail server installed.</p>
<blockquote><p>Unable to delete DSMail service for domain: Unable to remove domain mail: mailmng failed: MEAOSM.Domain.GetDomain failed<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- Debug Info &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
0: C:\Program Files\SWsoft\Plesk\admin\plib\class.PhDomain.php:327 psaerror(string &#8220;Unable to delete DSMail service for domain: Unable to remove domain mail: mailmng failed: MEAOSM.Domain.GetDomain failed&#8221;)<br />
1: C:\Program Files\SWsoft\Plesk\admin\plib\class.BsDomain.php:277 phdomain::delete()<br />
2: C:\Program Files\SWsoft\Plesk\admin\plib\class.BsDomain.php:470 bsdomain->delete(integer &#8220;0&#8243;)<br />
3: C:\Program Files\SWsoft\Plesk\admin\plib\class.Manager.php:334 mdeletedomains(array)<br />
4: C:\Program Files\SWsoft\Plesk\admin\htdocs\domains\domains.php3:166 manager->removedomains(array)</p></blockquote>
<p>Solution would be</p>
<blockquote><p>C:\Documents and Settings\Administrator\Desktop>  cd %plesk_bin%<br />
C:\Documents and Settings\Administrator\Desktop>  mchk.exe &#8211;domain &#8211;domain-name=domain.com</p></blockquote>
<p>If the plesk is installed on another drive,  after the %plesk_bin%, you would need to do a drive change by a simple D:\ or so, which will get you the exact plesk binary directory.</p>
<p>Ofcourse replace domain with real domain name to be deleted.</p>
<p align="left"><a  class="tt" href="http://twitter.com/home/?status=Unable+to+delete+a+domain+from+Windows+Plesk+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F19" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=Unable+to+delete+a+domain+from+Windows+Plesk+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F19" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/04/unable-to-delete-a-domain-from-windows-plesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
