<?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>php genious &#187; Open Source</title>
	<atom:link href="http://www.phpgenious.com/category/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpgenious.com</link>
	<description></description>
	<lastBuildDate>Tue, 27 Sep 2011 21:02:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>URL rewriting in Magento</title>
		<link>http://www.phpgenious.com/2011/09/url-rewriting-in-magento/</link>
		<comments>http://www.phpgenious.com/2011/09/url-rewriting-in-magento/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 20:53:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[magneto]]></category>
		<category><![CDATA[URL Rewriting in magento]]></category>

		<guid isPermaLink="false">http://www.phpgenious.com/?p=574</guid>
		<description><![CDATA[Hi Friends.. Currently I am working in Magento. Its a great experience for me to learn Magento. Since many time, I want to learn Magento and I got Opportunity to [...]]]></description>
			<content:encoded><![CDATA[<p>Hi Friends.. Currently I am working in Magento. Its a great experience for me to learn Magento. Since many time, I want to learn Magento and I got Opportunity to work on one live project in magento. I am really very happy to work on magento and learn magento. When I have started work on magento, I faced many issues in magento like understanding structure, theme structure and many things. I will write here  about my experience with mangento every day.</p>
<p><span id="more-574"></span>Here in this post, I am going to show you all that how to enable URL rewriting in Magento ? Its a simple thing but its very important in any online store. Because URL rewriting is useful in Search Engine Optimization.</p>
<p>So in magento if you want to start URL rewriting in magento, you have to take care of below steps :</p>
<p><strong>1)</strong> First check on server that <strong>mod_rewrite</strong> is enabled.</p>
<p><strong>2)</strong> After that when you are installing magento, Check the checkbox for url rewriting.</p>
<p><strong>3)</strong> And mail task is when you have completed installation, then go to <strong>admin-&gt;system-&gt;index management </strong>and check all the checkboxes and select <strong>reindex </strong>from dropdown and click on save.</p>
<ul></ul>
<p>Thats it.. Now check your front end. I bet it will works fine now. If you have any issue or any suggestion then you can comment on this.</p>
<p>Thanks a lot !!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpgenious.com/2011/09/url-rewriting-in-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Put CMS pages in Header Menu in Magento</title>
		<link>http://www.phpgenious.com/2011/06/put-cms-pages-in-header-menu-in-magento/</link>
		<comments>http://www.phpgenious.com/2011/06/put-cms-pages-in-header-menu-in-magento/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 17:54:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[magento header]]></category>

		<guid isPermaLink="false">http://www.phpgenious.com/?p=556</guid>
		<description><![CDATA[Hi Friends !! After long time, I am back in blogging and posting some interesting stuffs for you. Today I will show you that how you can change your header [...]]]></description>
			<content:encoded><![CDATA[<p>Hi Friends !! After long time, I am back in blogging and posting some interesting stuffs for you.</p>
<p>Today I will show you that how you can change your header menu in magento and how you can put CMS pages in header dynamic menu.</p>
<p>In one of my project, I have faced the problem that how to change mail menu and how to put CMS pages in main menu.</p>
<p>After long search in google, i found the solution which I want  to share with you. If you want to change you header in Magento, Please follow below steps :<span id="more-556"></span></p>
<p><strong>First</strong> open <strong>top.phtml</strong> file of your template. My path for this file is <strong>/public_html/app/design/frontend/default/hellostyle/template/catalog/navigation/top.phtml.</strong></p>
<p>Now after this, Remove default menu code like this :</p>
<p><code>&lt;?php $_menu = $this-&gt;renderCategoriesMenuHtml(0,'level-top') ?&gt;<br />
&lt;?php if($_menu): ?&gt;<br />
&lt;ul id="nav"&gt;<br />
&lt;?php echo $_menu ?&gt;<br />
&lt;/ul&gt;<br />
&lt;?php endif ?&gt;</code></p>
<p>And Add this code here :</p>
<p><code>&lt;?php $collection = Mage::getModel('cms/page')-&gt;getCollection()-&gt;addStoreFilter(Mage::app()-&gt;getStore()-&gt;getId());?&gt;<br />
&lt;?php  $collection-&gt;getSelect()<br />
-&gt;where('is_active = 1'); ?&gt;<br />
&lt;ul id="nav"&gt;<br />
&lt;?php foreach ($collection as $page): ?&gt;<br />
&lt;?php $PageData = $page-&gt;getData(); ?&gt;<br />
&lt;?php if($PageData['identifier']!='no-route' &amp;&amp; $PageData['identifier']!='enable-cookies' &amp;&amp; $PageData['identifier']!='home2') { ?&gt;<br />
&lt;li&gt;<br />
&lt;a href="/&lt;?php echo $PageData['identifier']?&gt;"&gt;&lt;span&gt;&lt;?php echo $PageData['title'] ?&gt;&lt;/span&gt;&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;?php } ?&gt;<br />
&lt;?php endforeach; ?&gt;<br />
&lt;/ul&gt;</code></p>
<p>Thats it ! Now you can see all the CMS pages in header.</p>
<p>If you have any problem or any query in this or if you want any help from myside, just comment on this.</p>
<p>Thanks !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpgenious.com/2011/06/put-cms-pages-in-header-menu-in-magento/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>URL Rewriting in Opencart</title>
		<link>http://www.phpgenious.com/2010/07/url-rewriting-in-opencart/</link>
		<comments>http://www.phpgenious.com/2010/07/url-rewriting-in-opencart/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 17:33:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTACCESS]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Opencart HTACCESS]]></category>
		<category><![CDATA[URL rewriting in opencart]]></category>

		<guid isPermaLink="false">http://www.phpgenious.com/?p=430</guid>
		<description><![CDATA[Hello Friends !! Today I am going to introduce that how to enable URL rewriting in Opencart. I have completed my two projects in opencart and I already faced the [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Friends !! Today I am going to introduce that how to enable URL rewriting in Opencart.</p>
<p>I have completed my two projects in opencart and I already faced the problem that how to enable URL rewriting in Opencart.</p>
<p>So today I want to share with all of you guys that how to use URL rewriting in Opencart.<span id="more-430"></span></p>
<p>Follow below steps :</p>
<p>1) Rename your htaccess.txt to .htaccess.<br />
2) Enter in admin area.<br />
3) Go to <strong>Admin-&gt;Configuration-&gt;Settings-&gt;Server</strong> and check <strong>SEO URL</strong> option Yes.<br />
4) Then you have to enter SEO keyword field in every products/categories/information etc.<br />
5) You can find this field at that time of insertion or edition.</p>
<p>After all this settings, I am sure that URL rewriting is working in your opencart site.</p>
<p>If you have further query or if you have any confusion, then feel free to comment me. I will try my best to solve your issues..</p>
<p>Thanks in advance !!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpgenious.com/2010/07/url-rewriting-in-opencart/feed/</wfw:commentRss>
		<slash:comments>47</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t login into admin panel of Magento (Problem and Solution)</title>
		<link>http://www.phpgenious.com/2010/02/cant-login-into-admin-panel-of-magento-problem-and-solution/</link>
		<comments>http://www.phpgenious.com/2010/02/cant-login-into-admin-panel-of-magento-problem-and-solution/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 12:56:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Opensource]]></category>

		<guid isPermaLink="false">http://www.phpgenious.com/?p=365</guid>
		<description><![CDATA[Hello Friends !! Yesterday, when I was starting to work on Magento E-commerce. When I was access Magento after installation, I can&#8217;t logged in Admin section. After long time serching [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Friends !!</p>
<p>Yesterday, when I was starting to work on Magento E-commerce. When I was access Magento after installation, I can&#8217;t logged in Admin section.</p>
<p>After long time serching and research in Magento, finally I found the solution and currently I am able to login to admin section. Today I explain you about the problem and the solution.</p>
<p>First of all, what is <a href="http://magentoecommerce.com" target="_blank"><strong>Magento</strong></a> ?</p>
<p>Magento is one of the Opensource for E-commerce Websites. Its a top level opensource in E-commerce category.</p>
<p>Now time to explain the problem and the solution of the problem.<span id="more-365"></span></p>
<h4>Problem</h4>
<p>While installing magento on xampp version 2.5 you have provided admin username and password. After installation finished you no longer login with your admin account.</p>
<p>In fact in the &#8220;Log in to Admin Panel&#8221; window whenever you provide wrong password/username combination it displays &#8220;Invalid Username or Password.&#8221; But whenever you provide correct password it does not show anything.</p>
<p>Though a new url like http://127.0.0.1/magento/index.php/admin/index/index/key/d135be4de664ab83db829120740e058a/</p>
<p>is displayed on the address bar.<br />
Click Here for more details :<!--adsense#cronjob--><br />
Everytime you do this you can&#8217;t log in to admin panel.</p>
<h4>Reason of the problem</h4>
<p>Do you know why this problem occures ? The problem occurs because magneto could not store cookies. We run it as localhost and localhost is not true domain but to store cookies we need a domain. That&#8217;s why login stops without saying any word.</p>
<p>Now the time comes for solutions. There are two solutions for this problem which are shown below :</p>
<h4>Solutions</h4>
<p><strong><span style="text-decoration: underline;">First Solution</span></strong><br />
In different forums I saw they mentioned connecting as http://localhost/magento/index.php/admin will fail but if you connect as http://127.0.0.1/magento/index.php/admin it will work. But in my case IP address in the URL did not work too.</p>
<p>I made it work into whenever I changed my browser. Suppose I installed magento using google chrome browser and I open admin url into my firefox window and it worked. Though in the firefox the url http://localhost/magento/index.php/admin did not work, but url http://127.0.0.1/magento/index.php/admin worked fine.</p>
<p><strong><span style="text-decoration: underline;">Second Solution</span></strong></p>
<p>Go to <strong>app/code/core/Mage/Core/Model/Session/Abstract/Varien.php</strong> file within your magento directory.</p>
<p>Find the code:</p>
<div class="code">session_set_cookie_params(<br />
$this-&gt;getCookie()-&gt;getLifetime(),<br />
$this-&gt;getCookie()-&gt;getPath(),<br />
$this-&gt;getCookie()-&gt;getDomain(),<br />
$this-&gt;getCookie()-&gt;isSecure(),<br />
$this-&gt;getCookie()-&gt;getHttponly()<br />
);</div>
<p>and replace with</p>
<div class="code">session_set_cookie_params(<br />
$this-&gt;getCookie()-&gt;getLifetime(),<br />
$this-&gt;getCookie()-&gt;getPath()<br />
//$this-&gt;getCookie()-&gt;getDomain(),<br />
//$this-&gt;getCookie()-&gt;isSecure(),<br />
//$this-&gt;getCookie()-&gt;getHttponly()<br />
);</div>
<p>After this save the file. And try to login into the admin.</p>
<p>I think it will work now.</p>
<p>If you like this post or if you have any query or question then feel free to comment.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 627px; width: 1px; height: 1px;">
<p>Hello Friends !!</p>
<p>Yesterday, when I was starting to work on Magento E-commerce. When I was access Magento after installation, I can&#8217;t logged in Admin section.</p>
<p>After long time serching and research in Magento, finally I found the solution and currently I am able to login to admin section. Today I explain you about the problem and the solution.</p>
<p>First of all, what is Magento ?</p>
<p>Magento is one of the Opensource for E-commerce Websites. Its a top level opensource in E-commerce category.</p>
<p>Now time to explain the problem and the solution of the problem.</p>
<p>Problem</p>
<p>While installing magento on xampp version 2.5 you have provided admin username and password. After installation finished you no longer login with your admin account.</p>
<p>In fact in the &#8220;Log in to Admin Panel&#8221; window whenever you provide wrong password/username combination it displays &#8220;Invalid Username or Password.&#8221; But whenever you provide correct password it does not show anything.</p>
<p>Though a new url like http://127.0.0.1/magento/index.php/admin/index/index/key/d135be4de664ab83db829120740e058a/</p>
<p>is displayed on the address bar.</p>
<p>Everytime you do this you can&#8217;t log in to admin panel.</p>
<p>Reason of the problem</p>
<p>Do you know why this problem occures ? The problem occurs because magneto could not store cookies. We run it as localhost and localhost is not true domain but to store cookies we need a domain. That&#8217;s why login stops without saying any word.</p>
<p>Now the time comes for solutions. There are two solutions for this problem which are shown below :</p>
<p>Solutions</p>
<p>First Solution</p>
<p>In different forums I saw they mentioned connecting as http://localhost/magento/index.php/admin will fail but if you connect as http://127.0.0.1/magento/index.php/admin it will work. But in my case IP address in the URL did not work too.</p>
<p>I made it work into whenever I changed my browser. Suppose I installed magento using google chrome browser and I open admin url into my firefox window and it worked. Though in the firefox the url http://localhost/magento/index.php/admin did not work, but url http://127.0.0.1/magento/index.php/admin worked fine.</p>
<p>Second Solution</p>
<p>Go to app/code/core/Mage/Core/Model/Session/Abstract/Varien.php file within your magento directory.</p>
<p>Find the code:</p>
<p>session_set_cookie_params(<br />
$this-&gt;getCookie()-&gt;getLifetime(),<br />
$this-&gt;getCookie()-&gt;getPath(),<br />
$this-&gt;getCookie()-&gt;getDomain(),<br />
$this-&gt;getCookie()-&gt;isSecure(),<br />
$this-&gt;getCookie()-&gt;getHttponly()<br />
);</p>
<p>and replace with</p>
<p>session_set_cookie_params(<br />
$this-&gt;getCookie()-&gt;getLifetime(),<br />
$this-&gt;getCookie()-&gt;getPath()<br />
//$this-&gt;getCookie()-&gt;getDomain(),<br />
//$this-&gt;getCookie()-&gt;isSecure(),<br />
//$this-&gt;getCookie()-&gt;getHttponly()<br />
);</p>
<p>After this save the file. And try to login into the admin.</p>
<p>I think it will work now.</p>
<p>If you like this post or if you have any query or question then feel free to comment.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.phpgenious.com/2010/02/cant-login-into-admin-panel-of-magento-problem-and-solution/feed/</wfw:commentRss>
		<slash:comments>112</slash:comments>
		</item>
		<item>
		<title>How to use Opencart Admin</title>
		<link>http://www.phpgenious.com/2010/01/how-to-use-opencart-admin/</link>
		<comments>http://www.phpgenious.com/2010/01/how-to-use-opencart-admin/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 12:02:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[opencart]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.phpgenious.com/?p=363</guid>
		<description><![CDATA[Hello Friends !! I have make two sites in Opencart. Opencart is a opensource shopping cart. This is very user friendly and very easy to use. Today, it is become [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Friends !!</p>
<p>I have make two sites in Opencart. Opencart is a opensource shopping cart. This is very user friendly and very easy to use.</p>
<p>Today, it is become very famous to make e-commerce sites. Because its very easy to install and very user friendly to use it.</p>
<p>In any Open source, admin is the main part. And if you understand that how to use admin then you can manage your stie easily.</p>
<p>So for new users of Opencart, I have make one document which gives you the steps for how to use the admin. So please download this document and follow the instructions given in this document.</p>
<p><a href="http://www.phpgenious.com/test/opencart_admin_manual1.doc" target="_blank"><strong>DOWNLOAD</strong></a></p>
<p>Feel free to post comments.</p>
<p>Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpgenious.com/2010/01/how-to-use-opencart-admin/feed/</wfw:commentRss>
		<slash:comments>72</slash:comments>
		</item>
		<item>
		<title>New Open Sorce &#8220;OsDate&#8221; &#8211; Dating and Matchmaking script</title>
		<link>http://www.phpgenious.com/2009/03/new-open-sorce-osdate-dating-and-matchmaking-script/</link>
		<comments>http://www.phpgenious.com/2009/03/new-open-sorce-osdate-dating-and-matchmaking-script/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 08:51:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.phpgenious.com/?p=259</guid>
		<description><![CDATA[Hello Friends !! Today I want to discuss one new point with you. I think you all are familier with joomla. Joomla is a free Open Source CMS which is [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Friends !!</p>
<p>Today I want to discuss one new point with you.</p>
<p>I think you all are familier with joomla. Joomla is a free Open Source CMS which is widly used to make CMS.<br />
<!--adsense#DeleteJQueryRecords--><br />
Same way If you want to develope your Dating or Matrimonial or Couple site, in market there is one new open source available called OsDate.</p>
<p>osDate dating and matchmaking script fully integrates with major bulletin boards (phpBB, vBulletin, etc.) and FlashChat, and provides several payment modules, multiple skins, and free upgrades. The .zip or .tgz downloads below are over 30MB, so please be patient while downloading! Want a different look for your dating site?</p>
<p>You can download absolutely free from this site.</p>
<p>To Download Reffer <a href="http://www.tufat.com/s_free_dating_system.htm">http://www.tufat.com/s_free_dating_system.htm.</a></p>
<p>Currently i am working on this. So if you have any question or problem with this then please comment me.</p>
<p>Thanks&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpgenious.com/2009/03/new-open-sorce-osdate-dating-and-matchmaking-script/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
