<?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>Optimize &#8211; Techawaken</title>
	<atom:link href="https://www.techawaken.com/tag/optimize/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.techawaken.com</link>
	<description>Techawaken shares articles and experience in PHP, MySql, Magento,Joomla, Wordpress, JQuery, Javascript etc.</description>
	<lastBuildDate>Tue, 24 Nov 2015 19:08:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to move the JS file includes to footer in Magento</title>
		<link>https://www.techawaken.com/move-js-file-includes-footer-magento/</link>
				<comments>https://www.techawaken.com/move-js-file-includes-footer-magento/#respond</comments>
				<pubDate>Sat, 14 Nov 2015 19:07:06 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[Magento 1.x]]></category>
		<category><![CDATA[Magento Enterprise 1.x]]></category>
		<category><![CDATA[Optimize]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=717</guid>
				<description><![CDATA[<p>In order to reduce the initial load time of page, it is recommended to move all the <strong>JS</strong> includes in the <strong>&#60;head&#62;</strong> section of web page to the footer. Lets see how we can do it in Magento.</p>
<p><strong><span style="text-decoration: underline;">Step 1:</span> Add Layout Updates</strong></p>
<p>Create a child block of <strong>"before_body_end"</strong> named <strong>"foot"</strong> similar to the head block in <strong><em>local.xml</em></strong> file as shown below:</p>
<pre>

&#60;?xml version=&#34;1.0&#34; ?&#62;
&#60;layout version=&#34;0.1.0&#34;&#62;
&#60;default&#62;
&#60;reference name=&#34;before_body_end&#34;&#62;
&#60;block type=&#34;page/html_head&#34; name=&#34;foot&#34; as=&#34;foot&#34; after=&#34;-&#34; template=&#34;page/html/foot.phtml&#34;/&#62;
&#60;/reference&#62;
&#60;/default&#62;
&#60;/layout&#62;

</pre>

<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/add-js-css-file-home-page-magento/" rel="bookmark" title="How to add a JS or CSS file only on Home page in Magento">How to add a JS or CSS file only on Home page in Magento </a></li>
<li><a href="https://www.techawaken.com/disable-admin-notification-popup-window-magento/" rel="bookmark" title="How to disable admin notification popup window in Magento?">How to disable admin notification popup window in Magento? </a></li>
<li><a href="https://www.techawaken.com/display-products-category-cms-static-block/" rel="bookmark" title="How to display products from a category in a CMS static block">How to display products from a category in a CMS static block </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/move-js-file-includes-footer-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How to enable &#8220;Magento Profiler&#8221; and use it to identify Magento Performance bottlenecks</title>
		<link>https://www.techawaken.com/enable-magento-profiler-identify-magento-performance-bottlenecks/</link>
				<comments>https://www.techawaken.com/enable-magento-profiler-identify-magento-performance-bottlenecks/#respond</comments>
				<pubDate>Mon, 19 May 2014 17:42:38 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[Magento 1.x]]></category>
		<category><![CDATA[Optimize]]></category>
		<category><![CDATA[Profiler]]></category>
		<category><![CDATA[Profiling]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=514</guid>
				<description><![CDATA[Magneto comes with a very useful debugging tool for developers called<strong> "Profiler"</strong>. It can be used to identify issues in your code making the website slow. The Magento "Profiler" reports the time taken by block of code under test to execute, the number of times the block of code executed and the memory used by it while rendering a Magento web page.

By default Magento Profiler is disabled, let see how to enable it.

<strong>How to enable "Profiler" in Magento?</strong>

To enable "Profiler" in Magento, you have to go through 2 parts:

<em><strong>Part A</strong></em>

1) Go to Admin &#62;&#62; System &#62;&#62; Configuration.

2) Under the "Advanced" tab, click the "Developer" link to open the developer section.

3) Now expand the "Debug" block and select "Yes" in the Profiler dropdown.

4) If you are debugging in a live environment then its better to restrict the profiler output display to the developers only so that customers browsing your website do not see any differences on the frontend. To do so expand the "Developer Client Restrictions" block and add the developer IPs comma separated in the text box provided.

5) Save the configuration.<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/disable-local-modules-easily-magento/" rel="bookmark" title="How to disable all local modules easily in Magento">How to disable all local modules easily in Magento </a></li>
<li><a href="https://www.techawaken.com/clean-magento-database-logs-faster-performance/" rel="bookmark" title="Clean up Magento database logs for Faster Performance">Clean up Magento database logs for Faster Performance </a></li>
<li><a href="https://www.techawaken.com/disable-admin-notification-popup-window-magento/" rel="bookmark" title="How to disable admin notification popup window in Magento?">How to disable admin notification popup window in Magento? </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/enable-magento-profiler-identify-magento-performance-bottlenecks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How to Optimize a MySQL Database using phpMyAdmin?</title>
		<link>https://www.techawaken.com/optimize-mysql-database-phpmyadmin/</link>
				<comments>https://www.techawaken.com/optimize-mysql-database-phpmyadmin/#respond</comments>
				<pubDate>Sun, 06 Apr 2014 15:18:20 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Optimize]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[Table]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=480</guid>
				<description><![CDATA[Optimizing Table in database is just like the doing Disk Defragmentation in your PC.

Optimize Table should be used if you have deleted a large part of a table or if you have made many changes to a table with variable length rows, such as VARCHAR, TEXT, BLOB or VARBINARY columns. Deleted rows are maintained in the linked list and insert operations reuse the old row positions. You can use "Optimize Table" to reclaim unused space and defragment the data file for optimal performance. If a lot of changes have been made to a table, optimizing the table can sometimes significantly improve performance.<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/importing-large-database-2-mb-phpmyadmin/" rel="bookmark" title="Importing large database (&gt; 2 MB) using phpMyAdmin">Importing large database (> 2 MB) using phpMyAdmin </a></li>
<li><a href="https://www.techawaken.com/clean-magento-database-logs-faster-performance/" rel="bookmark" title="Clean up Magento database logs for Faster Performance">Clean up Magento database logs for Faster Performance </a></li>
<li><a href="https://www.techawaken.com/installing-magento-with-sample-database/" rel="bookmark" title="Installing Magento with sample database">Installing Magento with sample database </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/optimize-mysql-database-phpmyadmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Clean up Magento database logs for Faster Performance</title>
		<link>https://www.techawaken.com/clean-magento-database-logs-faster-performance/</link>
				<comments>https://www.techawaken.com/clean-magento-database-logs-faster-performance/#comments</comments>
				<pubDate>Fri, 13 Dec 2013 17:54:05 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Clean]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Log]]></category>
		<category><![CDATA[Magento 1.x]]></category>
		<category><![CDATA[Optimize]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=425</guid>
				<description><![CDATA[Magento maintains several log tables for tracking purpose like customer access, products viewed, products compared etc. These tables grow in size day by day so if you have a large numbers of visitors on your website the size of these log tables may become large enough within a week slowing down your database. So you should perform database log cleaning on a regular basis - daily/weekly/monthly depending upon your website traffic.

There are three ways to clean out these tables:

1. Log Cleaning in the Magento Admin

2. Shell Utility log.php in the ../shell directory, and

3. Manually via phpMyAdmin or mysql client<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/deleting-test-orders-magento/" rel="bookmark" title="Deleting test orders in Magento">Deleting test orders in Magento </a></li>
<li><a href="https://www.techawaken.com/order-address-edit-log-not-maintained-in-magento-enterprise-edition/" rel="bookmark" title="Order address edit log not maintained in Magento Enterprise edition">Order address edit log not maintained in Magento Enterprise edition </a></li>
<li><a href="https://www.techawaken.com/running-magento-indexer-from-command-line-shell/" rel="bookmark" title="Running Magento indexer from command line (shell)">Running Magento indexer from command line (shell) </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/clean-magento-database-logs-faster-performance/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
							</item>
	</channel>
</rss>
