<?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>Web Development in PHP, CakePHP, Wordpress : Linux Web Hosting : Domain Registration</title>
	<atom:link href="http://nirvaat.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nirvaat.com</link>
	<description></description>
	<lastBuildDate>Wed, 09 Jan 2013 06:50:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
		<item>
		<title>Uploading files to FTP server from PHP Script</title>
		<link>http://nirvaat.com/blog/web-development/uploading-files-ftp-server-php-script/</link>
		<comments>http://nirvaat.com/blog/web-development/uploading-files-ftp-server-php-script/#comments</comments>
		<pubDate>Wed, 09 Jan 2013 06:47:47 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Quick Fixes]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=522</guid>
		<description><![CDATA[For one of my project I was required to upload files on an FTP server from the PHP script. Searching on Google I found code required but it was not completely available at one place. So I thought to share this here for use by others as tried and tested code, working on a live [...]]]></description>
				<content:encoded><![CDATA[<p>For one of my project I was required to upload files on an FTP server from the PHP script. Searching on Google I found code required but it was not completely available at one place. So I thought to share this here for use by others as tried and tested code, working on a live website.</p>
<p>This script was created for moving the just uploaded file to FTP server. That is why it uses $_FILES["tmp_name"] as local file. You can change to your file location, if it is already uploaded.</p>
<p>&nbsp;</p>
<p>Please replace the variables in first four lines according to the settings you have for your target FTP server.</p>
<p><code><br />
$ftp_server = "ftp.yourserver.com";<br />
$ftp_user_name = "ftpuser";<br />
$ftp_user_pass = "ftppassword";<br />
$remote_dir = "/target/folder/on/ftp/server";</code></p>
<p><code>// set up basic connection<br />
$conn_id = ftp_connect($ftp_server);<br />
</code><br />
<code>// login with username and password<br />
$login_result = @ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);</code></p>
<p><code>//default values<br />
$file_url = "";<br />
</code><br />
<code>if($login_result) {<br />
//set passive mode enabled<br />
ftp_pasv($conn_id, true);<br />
</code><br />
<code>//check if directory exists and if not then create it<br />
if(!@ftp_chdir($conn_id, $remote_dir)) {<br />
//create diectory<br />
ftp_mkdir($conn_id, $remote_dir);<br />
//change directory<br />
ftp_chdir($conn_id, $remote_dir);<br />
}<br />
</code><br />
<code>$file = $_FILES["file"]["tmp_name"];<br />
$remote_file = $_FILES["file"]["name"];</code></p>
<p><code>$ret = ftp_nb_put($conn_id, $remote_file, $file, FTP_BINARY, FTP_AUTORESUME);<br />
while(FTP_MOREDATA == $ret) {<br />
$ret = ftp_nb_continue($conn_id);<br />
}<br />
</code><br />
<code>if($ret == FTP_FINISHED) {<br />
echo "File '" . $remote_file . "' uploaded successfully.";<br />
} else {<br />
echo "Failed uploading file '" . $remote_file . "'.";<br />
}<br />
} else {<br />
echo "Cannot connect to FTP server at " . $ftp_server;<br />
}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://nirvaat.com/blog/web-development/uploading-files-ftp-server-php-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Type in your language using Microsoft Indic Language Input tool</title>
		<link>http://nirvaat.com/blog/technology-news/type-in-your-language-microsoft-indic-language-input-tool/</link>
		<comments>http://nirvaat.com/blog/technology-news/type-in-your-language-microsoft-indic-language-input-tool/#comments</comments>
		<pubDate>Mon, 17 Dec 2012 05:53:59 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Technology News]]></category>
		<category><![CDATA[Type in Hindi]]></category>
		<category><![CDATA[Type in Tamil]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=516</guid>
		<description><![CDATA[Though most of my work involves use of English as primary language, my mother tongue is Hindi. So when I want to write blog posts or some other personal communication with my closed friends, sometimes I feel the need to be able to type in Hindi. Earlier I was using Google Transliterate tool, but that [...]]]></description>
				<content:encoded><![CDATA[<p>Though most of my work involves use of English as primary language, my mother tongue is Hindi. So when I want to write blog posts or some other personal communication with my closed friends, sometimes I feel the need to be able to type in Hindi. Earlier I was using Google Transliterate tool, but that required 2-3 steps for this. First I need to open the web app of Google then type there and then copy and paste it in required location. This also caused some font issues in my office tool LibreOffice.</p>
<p>So I started looking for some onscreen keyboard using which I can directly type in Hindi. While Googling about this, I stumbled upon this tool from Microsoft itself which directly enables me to input text in Hindi using the transliteration. Meaning I need to type in English the word as it is pronounced in Hindi and the tool automatically converts that to Hindi font. And using this I can type in Hindi at any place in Windows Operating system. That was exactly what I needed, and I was surprised how I did not know about this. I never heard or read about this though I have subscribed for almost all technology blogs and news sites.</p>
<p>Anyway &#8211; I thought it may be of help to someone reached here &#8211; you can download the tool for your language here - <a title="Microsoft Indic Language Input Tool" href="http://www.bhashaindia.com/ilit/Hindi.aspx" target="_blank">http://www.bhashaindia.com/ilit/Hindi.aspx</a>. The link is for Hindi language tool but you can find on the same page input tool for other languages like &#8211; Bengali, Gujrati, Kannada, Malyalam, Marathi, Oriya, Punjabi, Tamil and Telugu.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirvaat.com/blog/technology-news/type-in-your-language-microsoft-indic-language-input-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix Error 0&#215;80070424 on windows</title>
		<link>http://nirvaat.com/blog/quick-fixes/fix-error-0x80070424-on-windows/</link>
		<comments>http://nirvaat.com/blog/quick-fixes/fix-error-0x80070424-on-windows/#comments</comments>
		<pubDate>Thu, 06 Sep 2012 05:50:15 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Quick Fixes]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=426</guid>
		<description><![CDATA[Recently while visiting a website I got infected by Live Security Platinum malware which disabled all security services on my PC. I was able to remove this using the free Malware Bytes Anti spyware tool. But the Windows firewall and McAfee firewall were unable to run due to some bugs made in the windows. As [...]]]></description>
				<content:encoded><![CDATA[<p>Recently while visiting a website I got infected by Live Security Platinum malware which disabled all security services on my PC. I was able to remove this using the free Malware Bytes Anti spyware tool. But the Windows firewall and McAfee firewall were unable to run due to some bugs made in the windows. As usual I started looking on Google for the solutions posted by others for similar problem. I found many proposed solutions mentioning issue in McAfee and re-installing it after clean removal. But none of them look promising to me.</p>
<p>Then today I landed on <a title="Microsoft Fix IT Solution Center" href="http://support.microsoft.com/fixit/" target="_blank">Microsoft Fix It Solution center</a>. I came to know that Microsoft has already provided lots of automated tools to check and fix common problems in various windows version. When searched for my problem I landed on this page:</p>
<p><a href="http://support.microsoft.com/kb/968002">http://support.microsoft.com/kb/968002</a></p>
<p>You need to download small software pieces and execute them to check and fix your PC. And I am very thankful to them that this solved my problem. Hope this helps you too.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirvaat.com/blog/quick-fixes/fix-error-0x80070424-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring Horde Vacation Responder in Plesk 9</title>
		<link>http://nirvaat.com/blog/quick-fixes/configuring-horde-vacation-responder-in-plesk-9/</link>
		<comments>http://nirvaat.com/blog/quick-fixes/configuring-horde-vacation-responder-in-plesk-9/#comments</comments>
		<pubDate>Mon, 13 Aug 2012 18:11:35 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Linux Admin]]></category>
		<category><![CDATA[Quick Fixes]]></category>
		<category><![CDATA[Horder]]></category>
		<category><![CDATA[Plesk 9]]></category>
		<category><![CDATA[Vacation Responder]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=420</guid>
		<description><![CDATA[Today I had to work on the Plesk server webmail vacation responder settings, and looking at the Horde webmail option I found that this is not available in the default Horde Install in Plesk 9. Digging through many google search pages and search phrases I found a very useful and working link given below. Configuring [...]]]></description>
				<content:encoded><![CDATA[<p>Today I had to work on the Plesk server webmail vacation responder settings, and looking at the Horde webmail option I found that this is not available in the default Horde Install in Plesk 9. Digging through many google search pages and search phrases I found a very useful and working link given below.</p>
<p><a title="Configuring Vacation Responder on the Horde Webmail on Plesk 9" href="http://blog.xiol.co.uk/2012/04/13/installing-the-horde-vacation-plugin-on-plesk-9/">Configuring Vacation Responder on Horde Webmail on Plesk 9</a></p>
<p>Small change in the above guide is that on the Debian System you can install vacation application directly using the &#8220;apt-get&#8221;. Just execute the following command:</p>
<p>apt-get install vacation</p>
<p>After configuration when you open the vacation page on the webmail then most probably you were greeted by a warning message that the Plesk driver on Horde Vacation responder requires Horde_DOM installed. The repository address given in the warning message is no more working. It took me around an hour to find this file &#8220;DOM.php&#8221;, on some blog.</p>
<p><a title="Horde_DOM file" href="http://nirvaat.com/wp-content/uploads/2012/08/Horde_DOM-0.1.0.zip">You can download it from here.</a></p>
<p>Unzip the archive and put this file DOM.php at location - <tt>/usr/share/psa-horde/lib/Horde/</tt> .</p>
<p>If everything works well then now you can set the Vacation responder from the Webmail interface of the Horde Webmail.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://nirvaat.com/blog/quick-fixes/configuring-horde-vacation-responder-in-plesk-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress update issue on Plesk Control Panel hosting</title>
		<link>http://nirvaat.com/blog/quick-fixes/wordpress-update-issue-on-plesk-control-panel-hosting/</link>
		<comments>http://nirvaat.com/blog/quick-fixes/wordpress-update-issue-on-plesk-control-panel-hosting/#comments</comments>
		<pubDate>Wed, 08 Aug 2012 10:04:40 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux Admin]]></category>
		<category><![CDATA[Quick Fixes]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=415</guid>
		<description><![CDATA[Most of us work with WordPress and while working we use the handy auto update feature in the admin panel to update the WordPress plug-ins and core. On Plesk control panel, sometimes it asks for FTP access details to write the files on the server. This could be quite irritating to input the same FTP [...]]]></description>
				<content:encoded><![CDATA[<p>Most of us work with WordPress and while working we use the handy auto update feature in the admin panel to update the WordPress plug-ins and core. On Plesk control panel, sometimes it asks for FTP access details to write the files on the server. This could be quite irritating to input the same FTP details again and again.</p>
<p>One reason that I found causing this permission issue is &#8211; PHP running as Apache module. When new Plesk Account is created, PHP can be configured to run as Apache Module or FastCGI. The default is set to Apache Module and most of the time we do not need to change this. <strong>But if you are using WordPress on the Plesk control panel then remember to use PHP as FastCGI module to avoid above permissions issue</strong>. Now WordPress does not ask you FTP access details every time you want to update the WordPress from Admin panel.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirvaat.com/blog/quick-fixes/wordpress-update-issue-on-plesk-control-panel-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile device emulators to test web page display</title>
		<link>http://nirvaat.com/blog/web-development/mobile-device-emulators-to-test-web-page-display/</link>
		<comments>http://nirvaat.com/blog/web-development/mobile-device-emulators-to-test-web-page-display/#comments</comments>
		<pubDate>Tue, 03 Jul 2012 09:24:02 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Free Productivity Tools]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Mobile Simulators]]></category>
		<category><![CDATA[Opera Mini Simulator]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=406</guid>
		<description><![CDATA[Today, the usage of mobile is increasing day by day and most of the users are preferring mobile device over desktop. Therefore it is almost necessary to check how a web page looks on a mobile device and make adjustments using the mobile specific CSS. But it is not every time possible to have all different [...]]]></description>
				<content:encoded><![CDATA[<p>Today, the usage of mobile is increasing day by day and most of the users are preferring mobile device over desktop. Therefore it is almost necessary to check how a web page looks on a mobile device and make adjustments using the mobile specific CSS. But it is not every time possible to have all different mobile devices handy to test. Here comes the mobile device emulators for help.</p>
<p>You can use following FREE web tools to test your web page, without installing any software on your PC. Hence these will work on Windows, MAC or Linux.</p>
<p>1. <a title="Mobile Phone Emulator" href="http://www.mobilephoneemulator.com/" target="_blank">MobilePhoneEmulator</a> - Here you can select your device and different parameters, including the screen orientation.</p>
<p>2. <a title="Opera Mini Simulator" href="http://www.opera.com/developer/tools/mini/" target="_blank">Opera Mini Simulator</a> - As one of the most favored browser for mobile devices, it is very much possible that most of your users are visiting your website using this fast browser. So it is very useful to check your web page to work correctly in this browser.</p>
<p>3. <a title="iPhone Tester" href="http://iphonetester.com/" target="_blank">iPhone Tester</a> - This is only for iPhone browser. Remember to run this page in a Safari browser so that the rendering is same as you see in iPhone.</p>
<p>4. <a title="Opera Mobile Emulator" href="http://www.opera.com/developer/tools/mobile/" target="_blank">Opera Mobile Emulator</a> - This is a downloadable desktop application, you can use to test your pages on Opera mobile. The download size for windows is approx 13MB.</p>
<p>Let me know in comments if you are using or know some other great tools for this purpose. Happy Coding!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://nirvaat.com/blog/web-development/mobile-device-emulators-to-test-web-page-display/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Drive, do you use it?</title>
		<link>http://nirvaat.com/blog/web-applications/google-drive-do-you-use-it/</link>
		<comments>http://nirvaat.com/blog/web-applications/google-drive-do-you-use-it/#comments</comments>
		<pubDate>Fri, 04 May 2012 18:01:45 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Google Docs]]></category>
		<category><![CDATA[Google Drive]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SkyDrive]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=402</guid>
		<description><![CDATA[After so many months of hype and secret leaks in the technology blogs and websites, Google Drive launched at last few days back. But does this service justified the anticipation it got? Well, NOT for me. After waiting for few days to get the Drive enabled in my Google Apps Account. Today I finally installed [...]]]></description>
				<content:encoded><![CDATA[<p>After so many months of hype and secret leaks in the technology blogs and websites, Google Drive launched at last few days back. But does this service justified the anticipation it got? Well, NOT for me.</p>
<p>After waiting for few days to get the Drive enabled in my Google Apps Account. Today I finally installed it on my windows 7 machine. But I was surprised to find that it just created local desktop shortcuts in the corresponding folders to files on the Google Documents account on web.  The downloaded application just created new file types like &#8220;.gsheet&#8221;, or &#8220;.gdoc&#8221; and when you click on files to open them, it opens the corresponding file in your default browser using the Google Docs service.</p>
<p>The Google Drive service is being touted as a document and files synchronizing service. But to me this is not what I expected it to do. Suppose my internet is down or Google docs service is down due to any reason then I can not access the file I need. So where is the sync.</p>
<p>Also I tried adding a local excel workbook file in the Google Drive folder. It is uploaded automatically to the Google Docs. Fine. But then I am not able to edit it, only preview is available on clicking the file name. For editing the file I need to convert this to Google Docs. And then again this would not be synced to my local desktop.</p>
<p>I am not going to use it in its current format. Unless they change it to actually sync the files and allow editing the local files on web.</p>
<p>On the other hand Microsoft Skydrive provides all the missing features described above with whopping 25GB free space for old users. The files are synced physically i.e. you can access them on the web and on your local desktop also. And MS office format files are editable on web using Office 365 free service.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirvaat.com/blog/web-applications/google-drive-do-you-use-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting Sony K750 with Windows 7</title>
		<link>http://nirvaat.com/blog/quick-fixes/connecting-sony-k750-with-windows-7/</link>
		<comments>http://nirvaat.com/blog/quick-fixes/connecting-sony-k750-with-windows-7/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 07:43:53 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Quick Fixes]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=398</guid>
		<description><![CDATA[I had a old Sony Ericsson phone working great for me since long. Recently I upgraded my PC with new Windows 7 professional. I usually does not need to connect my PC with phone as I use the phone primarily for calling and texting only. But recently I bought a new Android mobile and wanted [...]]]></description>
				<content:encoded><![CDATA[<p>I had a old Sony Ericsson phone working great for me since long. Recently I upgraded my PC with new Windows 7 professional. I usually does not need to connect my PC with phone as I use the phone primarily for calling and texting only. But recently I bought a new Android mobile and wanted to transfer my contacts in the old Sony K750i to the new phone. And to my surprise when I tried installing the Sony Ericsson PC suite, that refused to install on Windows7, as it works only on Windows XP.</p>
<p>Then the first thought came to my mind that I should get latest Sony PC Suite software, that should work with Windows 7. I downloaded the Sony Ericsson PC Suite 6.x from cnet.com and installed it successfully. After installation it automatically upgraded itself to Sony PC Companion.</p>
<p>Then came another surprise &#8211; when I tried to connect my phone using this software &#8211; it failed to recognize the phone. Does Sony stopped support to K750 phones? And what would I do with my working phone?</p>
<p>Now there are two choices for me either I should look for another windows XP system, install the PC suite there and get the data synchronized. OR get another third party tool which can help me connect my phone with my PC.</p>
<p>After Googling about this I found a nice piece of software named <a title="My Phone Explorer" href="http://www.fjsoft.at/en/" target="_blank">&#8220;MyPhoneExplorer&#8221;</a>. It is a small software of just 4.7 MB in size, installed like a breeze. Although it asks for some supported adware software installation, which you should take care to deselect when installing this. OR you can remove them separately after installation finishes; through Control panel &#8220;Programs and Features&#8221; section.</p>
<p>It connected to my phone quite easily and voila all data like &#8211; Phonebook (including SIM contacts and phone contacts in two separate lists), Messages, Calendar, Notes all synchronized in one go, in just few seconds.</p>
<p>I found this quite useful, if you know of any other better software then please do share in comments. So that anyone facing the issue like me get the benefit.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirvaat.com/blog/quick-fixes/connecting-sony-k750-with-windows-7/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>WordPress plugins to help Administrators</title>
		<link>http://nirvaat.com/blog/web-development/wordpress-plugins-to-help-administrators/</link>
		<comments>http://nirvaat.com/blog/web-development/wordpress-plugins-to-help-administrators/#comments</comments>
		<pubDate>Tue, 10 Apr 2012 05:08:52 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Admin Plugins]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=395</guid>
		<description><![CDATA[While browsing thorough my emails today morning. I found a link to wordpress plugins for blog administrators. This is a well categorized list and have plugins listed for User interface improvement, security, collaboration, editing support etc. Let me know if you like it or not. Or which plugins do you use on every wordpress site [...]]]></description>
				<content:encoded><![CDATA[<p>While browsing thorough my emails today morning. I found a link to <a title="Wordpress Plugins for Administrators" href="http://wp.smashingmagazine.com/2012/03/15/useful-free-admin-plugins-wordpress/" target="_blank">wordpress plugins for blog administrators</a>. This is a well categorized list and have plugins listed for User interface improvement, security, collaboration, editing support etc.</p>
<p>Let me know if you like it or not. Or which plugins do you use on every wordpress site created by you?</p>
]]></content:encoded>
			<wfw:commentRss>http://nirvaat.com/blog/web-development/wordpress-plugins-to-help-administrators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset password of Joomla 1.0.x Administrator</title>
		<link>http://nirvaat.com/blog/web-development/reset-password-of-joomla-1-0-x-administrator/</link>
		<comments>http://nirvaat.com/blog/web-development/reset-password-of-joomla-1-0-x-administrator/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 06:06:24 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Quick Fixes]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.nirvaat.com/?p=390</guid>
		<description><![CDATA[Recently I need to upgrade one Joomla 1.0.x installation to the new installation. If you are also dealing with Joomla 1.0 installation to upgrade or maintain and missed the password for admin user.  This can also be useful if you need to add new admin user, without disturbing the old user records. Then here are [...]]]></description>
				<content:encoded><![CDATA[<p>Recently I need to upgrade one Joomla 1.0.x installation to the new installation. If you are also dealing with Joomla 1.0 installation to upgrade or maintain and missed the password for admin user.  This can also be useful if you need to add new admin user, without disturbing the old user records. Then here are the simple steps to reset the same. It took me some time to find the correct hard way to do it.</p>
<p>To just reset the password and user name to admin, execute the following query in the phpMyAdmin or MySql command prompt:</p>
<p>UPDATE `jos_users` SET `password` = MD5( &#8216;&lt;<strong>new_password</strong>&gt;&#8217; ) WHERE `jos_users`.`username` = &#8220;<strong>admin</strong>&#8221; ;</p>
<p>Do remember to change the table prefix and username to whatever you have in your database. This is quiet easy. But if need to add a completely  new user to database without admin access then following steps will help you -</p>
<p><strong>1. First create a new user record in users table. You can use the insert method of the phpMyAdmin when jos_users table is open. Input following values:</strong></p>
<p>Name: admin<br />
Username: admin<br />
Email: your-email@email.com<br />
Password: af9083d4b82dbc0745b124db3b3cf15d:M0WuLowO4rtRTddG<br />
User Type: Super Administrator</p>
<p>Then click on Go. This will set the user name and password to &#8220;admin&#8221;.  Note the new Id assigned to the user, you will need that in next step.</p>
<p><strong>2. Now add a record in the ACL for new user, created above. Open the &#8220;jos_core_acl_aro&#8221; table and insert a new record:</strong></p>
<p>Section Value: users<br />
Value: &lt;Generated id of the new user in previous step&gt;<br />
Order Value: 0<br />
Name: admin</p>
<p>Click on Go button to save the data. Note the ID of new inserted record, this will be needed in next step.</p>
<p><strong>3. Map the new ACL record to group. Open &#8220;jos_core_acl_groups_aro_map&#8221; table and insert a new record:</strong></p>
<p>Group ID: 25<br />
ARO ID: &lt;New generated ID from previous step&gt;</p>
<p>Click on Go to save the record. That&#8217;s it.</p>
<p>Now you should be able to log-in to administration panel by entering <strong>User name: admin and Password: admin.</strong></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://nirvaat.com/blog/web-development/reset-password-of-joomla-1-0-x-administrator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching using disk
Object Caching 706/726 objects using disk

 Served from: nirvaat.com @ 2013-05-24 14:10:10 by W3 Total Cache -->