<?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>Raju Gautam</title>
	<atom:link href="http://www.devraju.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.devraju.com</link>
	<description>Zend Certified Engineer – PHP 5; Joomla, Web Service, Wordpress Developer</description>
	<lastBuildDate>Mon, 30 Apr 2012 08:02:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>phpmyadmin error Notice: Array to string conversion in libraries\Error.class.php</title>
		<link>http://www.devraju.com/programming/phpmyadmin-error-notice-array-to-string-conversion-in-librarieserror-class-php/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=phpmyadmin-error-notice-array-to-string-conversion-in-librarieserror-class-php</link>
		<comments>http://www.devraju.com/programming/phpmyadmin-error-notice-array-to-string-conversion-in-librarieserror-class-php/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 06:41:37 +0000</pubDate>
		<dc:creator>rajug</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.devraju.com/?p=349</guid>
		<description><![CDATA[phpmyadmin has an error and stops working when PHP version is upgraded to 5.4. Solution: 1. Either you upgraded the lastest phpmyadmin 3.4.10.x. 2. They provide the patch file. If you cannot find it then simply change the code in the given file as follows: Old: $this-&#62;getBacktrace() New: serialize($this-&#62;getBacktrace()) Hope this helps someone having the problem.]]></description>
			<content:encoded><![CDATA[<p>phpmyadmin has an error and stops working when PHP version is upgraded to 5.4.</p>
<h3><strong>Solution:</strong></h3>
<p>1. Either you upgraded the lastest phpmyadmin 3.4.10.x.<br />
2. They provide the patch file. If you cannot find it then simply change the code in the given file as follows:<br />
<strong>Old:</strong><br />
$this-&gt;getBacktrace()</p>
<p><strong>New:</strong><br />
serialize($this-&gt;getBacktrace())</p>
<p>Hope this helps someone having the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devraju.com/programming/phpmyadmin-error-notice-array-to-string-conversion-in-librarieserror-class-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing PHP 5.4 with Apache 2.4 in 32 bit of Windows !</title>
		<link>http://www.devraju.com/php/installing-php-5-4-with-apache-2-4-in-32-bit-of-windows/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installing-php-5-4-with-apache-2-4-in-32-bit-of-windows</link>
		<comments>http://www.devraju.com/php/installing-php-5-4-with-apache-2-4-in-32-bit-of-windows/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 11:28:57 +0000</pubDate>
		<dc:creator>rajug</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.devraju.com/?p=336</guid>
		<description><![CDATA[Installing AMP (Apache, MySQL and PHP) have become quite easier with single wizard based installations available as a packet these days. Like using XAMPP, WAMP you can just install them and use. But with these setups, you will have (or will not have) less knowledge about configuring them each in your own way because they will present some user interface where you can directly do configurations by one click. You will not know what exactly required for changing something in[...]]]></description>
			<content:encoded><![CDATA[<p>Installing <strong>AMP</strong> (Apache, MySQL and PHP) have become quite easier with single wizard based installations available as a packet these days. Like using XAMPP, WAMP you can just install them and use. But with these setups, you will have (or will not have) less knowledge about configuring them each in your own way because they will present some user interface where you can directly do configurations by one click. You will not know what exactly required for changing something in Apache, PHP or MySQL. So to have knowledge on configurations on them according to your requirement, you have to install each applications individually. I always recommend to do that and configure them for your purpose.</p>
<p>The installation and configurations of PHP, Apache and MySQL in Windows has also become quite easier these days because they provide some default configurations. As PHP, after its latest releases i.e.5.4, does not provide the downloads of VC6 version (the PHP compiled with Visual C++ 2006 compiler) these days because it is believed that the performance of the PHP compiled with VC9 (compiled with Visual C++ 2008 or later) has improved quite a lot than the compiled with VC6. So to work with the latest VC9 version of PHP, you must have installed PHP with VC9 compiled Apache as well or you use IIS as web server. VC9 compiled Apache is provided by Apache Lounge (apachelounge.com) not the original Apache (apache.org). Since I haven&#8217;t worked yet with IIS and always work with Apache in anyway, I don&#8217;t have knowledge about the IIS &amp; PHP. Here I am going to explain few steps on how to install PHP 5.4 and Apache 2.4 in Windows.</p>
<h3><strong>Requirement</strong></h3>
<p>To run the applications compiled with VC8 or VC10, it is required to install the respective (or latest one is always better) Visual C++ redistributable packages. You can download the package from Microsoft&#8217;s official site for free.</p>
<ul>
<li>To download Visual C++ 2008 &#8211; <a href="http://www.microsoft.com/download/en/details.aspx?id=5582">http://www.microsoft.com/download/en/details.aspx?id=5582</a></li>
<li>To download Visual C++ 2010 &#8211; <a href="http://www.microsoft.com/download/en/details.aspx?id=8328">http://www.microsoft.com/download/en/details.aspx?id=8328</a></li>
</ul>
<p><strong>Note:</strong> If you have any Visual Studio installed in your PC then you don&#8217;t have to install them separately.</p>
<h3><strong>Where to install?</strong></h3>
<p>Since I have not used any installers for both PHP and Apache, I will be downloading the pre compiled zipped packages and install them in my <strong>D drive</strong>. The folder structure will look like below:</p>
<ul>
<li>d:/etc/apache                                   &#8211; Apache installation</li>
<li>d:/etc/php                                          &#8211; PHP installation</li>
<li>d:/etc/mysql                                      &#8211; MySQL installation</li>
<li>d:/etc/mysql/databases               &#8211; MySQL data folder</li>
<li>d:/etc/www                                       &#8211; document root folder</li>
</ul>
<p><strong>Note:</strong> You can change the drive and path for the installations in your own way.</p>
<h3><strong>Download</strong></h3>
<ol>
<li>Download the latest Apache 2.4.1 (as of writing this) from <a href="http://www.apachelounge.com/download/">http://www.apachelounge.com/download/</a> (direct link for the current version &#8211; <a href="http://www.apachelounge.com/download/win32/bins/httpd-2.4.1-win32.zip">http://www.apachelounge.com/download/win32/bins/httpd-2.4.1-win32.zip</a>) and unzip it in d:/etc/apache</li>
<li>Download latest version 5.4 from <a href="http://windows.php.net/download">http://windows.php.net/download</a> and unzip it in d:/etc/php. While downloading PHP, choose the Thread Safe version for windows.</li>
<li>Download the PHP and Apache connector DLL file from <a href="http://www.apachelounge.com/download/">http://www.apachelounge.com/download/</a> (direct link: <a href="http://www.apachelounge.com/download/win32/mods-2.4/php5apache2_4.dll-php-5.4-win32.zip">http://www.apachelounge.com/download/win32/mods-2.4/php5apache2_4.dll-php-5.4-win32.zip</a>) and extract the file php5apache2_4.dll and copy it to d:/etc/php.</li>
</ol>
<h3><strong>Configurations</strong></h3>
<p>Though the configurations may vary from individual&#8217;s requirement but here I will be discussing for some basic configurations in PHP and Apache.</p>
<h4><strong>Apache</strong></h4>
<ol>
<li>Open the file d:/etc/apache/conf/httpd.conf in any text editor (I use my lovely Notepad++) then find and make the following changes/configurations as per your installation path.</li>
<li>Set the server root
<pre class="xml">ServerRoot "D:/etc/apache"</pre>
</li>
<li>Enable required Apache modules. I just uncomment one more <strong><em>for mod_rewrite</em></strong> module.</li>
<li>Add the following lines somewhere (I did just below the module enabling)
<pre class="xml">LoadModule php5_module "d:/etc/php/php5apache2_4.dll"
AddHandler application/x-httpd-php .php
PHPIniDir "d:/etc/php"</pre>
</li>
<li>Change server admin email address
<pre class="xml">ServerAdmin info@yoursite.com</pre>
</li>
<li>Change the document root:
<pre class="xml">DocumentRoot "d:/etc/www"
&lt;Directory "d:/etc/www"&gt;</pre>
</li>
<li>If you want to allow .htaccess to be used under document root do the following under &lt;Directory &#8220;d:/etc/www&#8221;&gt;
<pre class="xml">AllowOverride All</pre>
</li>
<li>Find the follwoing and replace the path:
<pre class="xml">ScriptAlias /cgi-bin/ "d:/etc/apache/cgi-bin/"
&lt;Directory "d:/etc/apache/cgi-bin"&gt;</pre>
</li>
<li>Add index.php in directory index
<pre class="xml">DirectoryIndex index.html <strong>index.php</strong></pre>
</li>
</ol>
<h4><strong>PHP</strong></h4>
<ol>
<li>Rename php.ini-development to php.ini</li>
<li>Find extension directory setting and set the path as per your installation.
<pre class="xml">extension_dir = "d:\etc\php\ext"</pre>
</li>
<li>Uncomment (remove the simicolon ; from the beginning of the line) the extensions that you want to enable them. i.e.
<pre class="xml">extension=php_curl.dll
extension=php_mysql.dll
extension=php_mysqli.dll
extension=php_pdo_mysql.dll
extension=php_soap.dll</pre>
</li>
<li>If you want to test email sending from the PHP in local system, then you need to set the SMTP. i.e.
<pre class="xml">SMTP = smtp.yoursite.com
smtp_port = 25
sendmail_from = youremail@sender.com</pre>
</li>
</ol>
<p>Rest of the changes/configurations are totally depends on requirement project wise.</p>
<h3><strong>Set Environment Variables for PHP (Windows 7)</strong></h3>
<p>To be available PHP globally in Windows, the path of the PHP has to be set.</p>
<ol>
<li>Right click on <strong><em>Computer</em></strong> and click <strong><em>Properties</em></strong></li>
<li>Click on <strong><em>Advanced system settings</em></strong> on the left side (top).</li>
<li>Click on the <strong><em>Environment variables</em></strong></li>
<li>Under <strong><em>System variables</em></strong>, double click the <strong><em>Path</em></strong> variable name and add <strong>;d:\etc\php</strong> without double quotes at the end where semicolon (;) is the separator.</li>
<li>Click <strong>OK</strong> to save. Sometimes you may need to restart the computer this to take it into effect.</li>
</ol>
<h3><strong>Install Apache as Service</strong></h3>
<p>Since we have just copied the files in a folder, the Apache is not yet not a windows service. To install it as a service follow the steps.</p>
<ol>
<li>Run the command line (cmd.exe) As Administrator. Browse the folder <strong><em>c:\Windows\System32\</em></strong> and right click on <strong><em>cmd.exe</em></strong> and select <strong><em>Run as Administrator</em></strong>.</li>
<li>Change directory to <strong><em>d:\etc\apache\bin</em></strong>in the command line
<pre class="xml">cd d:\etc\apache\bin</pre>
</li>
<li>Run the command to install it
<pre class="xml">httpd -k install (or sometimes httpd.exe -k install if that does not work)</pre>
</li>
</ol>
<p>Now restart the computer and test both PHP and Apache. To test both together create a PHP file <strong><em>phpinfo.php</em></strong> in <strong>d:\etc\www</strong>. Now browse in the browser as <strong><em><a href="http://localhost/phpinfo.php">http://localhost/phpinfo.php</a></em></strong>.</p>
<p>If you can see the PHP information then now you are done !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devraju.com/php/installing-php-5-4-with-apache-2-4-in-32-bit-of-windows/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Upgrading Magento 1.4.2.0 to 1.6.1.0</title>
		<link>http://www.devraju.com/magento/upgrading-magento-1-4-2-0-to-1-6-1-0/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=upgrading-magento-1-4-2-0-to-1-6-1-0</link>
		<comments>http://www.devraju.com/magento/upgrading-magento-1-4-2-0-to-1-6-1-0/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 06:27:12 +0000</pubDate>
		<dc:creator>rajug</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.devraju.com/?p=314</guid>
		<description><![CDATA[It is always better to work on a separate database while upgrading. And also it is wise to do it in local system first for sure rather than putting the site offline during upgrade process. It is not only because we are not sure but Magento does not have its own formal steps to upgrade. So dump the existing old database and import in new database name. Steps: I did the following steps to upgrade Magento 1.4.2.0 to 1.6.1.0: -[...]]]></description>
			<content:encoded><![CDATA[<p>It is always better to work on a separate database while upgrading. And also it is wise to do it in local system first for sure rather than putting the site offline during upgrade process. It is not only because we are not sure but Magento does not have its own formal steps to upgrade. So dump the existing old database and import in new database name.</p>
<p><strong>Steps:</strong><br />
I did the following steps to upgrade Magento 1.4.2.0 to 1.6.1.0:</p>
<ul>
<li>- Installed fresh 1.6 Magento with fresh sample data (sample data should also be the latest 1.6 version).</li>
<li>- Re-indexed all the items from back end of installed latest Magento 1.6.</li>
<li>- Disabled all the cache from Magento back end.</li>
<li>- Flushed/deleted all the Magento cache.
<pre name="code" class="php">
rm -rf var/cache/* var/session/*
rm -rf downloader/pearlib/cache/* downloader/pearlib/download/*
</pre>
</li>
<li>- Prevent unique check while upgrading by changing file app/etc/config.xml
<pre name="code" class="xml"><initStatements>SET NAMES utf8;</initStatements></pre>
<p>To</p>
<pre name="code" class="xml"><initStatements>SET NAMES utf8; SET FOREIGN_KEY_CHECKS=0; SET UNIQUE_CHECKS=0;</initStatements></pre>
</li>
<li>- To trace the errors, I renamed the errors/local.xml.sample to errors/local.xml.</li>
<li>- Edited the app/etc/local.xml to connect to the old database.</li>
<li>- I was working in Ubuntu, so in terminal, I ran the following command in the Magento 1.6 installed root directory.<br />
	<code>php index.php</code><br />
(If in case of windows just hit the Magento home URL in the browser and wait till it ends)</li>
</ul>
<p>The above steps are standard steps for all of the Magento upgrades. But troubleshooting may vary depending upon the Magento system, version, extensions used, data, extra attributes added, etc.</p>
<p><strong>Troubleshooting while upgrading:</strong><br />
<strong>Problem:</strong><br />
First of all I encountered the error of it failed renaming the core_url_rewrite table. I don&#8217;t know why does it really needed to rename it but the error was on renaming it. I tried several times but I always found the same error with &#8220;core_url_rewrite&#8221; table. I was almost stopped here. There was nothing except pulling the hair out even after a many times of googling.</p>
<p>The error was with that table and I tried by trunctating the table but no luck. Next I tried by dropping the table but again no luck.</p>
<p><strong>Solution:</strong><br />
I droped the table from old table and imported the structure of the table from new 1.6.1.0 database and tried to upgrade again then it worked for me. You do not have to worry about the data in this table because while reindexing, the data will be filled out again.</p>
<p><strong>Problem:</strong><br />
Secondly, there was an error for customer integrity constraint violation.</p>
<p><strong>Solution:</strong><br />
I compared the structure of customer_entity (of new and old database) and found &#8220;website_id and email&#8221; should be unique in new structure. Checked if there are duplicate entry with those two fields:</p>
<pre name="code" class="sql">
SELECT *
FROM `customer_entity`
GROUP BY website_id,email HAVING COUNT(entity_id)>1
</pre>
<p>Found one email address was duplicate for the same website and I deleted one.</p>
<p>Then again ran the command :</p>
<pre name="code" class="php">php index.php</pre>
<p>It took around 1 hour but this time there was no message. That means my upgrade has been done</p>
<p>Then flushed the cache again!</p>
<p>Change the base URLs in the &#8220;core_config_data&#8221; table for the path &#8220;web/secure/base_url&#8221; and &#8220;web/unsecure/base_url&#8221;.</p>
<p><strong>Reindexing:</strong><br />
Before visiting the site, don&#8217;t forget to reindex.</p>
<pre name="code" class="php">php shell/indexer.php --reindexall</pre>
<p>Again flushed the cache.</p>
<pre name="code" class="php">
rm -rf var/cache/* var/session/*
rm -rf downloader/pearlib/cache/* downloader/pearlib/download/*
</pre>
<p>Then I visited the admin site. I was able to login to the admin with new version of Magento.</p>
<p>I did not stop here. Not to take long breath yet. Now I had to check each and every menus available in Magento back end. All were working fine but product edit page was with fatal error and order detail view page was with broken design but no error found.</p>
<p>After some research and study about modules used in the old database, extra attributes used in old version, I thought I had to delete all the attributes and module related data.</p>
<p>I tried my best to search the modules related data and attributes in the database and remove them. I had removed some attributes, I had updated some attributes which has used models from <strong>&#8220;eav_attribute&#8221;</strong> table. And I had to remove the modules setup data from <strong>&#8220;core_resource&#8221;</strong> table.</p>
<p><strong>Search:</strong></p>
<pre name="code" class="sql">
SELECT * FROM `eav_attribute` WHERE `attribute_code` like 'aw_%';
SELECT * FROM `eav_attribute` WHERE `attribute_code` like 'bcp_%';
</pre>
<p>Set all the models that attribute calls to NULL and remove the attribute from being System Attribute (`is_user_defined`=1) so that it can be removed from the admin Attribute Manager.</p>
<pre name="code" class="sql">
UPDATE `eav_attribute` SET
`attribute_model`=NULL,
`backend_model`=NULL,
`frontend_model`=NULL,
`source_model`=NULL,
`is_user_defined`=1
WHERE `attribute_code` like 'aw_%';
</pre>
<p>For another extension:</p>
<pre name="code" class="sql">
UPDATE `eav_attribute` SET
`attribute_model`=NULL,
`backend_model`=NULL,
`frontend_model`=NULL,
`source_model`=NULL,
`is_user_defined`=1
WHERE `attribute_code` like 'bcp_%';
</pre>
<p>I also removed those extensions entry from &#8220;core_resource&#8221; table.</p>
<pre name="code" class="sql">
DELETE FROM `core_resource` WHERE `code` = 'awall_setup'
DELETE FROM `core_resource` WHERE `core_resource`.`code` = 'bcp_setup'
</pre>
<p>Do not forget to flush the cache again before running the site.</p>
<pre name="code" class="php">
rm -rf var/cache/* var/session/*
rm -rf downloader/pearlib/cache/* downloader/pearlib/download/*
</pre>
<p>So in my case, specially the AW extensions and their attributes were the cause of the error in product listing and order view page.</p>
<p>Hope these steps will help the people who are really desparate to upgrade Magento systems and having trouble. I believe at least some of the steps and troubleshooting tips will help someone.</p>
<p>Enjoy!! <img src='http://www.devraju.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.devraju.com/magento/upgrading-magento-1-4-2-0-to-1-6-1-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento admin login problem &#8211; Even with correct username/password</title>
		<link>http://www.devraju.com/magento/magento-admin-login-problem-even-with-correct-usernamepassword/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=magento-admin-login-problem-even-with-correct-usernamepassword</link>
		<comments>http://www.devraju.com/magento/magento-admin-login-problem-even-with-correct-usernamepassword/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 07:37:49 +0000</pubDate>
		<dc:creator>rajug</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.devraju.com/?p=310</guid>
		<description><![CDATA[Magento acts always something strange. I struggled around 5/6 hours for fixing this particular small problem. I migrated successfully a Magento shop from 1.4.2 to latest version 1.6.0. I was trying to move my local files to my Ubuntu system. While migrating I was using a different sub domain and now I am trying some different tasks with different sub domain. I just made a copy of the running site (files and DB) and made requried configurations. And tried to[...]]]></description>
			<content:encoded><![CDATA[<p>Magento acts always something strange. I struggled around 5/6 hours for fixing this particular small problem.</p>
<p>I migrated successfully a Magento shop from 1.4.2 to latest version 1.6.0. I was trying to move my local files to my Ubuntu system. While migrating I was using a different sub domain and now I am trying some different tasks with different sub domain. I just made a copy of the running site (files and DB) and made requried configurations. And tried to login to the admin with correct username and password, I was just redirected to the same login page without any errors/warnings/messages. When I entere wrong username/password then it shows me the error.</p>
<p>That was quite annoying <img src='http://www.devraju.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> .</p>
<p>I looked in the google and found one solution to modify (comment some lines of code) in the core file <strong>(app/code/core/Mage/Core/Model/Session/Abstract/Varien.php)</strong> as follows:</p>
<pre name="code" class="php">
$this->getCookie()->getPath()//,
 // set session cookie params
 session_set_cookie_params(
 $this->getCookie()->getLifetime(),
 $this->getCookie()->getPath()//,
 //$this->getCookie()->getDomain(),
 //$this->getCookie()->isSecure(),
 //$this->getCookie()->getHttponly()
 );
</pre>
<p>It was written that for 1.4 it has to be something like below:</p>
<pre name="code" class="php">
/* if (!$cookieParams['httponly']) {
   unset($cookieParams['httponly']);
   if (!$cookieParams['secure']) {
     unset($cookieParams['secure']);
     if (!$cookieParams['domain']) {
       unset($cookieParams['domain']);
     }
   }
 }
 if (isset($cookieParams['domain'])) {
   $cookieParams['domain'] = $cookie->getDomain();
 } */
</pre>
<p>When I comment these lines and tried and it worked. Strange!!!</p>
<p>Then I dig into the Magento core files and tried to find what exactly these lines of code check and found that they check the domain for the cookie stored in the core_config_data table. I saw a row in core_config_data table having the old sub domain with the path &#8216;web/cookie/cookie_domain&#8217;. Then I changed this domain value to my new sub domain and uncomment above lines of code.</p>
<p>Then it worked!! Bravo!!!</p>
<p>Magento always rocks but before rocking it sucks for a while&#8230; <img src='http://www.devraju.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Good luck others!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devraju.com/magento/magento-admin-login-problem-even-with-correct-usernamepassword/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Checking home page in Joomla !</title>
		<link>http://www.devraju.com/joomla/checking-home-page-in-joomla/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=checking-home-page-in-joomla</link>
		<comments>http://www.devraju.com/joomla/checking-home-page-in-joomla/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 16:36:55 +0000</pubDate>
		<dc:creator>rajug</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.devraju.com/?p=305</guid>
		<description><![CDATA[Checking whether the page is home page or not in Joomla is little different in different versions. Here you can find the solutions for different versions of Joomla. Joomla 1.0 In Joomla! 1.0.x it was possible to determine if the user was viewing the front page by using code like this: if ($option == 'com_frontpage' &#124;&#124; $option == '') { echo 'This is the front page'; } Joomla 1.5 But in Joomla! 1.5.x the com_frontpage component is no longer present.[...]]]></description>
			<content:encoded><![CDATA[<p>Checking whether the page is home page or not in Joomla is little different in different versions. Here you can find the solutions for different versions of Joomla.</p>
<h3>Joomla 1.0</h3>
<p>In Joomla! 1.0.x it was possible to determine if the user was viewing the front page by using code like this:</p>
<pre name="code" class="php">
if ($option == 'com_frontpage' || $option == '') {
	echo 'This is the front page';
}
</pre>
<h3>Joomla 1.5</h3>
<p>But in Joomla! 1.5.x the com_frontpage component is no longer present. This is how to achieve the same result in Joomla! 1.5.x</p>
<pre name="code" class="php">
$menu = &#038; JSite::getMenu();
if ($menu->getActive() == $menu->getDefault()) {
	echo 'This is the front page';
}
</pre>
<p>This works by checking to see if the current active menu item is the default one.</p>
<h3>Joomla 1.6 and 1.7</h3>
<p>The same code that worked in Joomla 1.5 will work in 1.6 onwards. However, since PHP 5 is now a minimum requirement for Joomla 1.6 the ampersand (&#038;) is no longer required on the first line. Use the following code for a site where all content is in the same language:</p>
<pre name="code" class="php">
$menu = JSite::getMenu();
if ($menu->getActive() == $menu->getDefault()) {
	echo 'This is the front page';
}
</pre>
<p>For multi-lingual sites the front page is dependent on the currently selected language, so you will need to use code like this:</p>
<pre name="code" class="php">
$menu = JSite::getMenu();
if ($menu->getActive() == $menu->getDefault( 'en-GB' )) {
	echo 'This is the front page';
}
elseif ($menu->getActive() == $menu->getDefault( 'fr-FR' )) {
	echo 'Accueil';
}
</pre>
<p>For multi-lingual sites, it could also be necessary to display a specific code/html for all Default Home pages.</p>
<pre name="code" class="php">
$menu = JSite::getMenu();
$lang = JFactory::getLanguage();
if ($menu->getActive() == $menu->getDefault($lang->getTag())) :
// some code
endif;
</pre>
<p>Hope this will help others.</p>
<p><strong><em>Source: Joomla Documentation!</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.devraju.com/joomla/checking-home-page-in-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla jLanguage Editor component updated</title>
		<link>http://www.devraju.com/joomla/joomlajlanguage-editor-component-updated/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=joomlajlanguage-editor-component-updated</link>
		<comments>http://www.devraju.com/joomla/joomlajlanguage-editor-component-updated/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 07:41:31 +0000</pubDate>
		<dc:creator>rajug</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.devraju.com/?p=298</guid>
		<description><![CDATA[jLanguage Editor is Joomla back end component that enables the facility to edit the language files of different language pack of front end website. Initially it was developed for Joomla 1.5 and later on with release of 1.6 and 1.7, it is now available for latest versions of Joomla. I have received some reviews and comments for this component. And I am trying my best to upgrade/add features as per the request and also fixing the bugs as pointed by[...]]]></description>
			<content:encoded><![CDATA[<p>jLanguage Editor is Joomla back end component that enables the facility to edit the language files of different language pack of front end website. Initially it was developed for Joomla 1.5 and later on with release of 1.6 and 1.7, it is now available for latest versions of Joomla.</p>
<p>I have received some reviews and comments for this component. And I am trying my best to upgrade/add features as per the request and also fixing the bugs as pointed by the reviewers. Recently there was a request to add a feature for copying updated files to Override folder so that upgrade of Joomla language packs doesn&#8217;t overwrite the changes made. Also pointed one bug/issue that it was stripping the HTML tags. Now the issue has been fixed and added the feature to copy the updated language files to Overrides folder.</p>
<p>Updated:</p>
<p>- HTML tags are supported regardless of what tags are used. Since editing is performed in the administrator section, no validations are checked.<br />
- Updated files will be stored in the override directory so that when upgrading the Joomla core will not overwritten the modified texts/language content.</p>
<p>Thanks <a href="http://extensions.joomla.org/extensions/reviews/janaf">Janaf</a> for pointing the issues.</p>
<p>The latest and updated files can be downloaded from <a href="http://extensions.joomla.org/extensions/languages/language-edition/13457">Joomla Extension Directory</a>. Please do not forget to add a review when you install and use it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devraju.com/joomla/joomlajlanguage-editor-component-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importing large SQL dump files into MySQL !</title>
		<link>http://www.devraju.com/mysql/importing-large-sql-dump-files-into-mysql/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=importing-large-sql-dump-files-into-mysql</link>
		<comments>http://www.devraju.com/mysql/importing-large-sql-dump-files-into-mysql/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 08:10:15 +0000</pubDate>
		<dc:creator>rajug</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.devraju.com/?p=253</guid>
		<description><![CDATA[Though because of some quite good MySQL client software these days it has been quite easier to import and export the databases whenever required. But importing and exporting bigger files is quite difficult task for all. Specially, phpmyadmin (a web based popular application for browsing MySQL online written in PHP) rely on the PHP&#8217;s upload_max_filesize, memory_limit and post_max_size configurations in php.ini. So there are no other options to use command line MySQL somehow. If there is access to the server[...]]]></description>
			<content:encoded><![CDATA[<p>Though because of some quite good MySQL client software these days it has been quite easier to import and export the databases whenever required. But importing and exporting bigger files is quite difficult task for all. Specially, phpmyadmin (a web based popular application for browsing MySQL online written in PHP) rely on the PHP&#8217;s upload_max_filesize, memory_limit and post_max_size configurations in php.ini. So there are no other options to use command line MySQL somehow.</p>
<p>If there is access to the server via SSH, then by running some MySQL commands, we can export and import large databases as well.</p>
<h3>Export</h3>
<p><strong>Exporting a single database:</strong><br />
<em>mysqldump -u [dbuser] -p [dbpwd] [dbname] > dumpfile.sql</em></p>
<p>Export all the databases in the server (rare case though useful in local systems sometimes):<br />
<em>mysqldump -u [dbuser] -p [dbpwd] > dumpfile.sql</em></p>
<p><strong>Export whole multiple databses:</strong><br />
<em>mysqldump -u [dbuser] -p [dbpwd] &#8211;databases [dbname] [dbname] > dumpfile.sql</em></p>
<p><strong>Exporting specific tables:</strong><br />
<em>mysqldump -u [dbuser] -p [dbpwd] [dbname] [table1 table2]</em></p>
<h3>Restore</h3>
<p>Restoring database is mostly done from a sql dump file. The same filename dumpfile.sql will be used here.</p>
<p><strong>Restore a database:</strong><br />
<em>mysql -u [dbuser] -p [dbpwd] [dbname] < dumpfile.sql</em></p>
<p><strong>Restore a bulk SQL with multiple database:</strong><br />
<em>mysql -u [dbuser] -p [dbpwd] < dumpfile.sql</em></p>
<p><strong>Zipped files to be imported:</strong><br />
<em>gunzip < dumpfile.sql.gz | mysql -u [dbuser] -p [dbpwd]</em></p>
<p><strong>Restore multiple dump files using cat command:</strong><br />
<em>cat dumpfile1.sql dumpfile2.sql | mysql -u [dbuser] -p [dbpwd]</em></p>
<p>Note: if your database user password has some special characters, do not use the password in the command itself. Just leave -p without password and you will be asked to enter the password when you hit the enter key to execute the command.<br />
<strong>Example: </strong><br />
<em>mysqldump -u [username] -p [dbname] > [backupfile.sql]</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.devraju.com/mysql/importing-large-sql-dump-files-into-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VC6 Compiled PHP is no more available in PHP download!</title>
		<link>http://www.devraju.com/php/vc6-compiled-php-is-no-more-available-in-php-download/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vc6-compiled-php-is-no-more-available-in-php-download</link>
		<comments>http://www.devraju.com/php/vc6-compiled-php-is-no-more-available-in-php-download/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 15:18:10 +0000</pubDate>
		<dc:creator>rajug</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.devraju.com/?p=250</guid>
		<description><![CDATA[Last week I wanted to upgrade my PHP 5.3.5 to 5.3.8 as I saw that it has been released with some security fixes. I usually download VC6 version of PHP as it is written clearly in the left hand side of the download page under &#8220;Which version do I choose?&#8221; to use VC6 compiled PHP if we are in apache.org&#8217;s apache as a web server. But this time I could not find VC6 version of PHP download. I browsed a[...]]]></description>
			<content:encoded><![CDATA[<p>Last week I wanted to upgrade my PHP 5.3.5 to 5.3.8 as I saw that it has been released with some security fixes. I usually download VC6 version of PHP as it is written clearly in the left hand side of the download page under &#8220;Which version do I choose?&#8221; to use VC6 compiled PHP if we are in apache.org&#8217;s apache as a web server.</p>
<p>But this time I could not find VC6 version of PHP download. I browsed a lot and tried to search VC6 compiled PHP because I had already apache installed in my laptop downloaded from apache.org. Today I found there is a line just below that information in the same page as follows:</p>
<blockquote><p>Do <strong>NOT</strong> use VC9 version with apache.org binaries, VC9 versions of Apache can be fetched at Apache Lounge. We use their binaries to build the Apache SAPIs.</p></blockquote>
<p>Then I read the released note at http://windows.php.net/ and find the lines:</p>
<blockquote><p><strong>Windows users:</strong> please mind that we do no longer provide builds created with Visual Studio C++ 6. It is impossible to maintain a high quality and safe build of PHP for Windows using this unmaintained compiler.</p>
<p>For Apache SAPIs (php5_apache2_2.dll), be sure that you use a Visual Studio C++ 9 version of Apache. We recommend the Apache builds as provided by ApacheLounge. For any other SAPI (CLI, FastCGI via mod_fcgi, FastCGI with IIS or other FastCGI capable server), everything works as before. Third party extension providers must rebuild their extensions to make them compatible and loadable with the Visual Studio C++9 builds that we now provide.</p>
<p>All PHP users should note that the PHP 5.2 series is NOT supported anymore. All users are strongly encouraged to upgrade to PHP 5.3.6.</p></blockquote>
<p>So I am now going to download the apache from http://www.apachelounge.com/ and will then use VC9 compiled PHP. I will update in my blog once I did.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devraju.com/php/vc6-compiled-php-is-no-more-available-in-php-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>एउटा सायद परिचित तर कसैलाई मन नपर्ने सम्बाद&#8230;</title>
		<link>http://www.devraju.com/%e0%a4%95%e0%a4%9a%e0%a5%8d%e0%a4%af%e0%a4%be%e0%a4%95-%e0%a4%95%e0%a5%81%e0%a4%9a%e0%a5%81%e0%a4%95/%e0%a4%8f%e0%a4%89%e0%a4%9f%e0%a4%be-%e0%a4%b8%e0%a4%be%e0%a4%af%e0%a4%a6-%e0%a4%aa%e0%a4%b0%e0%a4%bf%e0%a4%9a%e0%a4%bf%e0%a4%a4-%e0%a4%a4%e0%a4%b0-%e0%a4%95%e0%a4%b8%e0%a5%88%e0%a4%b2%e0%a4%be/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e0%25a4%258f%25e0%25a4%2589%25e0%25a4%259f%25e0%25a4%25be-%25e0%25a4%25b8%25e0%25a4%25be%25e0%25a4%25af%25e0%25a4%25a6-%25e0%25a4%25aa%25e0%25a4%25b0%25e0%25a4%25bf%25e0%25a4%259a%25e0%25a4%25bf%25e0%25a4%25a4-%25e0%25a4%25a4%25e0%25a4%25b0-%25e0%25a4%2595%25e0%25a4%25b8%25e0%25a5%2588%25e0%25a4%25b2%25e0%25a4%25be</link>
		<comments>http://www.devraju.com/%e0%a4%95%e0%a4%9a%e0%a5%8d%e0%a4%af%e0%a4%be%e0%a4%95-%e0%a4%95%e0%a5%81%e0%a4%9a%e0%a5%81%e0%a4%95/%e0%a4%8f%e0%a4%89%e0%a4%9f%e0%a4%be-%e0%a4%b8%e0%a4%be%e0%a4%af%e0%a4%a6-%e0%a4%aa%e0%a4%b0%e0%a4%bf%e0%a4%9a%e0%a4%bf%e0%a4%a4-%e0%a4%a4%e0%a4%b0-%e0%a4%95%e0%a4%b8%e0%a5%88%e0%a4%b2%e0%a4%be/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 05:32:58 +0000</pubDate>
		<dc:creator>rajug</dc:creator>
				<category><![CDATA[कच्याक कुचुक]]></category>

		<guid isPermaLink="false">http://www.devraju.com/?p=243</guid>
		<description><![CDATA[प्रहरी: यो बाइक कसको ? चालक: मेरो सर ! प्रहरी: खै लाइसेन्स निकाल्नुस ! चालक: किन सर ? प्रहरी: नो पार्किंगमा राख्ने अनि &#8216;किन ?&#8217; भन्ने ? (अलि पर देखाउदै) नो पार्किंग को बोर्ड देख्नु भएन ऊ~~ त्यहाँ ? चालक: ए, अगी (५ मिनट अगाडी) ३/४ वोटा बाइक थियो तेसैले सबै भन्दा अगाडी छेउमा ल्यायर पार्किंग गरेको सर, नो पार्किंग को बोर्ड त धेरै पर पो छ त सर ! २/३ मिनेट पनि भाको छैन, यो आगनको पार्किंग छैन रैछ,[...]]]></description>
			<content:encoded><![CDATA[<p>प्रहरी: यो बाइक कसको ?<br />
चालक: मेरो सर !<br />
प्रहरी: खै लाइसेन्स निकाल्नुस !<br />
चालक: किन सर ?<br />
प्रहरी: नो पार्किंगमा राख्ने अनि &#8216;किन ?&#8217; भन्ने ? (अलि पर देखाउदै) नो पार्किंग को बोर्ड देख्नु भएन ऊ~~ त्यहाँ ?<br />
चालक: ए, अगी (५ मिनट अगाडी) ३/४ वोटा बाइक थियो तेसैले सबै भन्दा अगाडी छेउमा ल्यायर पार्किंग गरेको सर, नो पार्किंग को बोर्ड त धेरै पर पो छ त सर ! २/३ मिनेट पनि भाको छैन, यो आगनको पार्किंग छैन रैछ, के गर्नु ?<br />
प्रहरी: धेरै कुरा नगर्नुस, नो पार्किंग मा बाइक राखेर तपाइले सडक मा बाधा पुराउनु भएको छ, तपाइँ कारबाहीमा पर्नु भएको छ&#8230; खुरुक्क लाइसेन्स दिनुस, नत्र अरु पनि कारबाही होला !<br />
(के हो त्यो अरु कारबाही भनेको फेरी, निहु खोज्ने हो भने आर्को लफडामा परियाला भन्ने डर)<br />
महिला: (एउटा कालो पल्सर देखाउदै) त्यहाँ अझै एउटा बाइक छ, खोइ त तेस्लाई कारबाही ?<br />
प्रहरी: त्यो बाइक मेरै हो, तपाईलाई कारबाही गर्न मैले पार्किंग गरेको हो, छिट्टो लाइसेन्स दिनुस भनेको, (निकै हत्तारमा देखिनु भयो सर, मानौ कि धेरै टाढा जानु छ सरलाइ मेरो लाइसेन्स लियर !)<br />
चालक: ए, तेसो भए तपाइले गरेको पार्किंगले चाही सडकमा बाधा पुर्याउदैन ?<br />
महिला: (गुन्गुनाउदै) उहाँहरु ले त जे गरे नि हुने होला नि !<br />
प्रहरी: कति धेरै कुरा गरेको ? तपाइँ कारबाहीमा पर्नु भएको छ, खुरुक्क दिनुस लाइसेन्स !<br />
चालक: (लाइसेन्स झिकेर दिदै) केहि गरि मिलाउनुस न सर, हुन्न ? एकपटकलाइ गल्ति भयो अरुको पछी लाग्दा (हुन त अरु बाइक भन्दा अगाडी नै लगेर राखियको थियो) !<br />
प्रहरी: (चिट दिदै), हुन्न, भोलि बग्गीखाना लिन आउनुस, तपाइको लाइसेन्स उतै जान्छ !<br />
चालक: (चिट हेर्दै) हैन यसमा त कमलपोखरी लेखेको छ त !<br />
प्रहरी: पक्रेको कमलपोखरी हो, लिन आउने चाही बग्गीखाना !<br />
चालक: खोइ कतै लेखेको छैन त ?<br />
प्रहरी: मैले भने त उतै आउनुस, तेस्मा लेखेको पढ्नुस के के लेखेको छ !<br />
(के नै लेखेको रैछ भनेर हेरेको के हुनु उसको नाम पोस्ट लेखेको रैछ, अनि कसुर चाही &#8216;सडक पार्क स.अ. बाधा&#8217; रे)</p>
<p>मिति: २०६८, आषाढ २८ गते दिउसो ३ बजे तिर<br />
स्थान: कमलपोखरी, हिमाल नर्सिंग होम अगाडी आँगनको गेट !<br />
पात्रहरु :<br />
प्रहरी:  काजी उप्रेती (दर्जा &#8211; प्र. ज.  &#8211; ट्राफिक प्रहरी)<br />
चालक: म आफै (राजु गौतम)<br />
महिला: मेरो श्रीमती</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devraju.com/%e0%a4%95%e0%a4%9a%e0%a5%8d%e0%a4%af%e0%a4%be%e0%a4%95-%e0%a4%95%e0%a5%81%e0%a4%9a%e0%a5%81%e0%a4%95/%e0%a4%8f%e0%a4%89%e0%a4%9f%e0%a4%be-%e0%a4%b8%e0%a4%be%e0%a4%af%e0%a4%a6-%e0%a4%aa%e0%a4%b0%e0%a4%bf%e0%a4%9a%e0%a4%bf%e0%a4%a4-%e0%a4%a4%e0%a4%b0-%e0%a4%95%e0%a4%b8%e0%a5%88%e0%a4%b2%e0%a4%be/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New way of spamming in Facebook &#8211; You requested a new Facebook password</title>
		<link>http://www.devraju.com/facebook/new-way-of-spamming-in-facebook-you-requested-a-new-facebook-password/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-way-of-spamming-in-facebook-you-requested-a-new-facebook-password</link>
		<comments>http://www.devraju.com/facebook/new-way-of-spamming-in-facebook-you-requested-a-new-facebook-password/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 05:25:35 +0000</pubDate>
		<dc:creator>rajug</dc:creator>
				<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://www.devraju.com/?p=240</guid>
		<description><![CDATA[Today I got an email saying in the subject line &#8216;You requested a new Facebook password&#8217; and with the following email body part: &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; Hi Raju, You recently asked to reset your Facebook password. To complete your request, please follow this link: https://www.facebook.com/recover.php?n=xuhpXzatX&#038;id=520903088&#038;s=10 Alternately, you may go to https://www.facebook.com/recover.php and enter the following password reset code: xuhpXzatX Please note: for your protection, this email has been sent to all the email addresses associated with your Facebook account. *Didn&#8217;t Request This[...]]]></description>
			<content:encoded><![CDATA[<p>Today I got an email saying in the subject line &#8216;You requested a new Facebook password&#8217; and with the following email body part:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
<em>Hi Raju,</p>
<p>You recently asked to reset your Facebook password. To complete your request, please follow this link:</p>
<p>https://www.facebook.com/recover.php?n=xuhpXzatX&#038;id=520903088&#038;s=10</p>
<p>Alternately, you may go to https://www.facebook.com/recover.php and enter the following password reset code:</p>
<p>xuhpXzatX</p>
<p>Please note: for your protection, this email has been sent to all the email addresses associated with your Facebook account.</p>
<p>*Didn&#8217;t Request This Change?*<br />
If you did not request a new password, let us know at:</p>
<p>https://www.facebook.com/login/recover/disavow_reset_email.php?n=xuhpXzatX&#038;id=520903088</p>
<p>Thanks,<br />
The Facebook Team</em><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>And I was just wondered why and when I did request for resetting the facebook password. I never did that as far as I remember. And I just tried to login with my existign password and I was able to login. Thank god. This is again an SPAM. The spammers are with new route now. Facebook users are not almost awere of fake links to be clicked in the Facebook itself and they have now tried a new way by sending the links to their email address. As you can see above in the body part, they have asked to click on a link which MUST be a fake link or it MUST do an andesirable thing. I am not sure what exactly it does because I haven&#8217;t clicked it yet. But as far as I know the link does not even exists so I don&#8217;t think that it will do anything dangerous but to be safe it is good not to click on the links.</p>
<p>Seeing the email&#8217;s header part, we can say that it is the fake one:<br />
Mail header:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
<em>from	Facebook password+ys2yzf6@facebookmail.com<br />
reply-to	Facebook
<password+ys2yzf6@facebookmail.com>
to	Raju Gautam <email@example.com><br />
date	Thu, Jun 30, 2011 at 7:56 PM<br />
subject	You requested a new Facebook password<br />
mailed-by	facebookmail.com<br />
signed-by	facebookmail.com</em><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devraju.com/facebook/new-way-of-spamming-in-facebook-you-requested-a-new-facebook-password/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

