<?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>Pixel Insert &#187; Blog</title> <atom:link href="http://pixert.com/category/blog/feed/" rel="self" type="application/rss+xml" /><link>http://pixert.com</link> <description>DESIGN . DEVELOP . PUBLISH</description> <lastBuildDate>Sat, 17 Jul 2010 01:08:01 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <atom:link rel='hub' href='http://pixert.com/?pushpress=hub'/> <item><title>Script timeout passed, if you want to finish import, please resubmit same file and import will resume in phpMyAdmin</title><link>http://pixert.com/script-timeout-passed-if-you-want-to-finish-import-please-resubmit-same-file-and-import-will-resume-in-phpmyadmin/</link> <comments>http://pixert.com/script-timeout-passed-if-you-want-to-finish-import-please-resubmit-same-file-and-import-will-resume-in-phpmyadmin/#comments</comments> <pubDate>Sat, 17 Jul 2010 01:08:01 +0000</pubDate> <dc:creator>katemag</dc:creator> <category><![CDATA[Blog]]></category><guid
isPermaLink="false">http://pixert.com/?p=1217</guid> <description><![CDATA[I was uploading a sql statement of 108MB file to MySQL via phpMyAdmin in on WAMPSERVER. I got &#8220;Script timeout passed, if you want to finish import, please resubmit same file and import will resume&#8221;.  phpMyAdmin then cancelled my upload because it reached time out again How to solve it? 1. Edit php.ini. You can [...]Related posts:<ol><li><a
href='http://pixert.com/increasing-phpmyadmin-import-php-upload-size-limit/' rel='bookmark' title='Permanent Link: Increasing phpMyAdmin import or PHP upload size limit'>Increasing phpMyAdmin import or PHP upload size limit</a></li><li><a
href='http://pixert.com/enable-linked-table-in-phpmyadmin/' rel='bookmark' title='Permanent Link: Enable Linked Table in phpMyAdmin'>Enable Linked Table in phpMyAdmin</a></li><li><a
href='http://pixert.com/a-thing-you-should-do-before-import-wordpress-xml-file/' rel='bookmark' title='Permanent Link: A Thing You Should Do Before Import WordPress XML File'>A Thing You Should Do Before Import WordPress XML File</a></li></ol>]]></description> <wfw:commentRss>http://pixert.com/script-timeout-passed-if-you-want-to-finish-import-please-resubmit-same-file-and-import-will-resume-in-phpmyadmin/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Enable Linked Table in phpMyAdmin</title><link>http://pixert.com/enable-linked-table-in-phpmyadmin/</link> <comments>http://pixert.com/enable-linked-table-in-phpmyadmin/#comments</comments> <pubDate>Fri, 16 Jul 2010 15:22:25 +0000</pubDate> <dc:creator>katemag</dc:creator> <category><![CDATA[Blog]]></category><guid
isPermaLink="false">http://pixert.com/?p=1201</guid> <description><![CDATA[I upgraded WAMPSERVER in a local PC yesterday. The latest WampServer 2.0i includes Apache 2.2.11, MySQL 5.1.36 and PHP 5.3.0. I was getting this error in the main of phpMyAdmin bundled with WAMPSERVER, The additional features for working with linked tables have been deactivated. To find out why click here When I clicked the link, [...]Related posts:<ol><li><a
href='http://pixert.com/installing-phpmyadmin-outside-cpanel-or-plesk/' rel='bookmark' title='Permanent Link: Installing phpMyAdmin outside CPanel or Plesk'>Installing phpMyAdmin outside CPanel or Plesk</a></li><li><a
href='http://pixert.com/script-timeout-passed-if-you-want-to-finish-import-please-resubmit-same-file-and-import-will-resume-in-phpmyadmin/' rel='bookmark' title='Permanent Link: Script timeout passed, if you want to finish import, please resubmit same file and import will resume in phpMyAdmin'>Script timeout passed, if you want to finish import, please resubmit same file and import will resume in phpMyAdmin</a></li><li><a
href='http://pixert.com/how-to-access-subversion-from-windows/' rel='bookmark' title='Permanent Link: How to access Subversion from Windows'>How to access Subversion from Windows</a></li></ol>]]></description> <wfw:commentRss>http://pixert.com/enable-linked-table-in-phpmyadmin/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Complete .htaccess directives for redirect www to non-www and vice versa</title><link>http://pixert.com/complete-htaccess-directives-for-redirect-www-to-non-www-and-vice-versa/</link> <comments>http://pixert.com/complete-htaccess-directives-for-redirect-www-to-non-www-and-vice-versa/#comments</comments> <pubDate>Sun, 27 Jun 2010 04:02:00 +0000</pubDate> <dc:creator>katemag</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[CPanel]]></category> <category><![CDATA[CentOS/RHEL]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Plesk]]></category> <category><![CDATA[freeBSD]]></category> <category><![CDATA[htaccess]]></category> <category><![CDATA[linux]]></category><guid
isPermaLink="false">http://pixert.com/?p=1186</guid> <description><![CDATA[# Redirect if NOT www.example.com (exactly) to www.example.com RewriteCond %{HTTP_HOST} . RewriteCond %{HTTP_HOST} !^www\.example\.com RewriteRule (.*) http://www.example.com/$1 [R=301,L] -or- # Redirect if example.com (case-insensitive) to www.example.com RewriteCond %{HTTP_HOST} ^example\.com [NC] RewriteRule (.*) http://www.example.com/$1 [R=301,L] I want to do the opposite, i.e. redirect www to non-www # Redirect if NOT example.com (exactly) to example.com RewriteCond %{HTTP_HOST} [...]Related posts:<ol><li><a
href='http://pixert.com/www-to-non-www-vice-versa-resolv-are-not-running-in-parallel/' rel='bookmark' title='Permanent Link: www to non www (vice versa) resolv are not running in parallel'>www to non www (vice versa) resolv are not running in parallel</a></li><li><a
href='http://pixert.com/redirect-subdomain-to-another-ip-address-or-url/' rel='bookmark' title='Permanent Link: Redirect Subdomain to another ip address or url'>Redirect Subdomain to another ip address or url</a></li><li><a
href='http://pixert.com/redirect-wordpress-page-post-to-tumblr/' rel='bookmark' title='Permanent Link: Redirect WordPress Page or Post to Tumblr'>Redirect WordPress Page or Post to Tumblr</a></li></ol>]]></description> <wfw:commentRss>http://pixert.com/complete-htaccess-directives-for-redirect-www-to-non-www-and-vice-versa/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>www to non www (vice versa) resolv are not running in parallel</title><link>http://pixert.com/www-to-non-www-vice-versa-resolv-are-not-running-in-parallel/</link> <comments>http://pixert.com/www-to-non-www-vice-versa-resolv-are-not-running-in-parallel/#comments</comments> <pubDate>Sun, 20 Jun 2010 19:54:47 +0000</pubDate> <dc:creator>katemag</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[CPanel]]></category> <category><![CDATA[CentOS/RHEL]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Plesk]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[htaccess]]></category> <category><![CDATA[linux]]></category><guid
isPermaLink="false">http://pixert.com/?p=1193</guid> <description><![CDATA[I was using woorank.com, a website analysis tool to analyzed a site(I&#8217;m sorry, I changed the real domain name to xxxx.com to protect it) when I found out that their Website Compliance report said &#8220;Be careful! Your website without www doesn&#8217;t redirect to www (or the opposite). It&#8217;s duplicate content!&#8221; It showed &#8220;Be sure that http://xxxxx.com and http://www.xxxxx.com [...]Related posts:<ol><li><a
href='http://pixert.com/complete-htaccess-directives-for-redirect-www-to-non-www-and-vice-versa/' rel='bookmark' title='Permanent Link: Complete .htaccess directives for redirect www to non-www and vice versa'>Complete .htaccess directives for redirect www to non-www and vice versa</a></li><li><a
href='http://pixert.com/redirect-subdomain-to-another-ip-address-or-url/' rel='bookmark' title='Permanent Link: Redirect Subdomain to another ip address or url'>Redirect Subdomain to another ip address or url</a></li><li><a
href='http://pixert.com/mytop-mysql-monitoring-tools/' rel='bookmark' title='Permanent Link: MyTop, mysql monitoring tools'>MyTop, mysql monitoring tools</a></li></ol>]]></description> <wfw:commentRss>http://pixert.com/www-to-non-www-vice-versa-resolv-are-not-running-in-parallel/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>WordPress 3.0</title><link>http://pixert.com/wordpress-3-0/</link> <comments>http://pixert.com/wordpress-3-0/#comments</comments> <pubDate>Sat, 19 Jun 2010 07:02:55 +0000</pubDate> <dc:creator>katemag</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[Wordpress]]></category><guid
isPermaLink="false">http://pixert.com/?p=1166</guid> <description><![CDATA[A comprehesive look at WordPress 3.0 Related posts:Self-signed SSL Login with WordPress for iPhone Disable WordPress Feed A Thing You Should Do Before Import WordPress XML FileRelated posts:<ol><li><a
href='http://pixert.com/self-signed-ssl-login-with-wordpress-for-iphone/' rel='bookmark' title='Permanent Link: Self-signed SSL Login with WordPress for iPhone'>Self-signed SSL Login with WordPress for iPhone</a></li><li><a
href='http://pixert.com/disable-wordpress-feed/' rel='bookmark' title='Permanent Link: Disable WordPress Feed'>Disable WordPress Feed</a></li><li><a
href='http://pixert.com/a-thing-you-should-do-before-import-wordpress-xml-file/' rel='bookmark' title='Permanent Link: A Thing You Should Do Before Import WordPress XML File'>A Thing You Should Do Before Import WordPress XML File</a></li></ol>]]></description> <wfw:commentRss>http://pixert.com/wordpress-3-0/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/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 97/157 queries in 0.517 seconds using disk

Served from: pixert.com @ 2010-07-29 13:41:22 -->