<?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</title>
	<atom:link href="http://www.thinksupport.net/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thinksupport.net/blog</link>
	<description>Outsourced Web Hosting and Software Development</description>
	<lastBuildDate>Wed, 27 Jan 2010 15:47:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to enable GeoIP Apache API (mod_geoip)</title>
		<link>http://www.thinksupport.net/blog/how-to-enable-geoip-apache-api-mod_geoip.html</link>
		<comments>http://www.thinksupport.net/blog/how-to-enable-geoip-apache-api-mod_geoip.html#comments</comments>
		<pubDate>Wed, 27 Jan 2010 15:47:35 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=309</guid>
		<description><![CDATA[cd /usr/src
wget http://geolite.maxmind.com/download/geoip/api/c/GeoIP-1.4.6.tar.gz
tar -xvzf GeoIP*
cd GeoIP*
./configure
make
make install
cd /usr/src
wget http://geolite.maxmind.com/download/geoip/api/mod_geoip2/mod_geoip2_1.2.5.tar.gz
tar -xvzf mod_geoip*
cd mod_geoip*
/usr/local/apache/bin/apxs -i -a -L/usr/src/GeoIP-1.4.6/libGeoIP -I/usr/src/GeoIP-1.4.6/lib/GeoIP -lGeoIP -c mod_geoip.c
Please note, you need to enable mod_geoip inside your httpd.conf with the following lines:
GeoIPEnable On
GeoIPDBFile /usr/local/share/GeoIP/GeoIP.dat
]]></description>
			<content:encoded><![CDATA[<p>cd /usr/src<br />
wget http://geolite.maxmind.com/download/geoip/api/c/GeoIP-1.4.6.tar.gz<br />
tar -xvzf GeoIP*<br />
cd GeoIP*<br />
./configure<br />
make<br />
make install</p>
<p>cd /usr/src<br />
wget http://geolite.maxmind.com/download/geoip/api/mod_geoip2/mod_geoip2_1.2.5.tar.gz<br />
tar -xvzf mod_geoip*<br />
cd mod_geoip*<br />
/usr/local/apache/bin/apxs -i -a -L/usr/src/GeoIP-1.4.6/libGeoIP -I/usr/src/GeoIP-1.4.6/lib/GeoIP -lGeoIP -c mod_geoip.c</p>
<p>Please note, you need to enable mod_geoip inside your httpd.conf with the following lines:</p>
<p>GeoIPEnable On<br />
GeoIPDBFile /usr/local/share/GeoIP/GeoIP.dat</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/how-to-enable-geoip-apache-api-mod_geoip.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/usr/local/apache/bin/httpd: error while loading shared libraries: libiconv.so.2: cannot open shared object file: No such file or directory</title>
		<link>http://www.thinksupport.net/blog/usrlocalapachebinhttpd-error-while-loading-shared-libraries-libiconv-so-2-cannot-open-shared-object-file-no-such-file-or-directory.html</link>
		<comments>http://www.thinksupport.net/blog/usrlocalapachebinhttpd-error-while-loading-shared-libraries-libiconv-so-2-cannot-open-shared-object-file-no-such-file-or-directory.html#comments</comments>
		<pubDate>Sat, 19 Dec 2009 12:24:54 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=306</guid>
		<description><![CDATA[If you see following error during easyapache -

/usr/local/apache/bin/httpd: error while loading shared libraries: libiconv.so.2: cannot open shared object file: No such file or directory
Solution :
ln -s /usr/local/lib/libiconv.so.2 /usr/lib/libiconv.so.2
If this didn&#8217;t work then add following line in /etc/ld.so.conf file
/usr/local/lib/
and execute command
ldconfig
Now run easyapache.
]]></description>
			<content:encoded><![CDATA[<p>If you see following error during easyapache -<strong><br />
</strong></p>
<p><strong>/usr/local/apache/bin/httpd: error while loading shared libraries: libiconv.so.2: cannot open shared object file: No such file or directory</strong></p>
<p>Solution :</p>
<p><strong>ln -s /<span>usr/local/lib/libiconv.so.2 </span><span>/usr/lib/libiconv.so.2</span></strong></p>
<p><span>If this didn&#8217;t work then add following line in </span>/etc/ld.so.conf file</p>
<p><strong>/usr/local/lib/</strong></p>
<p>and execute command</p>
<p><strong>ldconfig</strong></p>
<p>Now run easyapache.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/usrlocalapachebinhttpd-error-while-loading-shared-libraries-libiconv-so-2-cannot-open-shared-object-file-no-such-file-or-directory.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I safely remove the /home/virtfs directory?</title>
		<link>http://www.thinksupport.net/blog/how-do-i-safely-remove-the-homevirtfs-directory.html</link>
		<comments>http://www.thinksupport.net/blog/how-do-i-safely-remove-the-homevirtfs-directory.html#comments</comments>
		<pubDate>Wed, 18 Nov 2009 17:26:27 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[VPS]]></category>
		<category><![CDATA[Virtuozzo]]></category>
		<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=303</guid>
		<description><![CDATA[The virtfs directory contains hard links to all the system binaries to help with security via jailshelled accounts.
If you remove the virtfs system without unmounting the directories under it, you will completely break the system.
The procedure you need to do is the following:
cd /home/virtfs
find . -regex &#8216;^.*[How do I safely remove the virtfs directory?^.]&#8216; -type [...]]]></description>
			<content:encoded><![CDATA[<p>The virtfs directory contains hard links to all the system binaries to help with security via jailshelled accounts.</p>
<p>If you remove the virtfs system without unmounting the directories under it, you will completely break the system.</p>
<p>The procedure you need to do is the following:</p>
<p><strong>cd /home/virtfs<br />
find . -regex &#8216;^.*[How do I safely remove the virtfs directory?^.]&#8216; -type d &gt; t1<br />
for i in $(cat t1); do umount $i; done</strong></p>
<p>After this is ran, you can safely recursively remove the /home/virtfs directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/how-do-i-safely-remove-the-homevirtfs-directory.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cannot change ownership to uid 501, gid 501: Disk quota exceeded</title>
		<link>http://www.thinksupport.net/blog/cannot-change-ownership-to-uid-501-gid-501-disk-quota-exceeded.html</link>
		<comments>http://www.thinksupport.net/blog/cannot-change-ownership-to-uid-501-gid-501-disk-quota-exceeded.html#comments</comments>
		<pubDate>Thu, 05 Nov 2009 12:56:40 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/cannot-change-ownership-to-uid-501-gid-501-disk-quota-exceeded.html</guid>
		<description><![CDATA[If you see following error while updating Perl modules -
Cannot change ownership to uid 501, gid 501: Disk quota exceeded
Then go to WHM -&#62; Basic cPanel/WHM Setup and change the Minimum UID to something like 30000
]]></description>
			<content:encoded><![CDATA[<p>If you see following error while updating Perl modules -</p>
<p><strong>Cannot change ownership to uid 501, gid 501: Disk quota exceeded</strong></p>
<p>Then go to WHM -&gt; Basic cPanel/WHM Setup and change the Minimum UID to something like 30000</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/cannot-change-ownership-to-uid-501-gid-501-disk-quota-exceeded.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warning: in_array() [function.in-array]: Wrong datatype for second argument &#8211; Fantastico</title>
		<link>http://www.thinksupport.net/blog/warning-in_array-function-in-array-wrong-datatype-for-second-argument-fantastico.html</link>
		<comments>http://www.thinksupport.net/blog/warning-in_array-function-in-array-wrong-datatype-for-second-argument-fantastico.html#comments</comments>
		<pubDate>Fri, 09 Oct 2009 17:26:47 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=297</guid>
		<description><![CDATA[In users cPanel after clicking the Fantastico icon. Left column is filled with:
Warning: in_array() [function.in-array]: Wrong datatype for second argument in /tmp/cpanel_phpengine.1230646571.28207lX8XQnNUIp on line 1225
Solution :

1) Go into WHM as root, click on Tweak Settings, scroll down to the PHP section and make sure the IONCUBE PHP Loader is selected. Save changes if needed. Also [...]]]></description>
			<content:encoded><![CDATA[<p>In users cPanel after clicking the Fantastico icon. Left column is filled with:</p>
<p><strong>Warning: in_array() [function.in-array]: Wrong datatype for second argument in /tmp/cpanel_phpengine.1230646571.28207lX8XQnNUIp on line 1225</strong></p>
<p><strong>Solution :<br />
</strong><br />
1) Go into WHM as root, click on Tweak Settings, scroll down to the PHP section and make sure the IONCUBE PHP Loader is selected. Save changes if needed. Also make sure ioncube loader is installed on server.</p>
<p>2) Log into your server as root via SSH and execute the following command:<br />
<strong>/scripts/makecpphp</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/warning-in_array-function-in-array-wrong-datatype-for-second-argument-fantastico.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No Input File Specified &#8211; With new Fantastico</title>
		<link>http://www.thinksupport.net/blog/no-input-file-specified-with-new-fantastico.html</link>
		<comments>http://www.thinksupport.net/blog/no-input-file-specified-with-new-fantastico.html#comments</comments>
		<pubDate>Sat, 12 Sep 2009 14:51:16 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/no-input-file-specified-with-new-fantastico.html</guid>
		<description><![CDATA[After installing Fantastico if you see this error on every Fantastico page:
No Input File Specified
Create the following directories if they do not exist:
Code:
mkdir /usr/local/cpanel/base/tmp
mkdir /usr/local/cpanel/3rdparty/tmp
Then chmod each one of them to 777:
Code:
chmod -R 1777 /usr/local/cpanel/base/tmp
chmod -R 1777 /usr/local/cpanel/3rdparty/tmp
chmod -R 1777 /tmp
If it doeesn&#8217;t fix then run the following script
/scripts/makecpphp
Above script will make new cpanel php.ini [...]]]></description>
			<content:encoded><![CDATA[<p>After installing Fantastico if you see this error on every Fantastico page:</p>
<p><span style="color: #ff0000;"><strong>No Input File Specified</strong></span></p>
<p>Create the following directories if they do not exist:</p>
<p>Code:</p>
<p><strong>mkdir /usr/local/cpanel/base/tmp</strong><br />
<strong>mkdir /usr/local/cpanel/3rdparty/tmp</strong></p>
<p>Then chmod each one of them to 777:</p>
<p>Code:</p>
<p><strong>chmod -R 1777 /usr/local/cpanel/base/tmp</strong><br />
<strong>chmod -R 1777 /usr/local/cpanel/3rdparty/tmp</strong></p>
<p><strong>chmod -R 1777 /tmp</strong></p>
<p>If it doeesn&#8217;t fix then run the following script</p>
<p><strong>/scripts/makecpphp</strong></p>
<p>Above script will make new cpanel php.ini file, please note that this is not related to apache,  php.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/no-input-file-specified-with-new-fantastico.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 virtual host [...]]]></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>
		<item>
		<title>Plesk &#8211; Error Message When Logging In</title>
		<link>http://www.thinksupport.net/blog/plesk-error-message-when-logging-in.html</link>
		<comments>http://www.thinksupport.net/blog/plesk-error-message-when-logging-in.html#comments</comments>
		<pubDate>Wed, 26 Aug 2009 17:00:29 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=288</guid>
		<description><![CDATA[Product versions this article applies to:
* Plesk 7.6 for Windows
SYMPTOMS:
When you attempt to log in to Plesk Panel you get a message:
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-
The file filename.php is part of Plesk distribution. It cannot be run outside of Plesk environment.
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-
CAUSE:
A *.php file can not be decrypted by Plesk engine. A *.php file can not be decrypted if:
1. Plesk [...]]]></description>
			<content:encoded><![CDATA[<p>Product versions this article applies to:</p>
<p>* Plesk 7.6 for Windows</p>
<p>SYMPTOMS:</p>
<p>When you attempt to log in to Plesk Panel you get a message:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>The file filename.php is part of Plesk distribution. It cannot be run outside of Plesk environment.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
CAUSE:</p>
<p>A *.php file can not be decrypted by Plesk engine. A *.php file can not be decrypted if:</p>
<p>1. Plesk key installed is not valid. It means that you could install key for Plesk for Linux not for Windows or something else.<br />
2. Plesk php environment is corrupt.</p>
<p>RESOLUTION:</p>
<p>To fix the first case you need to do the following:</p>
<p>1. Close your browser. Or just make sure that your browser does not show cached web pages.</p>
<p>2. Stop Plesk Control Panel Service.</p>
<p>3. Remove all files from within %plesk_dir%PrivateTemp</p>
<p>4. Reset current Plesk to default PLSK.00000000.0000. You can do it using defpkey.reg attached to this article.</p>
<p>5. Start Plesk Control Panel Service.</p>
<p>6. Re-upload valid Plesk key straight via Plesk Panel. You can upload PLSK.XXXXXXXX.XXXX.exe key.</p>
<p>To fix the second case you need to do the following:</p>
<p>Switch Plesk web server to another.</p>
<p>If IIS is used as Plesk web server switch it to Apache:</p>
<p>%plesk_bin%\reconfigurator.exe &#8211;switch-plesk-web-server &#8211;new-provider=apache</p>
<p>If Apache is used as Plesk web server switch it to IIS:</p>
<p>%plesk_bin%\reconfigurator.exe &#8211;switch-plesk-web-server &#8211;new-provider=iis</p>
<p>Check how you Panel works. If it shows the same message it means that PHP files were changed. In this case you need to ran Plesk Repair.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/plesk-error-message-when-logging-in.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk &#8211; Access Denied To cmd.exe</title>
		<link>http://www.thinksupport.net/blog/plesk-access-denied-to-cmd-exe.html</link>
		<comments>http://www.thinksupport.net/blog/plesk-access-denied-to-cmd-exe.html#comments</comments>
		<pubDate>Wed, 26 Aug 2009 16:57:26 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=286</guid>
		<description><![CDATA[When logging into Plesk you receive the following errror:
DefPackageMng() constructor failed: defpackagemng failed: Access is denied. (Error code 5) at CreateProcess &#8216;C:\WINDOWS\system32\cmd.exe /c &#8220;&#8221;C:\Program Files\SWsoft\Plesk\admin\bin\defpackagemng.exe&#8221; &#8211;get&#8221;&#8216;
at execUtil C:\Program Files\SWsoft\Plesk\admin\bin\defpackagemng.exe &#8211;get on C:\Program Files\SWsoft\Plesk\admin(PleskSrvClient::execUtil line 420)
at execute console command &#8211;get(vconsoleapp::start line 128)
at execute &#8220;C:\Program Files\SWsoft\Plesk\/admin/bin/defpackagemng&#8221; &#8211;get(vconsoleapp::run line 138)
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- Debug Info &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-
0: C:\Program Files\SWsoft\Plesk\admin\plib\class.DefPackageMng.php:14 psaerror(string &#8220;DefPackageMng() constructor [...]]]></description>
			<content:encoded><![CDATA[<p>When logging into Plesk you receive the following errror:</p>
<p>DefPackageMng() constructor failed: defpackagemng failed: Access is denied. (Error code 5) at CreateProcess &#8216;C:\WINDOWS\system32\cmd.exe /c &#8220;&#8221;C:\Program Files\SWsoft\Plesk\admin\bin\defpackagemng.exe&#8221; &#8211;get&#8221;&#8216;<br />
at execUtil C:\Program Files\SWsoft\Plesk\admin\bin\defpackagemng.exe &#8211;get on C:\Program Files\SWsoft\Plesk\admin(PleskSrvClient::execUtil line 420)<br />
at execute console command &#8211;get(vconsoleapp::start line 128)<br />
at execute &#8220;C:\Program Files\SWsoft\Plesk\/admin/bin/defpackagemng&#8221; &#8211;get(vconsoleapp::run line 138)<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.DefPackageMng.php:14 psaerror(string &#8220;DefPackageMng() constructor failed: defpackagemng failed: Access is denied. (Error code 5) at CreateProcess &#8216;C:\WINDOWS\system32\cmd.exe /c &#8220;&#8221;C:\Program Files\SWsoft\Plesk\admin\bin\defpackagemng.exe&#8221; &#8211;get&#8221;&#8216;<br />
at execUtil C:\Program Files\SWsoft\Plesk\admin\bin\defpackagemng.exe &#8211;get on C:\Program Files\SWsoft\Plesk\admin(PleskSrvClient::execUtil line 420)<br />
at execute console command &#8211;get(vconsoleapp::start line 128)<br />
at execute &#8220;C:\Program Files\SWsoft\Plesk\/admin/bin/defpackagemng&#8221; &#8211;get(vconsoleapp::run line 138)&#8221;)<br />
1: C:\Program Files\SWsoft\Plesk\admin\plib\class.Components.php:171 defpackagemngmaker()<br />
2: C:\Program Files\SWsoft\Plesk\admin\plib\class.Components.php:97 components-&gt;getcomponetslist(boolean true)<br />
3: C:\Program Files\SWsoft\Plesk\admin\htdocs\login_up.php3:610 components-&gt;componentupdate()</p>
<p>It appears the reason of the problem was in denied rights to C:WINDOWSsystem32cmd.exe file to SYSTEM account. You can give it FULL CONTROLL to SYSTEM account to that file and after that was able to log into Plesk.</p>
<p>Go into the permissions screen for this file and select &#8216;Full Access&#8217; for the &#8216;System&#8217; User. Once this is done, plesk should work correctly.</p>
<p>But the situation is not clear. We don&#8217;t know was it done manually or viruses did that. Windows Update could have also caused the above issue as well. You can test your system for viruses using the following utility:</p>
<p>http://download.drweb.com/drweb+cureit/</p>
<p>The above could have possibly been caused by the following virsues:</p>
<p>BackDoor.SHELLBOT<br />
Backdoor.HacDef.100<br />
Backdoor.WinShell.50<br />
Trojan.Aphex.71</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/plesk-access-denied-to-cmd-exe.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk Windows &#8211; Reseting the MySql Password</title>
		<link>http://www.thinksupport.net/blog/plesk-windows-reseting-the-mysql-password.html</link>
		<comments>http://www.thinksupport.net/blog/plesk-windows-reseting-the-mysql-password.html#comments</comments>
		<pubDate>Wed, 26 Aug 2009 16:52:29 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.thinksupport.net/blog/?p=283</guid>
		<description><![CDATA[Once you have logged into the server you via Remote Desktop you will need to take the following steps:
1. Go to &#8216;Start &#62;&#62; Run&#8217; and type in &#8217;services.msc&#8217;.
2. Now you will need to look for &#8216;MySql Server&#8217; In the Services window.
3. Right click on &#8216;MySql Server&#8217; and go to &#8216;Properties&#8217;.
4. Once you have copied the [...]]]></description>
			<content:encoded><![CDATA[<p>Once you have logged into the server you via Remote Desktop you will need to take the following steps:</p>
<p>1. Go to &#8216;Start &gt;&gt; Run&#8217; and type in &#8217;services.msc&#8217;.</p>
<p>2. Now you will need to look for &#8216;MySql Server&#8217; In the Services window.</p>
<p>3. Right click on &#8216;MySql Server&#8217; and go to &#8216;Properties&#8217;.</p>
<p>4. Once you have copied the location of the &#8216;my.ini&#8217; file like the following example you will need to go to &#8216;Start &gt;&gt; Run&#8217; and then enter in the location of the &#8216;my.ini&#8217; file.</p>
<p>C:\Program Files\SWsoft\Plesk\Databases\MySQL\Data\my.ini</p>
<p>5. Under the &#8216;[mysqld]&#8216; section in the &#8216;my.ini&#8217; file you will need to add the following line:</p>
<p>skip-grant-tables</p>
<p>6. Restart &#8216;MySql Server&#8217;.</p>
<p>7. Then you will need to login to MySql:</p>
<p>cd C:\Program Files\SWsoft\Plesk\MySQL\bin</p>
<p>C:\Program Files\SWsoft\Plesk\MySQL\bin&gt;mysql -u admin<br />
Welcome to the MySQL monitor. Commands end with ; or \g.<br />
Your MySQL connection id is 7 to server version: 4.1.18-nt</p>
<p>Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the buffer.</p>
<p>mysql&gt; use mysql;<br />
mysql&gt; UPDATE mysql.user SET Password=PASSWORD(&#8217;newpwd&#8217;) WHERE User=&#8217;root&#8217;;<br />
mysql&gt; FLUSH PRIVILEGES;<br />
mysql&gt; quit;</p>
<p>8. Then you will need to remove &#8217;skip-grant-tables&#8217; from the my.ini file and restart &#8216;MySql&#8217; after resaving the my.ini file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/plesk-windows-reseting-the-mysql-password.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
