<?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>Absolutely Tech &#187; Web development</title> <atom:link href="http://www.absolutelytech.com/category/web-development/feed/" rel="self" type="application/rss+xml" /><link>http://www.absolutelytech.com</link> <description>Yes!! Its absolutely tech...</description> <lastBuildDate>Fri, 10 Sep 2010 03:09:29 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>[HOWTO] Fix Twitter clients (or PHP scripts) which use basic authentication.</title><link>http://www.absolutelytech.com/2010/09/07/howto-fix-twitter-clients-or-php-scripts-which-use-basic-authentication/</link> <comments>http://www.absolutelytech.com/2010/09/07/howto-fix-twitter-clients-or-php-scripts-which-use-basic-authentication/#comments</comments> <pubDate>Tue, 07 Sep 2010 16:16:04 +0000</pubDate> <dc:creator>Deepak Mittal</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Web development]]></category> <category><![CDATA[API]]></category> <category><![CDATA[basic-authentication]]></category> <category><![CDATA[oauth]]></category> <category><![CDATA[php]]></category> <category><![CDATA[supertweet]]></category> <category><![CDATA[twitter]]></category> <category><![CDATA[twitter clients]]></category><guid isPermaLink="false">http://www.absolutelytech.com/?p=881</guid> <description><![CDATA[As you probably know, Twitter completely ditched basic authentication method on August 31st, 2010. It now supports only OAuth method of authentication which complicates the coding process multiple folds. Scripts which were previously 20 lines long now span several files. While there are numerous advantage of Oauth like client doesn&#8217;t need to know your password, [...]Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/06/06/how-to-find-windows-live-hotmail-contacts-on-twitter/' rel='bookmark' title='Permanent Link: [How-To] Find windows live (hotmail) contacts on twitter'>[How-To] Find windows live (hotmail) contacts on twitter</a></li></ol>]]></description> <wfw:commentRss>http://www.absolutelytech.com/2010/09/07/howto-fix-twitter-clients-or-php-scripts-which-use-basic-authentication/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>[HowTo] Add expires headers to cache static files using htaccess</title><link>http://www.absolutelytech.com/2010/08/02/howto-add-expire-headers-to-cache-static-files-using-htaccess/</link> <comments>http://www.absolutelytech.com/2010/08/02/howto-add-expire-headers-to-cache-static-files-using-htaccess/#comments</comments> <pubDate>Mon, 02 Aug 2010 05:52:23 +0000</pubDate> <dc:creator>Deepak Mittal</dc:creator> <category><![CDATA[Apache]]></category> <category><![CDATA[How-To]]></category> <category><![CDATA[apache]]></category> <category><![CDATA[caching]]></category> <category><![CDATA[expires]]></category> <category><![CDATA[mod_expires]]></category><guid isPermaLink="false">http://www.absolutelytech.com/?p=830</guid> <description><![CDATA[Caching is one of the most important things to keep in mind when you are developing a website which is expected to get large amount of visitors. Most web developers neglect caching, some even don&#8217;t know correct ways to implement it. In this tutorial, I&#8217;ll show you how to enable browser cache of static files [...]Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/08/02/howto-enable-or-disable-modules-in-apache/' rel='bookmark' title='Permanent Link: [HowTo] Enable or disable modules in Apache'>[HowTo] Enable or disable modules in Apache</a></li><li><a href='http://www.absolutelytech.com/2009/06/07/efs/' rel='bookmark' title='Permanent Link: Why not to encrypt your files using EFS or any other encryption'>Why not to encrypt your files using EFS or any other encryption</a></li><li><a href='http://www.absolutelytech.com/2009/09/26/extracting-and-adding-files-from-and-to-rar-and-7z-files/' rel='bookmark' title='Permanent Link: Extracting and adding files from and to Rar and 7z files'>Extracting and adding files from and to Rar and 7z files</a></li></ol>]]></description> <wfw:commentRss>http://www.absolutelytech.com/2010/08/02/howto-add-expire-headers-to-cache-static-files-using-htaccess/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>[HowTo] Enable or disable modules in Apache</title><link>http://www.absolutelytech.com/2010/08/02/howto-enable-or-disable-modules-in-apache/</link> <comments>http://www.absolutelytech.com/2010/08/02/howto-enable-or-disable-modules-in-apache/#comments</comments> <pubDate>Mon, 02 Aug 2010 05:14:47 +0000</pubDate> <dc:creator>Deepak Mittal</dc:creator> <category><![CDATA[Apache]]></category> <category><![CDATA[How-To]]></category> <category><![CDATA[a2dismod]]></category> <category><![CDATA[a2enmod]]></category> <category><![CDATA[apache]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[mods]]></category> <category><![CDATA[ubuntu]]></category><guid isPermaLink="false">http://www.absolutelytech.com/?p=848</guid> <description><![CDATA[You can enable or disable any apache module using a2enmod and a2dismod. You don&#8217;t need to edit the conf file for that unless you are having some problem with this method. The syntax of these commands is really simple: To enable a module: sudo a2enmod module_name To disable a module: sudo a2dismod module_name For instance, [...]Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/08/02/howto-add-expire-headers-to-cache-static-files-using-htaccess/' rel='bookmark' title='Permanent Link: [HowTo] Add expires headers to cache static files using htaccess'>[HowTo] Add expires headers to cache static files using htaccess</a></li><li><a href='http://www.absolutelytech.com/2010/04/18/solved-unable-to-enumerate-usb-device-disabling-ehci_hcd/' rel='bookmark' title='Permanent Link: [Solved] Unable to enumerate USB device (Disabling ehci_hcd)'>[Solved] Unable to enumerate USB device (Disabling ehci_hcd)</a></li><li><a href='http://www.absolutelytech.com/2010/07/01/howto-reset-mysql-root-password-on-ubuntu-when-youve-forgotten-it/' rel='bookmark' title='Permanent Link: [HOWTO] Reset MySQL root password on Ubuntu when you&#8217;ve forgotten it'>[HOWTO] Reset MySQL root password on Ubuntu when you&#8217;ve forgotten it</a></li></ol>]]></description> <wfw:commentRss>http://www.absolutelytech.com/2010/08/02/howto-enable-or-disable-modules-in-apache/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>[HowTo] Check your php and server information using phpinfo()</title><link>http://www.absolutelytech.com/2010/08/01/howto-check-your-php-and-server-information-using-phpinfo/</link> <comments>http://www.absolutelytech.com/2010/08/01/howto-check-your-php-and-server-information-using-phpinfo/#comments</comments> <pubDate>Sun, 01 Aug 2010 07:53:22 +0000</pubDate> <dc:creator>Deepak Mittal</dc:creator> <category><![CDATA[How-To]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[apache]]></category> <category><![CDATA[config]]></category> <category><![CDATA[php]]></category> <category><![CDATA[phpinfo]]></category><guid isPermaLink="false">http://www.absolutelytech.com/?p=832</guid> <description><![CDATA[We can check the php configuration, apache&#8217;s loaded modules and all other kinds of PHP configuration using a simple function called phpinfo(). Create a file called infophp.php in your web&#8217;s root directory and put the following code in it: &#60;? phpinfo&#40;&#41;; ?&#62; This would output all the php configuration info and apache information. You can [...]Related posts:<ol><li><a href='http://www.absolutelytech.com/2009/10/04/installing-a-web-server-package-for-php-development/' rel='bookmark' title='Permanent Link: Installing a web server package for PHP development'>Installing a web server package for PHP development</a></li><li><a href='http://www.absolutelytech.com/2010/06/19/solved-cant-connect-to-local-mysql-server-through-socket-error/' rel='bookmark' title='Permanent Link: [SOLVED] &#8216;Can&#8217;t connect to local MySQL server through socket&#8217; error'>[SOLVED] &#8216;Can&#8217;t connect to local MySQL server through socket&#8217; error</a></li><li><a href='http://www.absolutelytech.com/2010/08/02/howto-enable-or-disable-modules-in-apache/' rel='bookmark' title='Permanent Link: [HowTo] Enable or disable modules in Apache'>[HowTo] Enable or disable modules in Apache</a></li></ol>]]></description> <wfw:commentRss>http://www.absolutelytech.com/2010/08/01/howto-check-your-php-and-server-information-using-phpinfo/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>[HOWTO] Send emails(using mail function) from localhost in PHP through msmtp (using gmail account) on Linux</title><link>http://www.absolutelytech.com/2010/07/18/howto-send-emailsusing-mail-function-from-localhost-in-php-through-msmtp-using-gmail-account-on-linux/</link> <comments>http://www.absolutelytech.com/2010/07/18/howto-send-emailsusing-mail-function-from-localhost-in-php-through-msmtp-using-gmail-account-on-linux/#comments</comments> <pubDate>Sun, 18 Jul 2010 07:08:27 +0000</pubDate> <dc:creator>Deepak Mittal</dc:creator> <category><![CDATA[How-To]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Ubuntu (Linux)]]></category> <category><![CDATA[Web development]]></category> <category><![CDATA[apache]]></category> <category><![CDATA[email]]></category> <category><![CDATA[Gmail]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[localhost]]></category> <category><![CDATA[mail()]]></category> <category><![CDATA[msmtp]]></category> <category><![CDATA[php]]></category> <category><![CDATA[ubuntu]]></category><guid isPermaLink="false">http://www.absolutelytech.com/?p=665</guid> <description><![CDATA[There&#8217;ve been lots of times when I wanted to use the mail() function on my local server. I am sure lots of you would&#8217;ve been wanting it too but most of you would&#8217;ve settled for PHPMailer or just used a web host to test the code instead. I myself had been doing the same until [...]Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/07/17/howto-configure-msmtp-to-work-with-gmail-on-linux/' rel='bookmark' title='Permanent Link: [HowTo] Configure msmtp to work with gmail on linux'>[HowTo] Configure msmtp to work with gmail on linux</a></li><li><a href='http://www.absolutelytech.com/2010/07/20/howto-use-mutt-with-msmtp/' rel='bookmark' title='Permanent Link: [HowTo] Use mutt with msmtp'>[HowTo] Use mutt with msmtp</a></li><li><a href='http://www.absolutelytech.com/2009/05/31/gmail-inbox-full-now-what-ive-a-solution/' rel='bookmark' title='Permanent Link: [HowTo] Forward all gmail mails to new address when you&#8217;ve run out of space'>[HowTo] Forward all gmail mails to new address when you&#8217;ve run out of space</a></li></ol>]]></description> <wfw:commentRss>http://www.absolutelytech.com/2010/07/18/howto-send-emailsusing-mail-function-from-localhost-in-php-through-msmtp-using-gmail-account-on-linux/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>[HOWTO] Validate Email-address in PHP using Regular expressions (the correct way)</title><link>http://www.absolutelytech.com/2010/07/15/howto-validate-email-address-in-php-using-regular-expressions-the-correct-way/</link> <comments>http://www.absolutelytech.com/2010/07/15/howto-validate-email-address-in-php-using-regular-expressions-the-correct-way/#comments</comments> <pubDate>Thu, 15 Jul 2010 06:40:09 +0000</pubDate> <dc:creator>Deepak Mittal</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[email validation]]></category> <category><![CDATA[php]]></category> <category><![CDATA[preg_match]]></category> <category><![CDATA[regex]]></category> <category><![CDATA[regular expression]]></category><guid isPermaLink="false">http://www.absolutelytech.com/?p=671</guid> <description><![CDATA[Here&#8217;s a function which thoroughly checks email-address and returns true for a valid email address and returns false for invalid one. I thought it was worth sharing so I posted it on my blog. You will find the source link at the bottom. 1 2 3 4 5 6 7 8 9 10 11 12 [...]Related posts:<ol><li><a href='http://www.absolutelytech.com/2009/12/14/using-codeigniters-email-library-separately/' rel='bookmark' title='Permanent Link: Using CodeIgniter&#8217;s Email library separately'>Using CodeIgniter&#8217;s Email library separately</a></li><li><a href='http://www.absolutelytech.com/2009/05/31/permanently-moved-to-my-new-web-address/' rel='bookmark' title='Permanent Link: Permanently moved to my new web address'>Permanently moved to my new web address</a></li><li><a href='http://www.absolutelytech.com/2009/05/31/gmail-inbox-full-now-what-ive-a-solution/' rel='bookmark' title='Permanent Link: [HowTo] Forward all gmail mails to new address when you&#8217;ve run out of space'>[HowTo] Forward all gmail mails to new address when you&#8217;ve run out of space</a></li></ol>]]></description> <wfw:commentRss>http://www.absolutelytech.com/2010/07/15/howto-validate-email-address-in-php-using-regular-expressions-the-correct-way/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>[HOWTO] Use local phpmyadmin with remote MySQL</title><link>http://www.absolutelytech.com/2010/06/22/howto-use-local-phpmyadmin-with-remote-mysql/</link> <comments>http://www.absolutelytech.com/2010/06/22/howto-use-local-phpmyadmin-with-remote-mysql/#comments</comments> <pubDate>Tue, 22 Jun 2010 16:33:43 +0000</pubDate> <dc:creator>Deepak Mittal</dc:creator> <category><![CDATA[MySQL]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[Ubuntu (Linux)]]></category> <category><![CDATA[database]]></category> <category><![CDATA[db]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[localhost]]></category> <category><![CDATA[phpymadmin]]></category> <category><![CDATA[remote]]></category> <category><![CDATA[remote-mysql]]></category> <category><![CDATA[ubuntu]]></category><guid isPermaLink="false">http://www.absolutelytech.com/?p=426</guid> <description><![CDATA[My host recently started allowing remote connections to its mysql database. It was a really useful feature &#8211; I could not change database settings from my own computer. Since it started allowing remote connections from my IP, I could use any mysql client to connect to it. I fired up terminal and tried to connect [...]Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/06/19/solved-cant-connect-to-local-mysql-server-through-socket-error/' rel='bookmark' title='Permanent Link: [SOLVED] &#8216;Can&#8217;t connect to local MySQL server through socket&#8217; error'>[SOLVED] &#8216;Can&#8217;t connect to local MySQL server through socket&#8217; error</a></li><li><a href='http://www.absolutelytech.com/2010/07/01/howto-reset-mysql-root-password-on-ubuntu-when-youve-forgotten-it/' rel='bookmark' title='Permanent Link: [HOWTO] Reset MySQL root password on Ubuntu when you&#8217;ve forgotten it'>[HOWTO] Reset MySQL root password on Ubuntu when you&#8217;ve forgotten it</a></li><li><a href='http://www.absolutelytech.com/2010/04/06/how-to-back-up-all-mysql-databases/' rel='bookmark' title='Permanent Link: [HOW-TO] Back up all MySQL databases'>[HOW-TO] Back up all MySQL databases</a></li></ol>]]></description> <wfw:commentRss>http://www.absolutelytech.com/2010/06/22/howto-use-local-phpmyadmin-with-remote-mysql/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>[SOLVED]&#8216;Error establishing a database connection&#8217; in wordpress</title><link>http://www.absolutelytech.com/2010/06/19/solvederror-establishing-a-database-connection-in-wordpress/</link> <comments>http://www.absolutelytech.com/2010/06/19/solvederror-establishing-a-database-connection-in-wordpress/#comments</comments> <pubDate>Sat, 19 Jun 2010 01:44:45 +0000</pubDate> <dc:creator>Deepak Mittal</dc:creator> <category><![CDATA[Web development]]></category> <category><![CDATA[database]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[php]]></category> <category><![CDATA[sql]]></category> <category><![CDATA[wordpress]]></category><guid isPermaLink="false">http://www.absolutelytech.com/?p=413</guid> <description><![CDATA[One of my clients got this error in his wordpress: Error establishing a database connection It is one of those vague errors which give very little information about what caused it. On going to /wp-admin, it gave error: One or more database tables are unavailable. The database may need to be repaired. I added &#8220;define(&#8216;WP_ALLOW_REPAIR&#8217;, [...]Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/02/13/solved-error-saving-media-attachment-error-in-wordpress/' rel='bookmark' title='Permanent Link: [Solved] &#8220;Error saving media attachment.&#8221; error in WordPress'>[Solved] &#8220;Error saving media attachment.&#8221; error in WordPress</a></li><li><a href='http://www.absolutelytech.com/2010/06/19/solved-cant-connect-to-local-mysql-server-through-socket-error/' rel='bookmark' title='Permanent Link: [SOLVED] &#8216;Can&#8217;t connect to local MySQL server through socket&#8217; error'>[SOLVED] &#8216;Can&#8217;t connect to local MySQL server through socket&#8217; error</a></li><li><a href='http://www.absolutelytech.com/2010/06/30/solved-error-dpkg-error-processing-filename-unpack-trying-to-overwrite/' rel='bookmark' title='Permanent Link: [SOLVED] Error &#8216;dpkg: error processing &lt;filename&gt; (&#45;&#45;unpack) trying to overwrite&#8230;'>[SOLVED] Error &#8216;dpkg: error processing &lt;filename&gt; (&#45;&#45;unpack) trying to overwrite&#8230;</a></li></ol>]]></description> <wfw:commentRss>http://www.absolutelytech.com/2010/06/19/solvederror-establishing-a-database-connection-in-wordpress/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>[SOLVED] &#8216;Can&#8217;t connect to local MySQL server through socket&#8217; error</title><link>http://www.absolutelytech.com/2010/06/19/solved-cant-connect-to-local-mysql-server-through-socket-error/</link> <comments>http://www.absolutelytech.com/2010/06/19/solved-cant-connect-to-local-mysql-server-through-socket-error/#comments</comments> <pubDate>Sat, 19 Jun 2010 01:30:49 +0000</pubDate> <dc:creator>Deepak Mittal</dc:creator> <category><![CDATA[Ubuntu (Linux)]]></category> <category><![CDATA[Web development]]></category> <category><![CDATA[10.10]]></category> <category><![CDATA[maverick meerkat]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[phpmyadmin]]></category> <category><![CDATA[socket]]></category> <category><![CDATA[ubuntu]]></category><guid isPermaLink="false">http://www.absolutelytech.com/?p=411</guid> <description><![CDATA[Yesterday I got the error: ERROR 2002 (HY000): Can&#8217;t connect to local MySQL server through socket &#8216;/var/run/mysqld/mysqld.sock&#8217; (2) when I ran the command mysql through terminal in Ubuntu 10.10 This error can also be linked to error in phpmyadmin: Connection for controluser as defined in your configuration failed. I figured out it was due to [...]Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/07/01/howto-reset-mysql-root-password-on-ubuntu-when-youve-forgotten-it/' rel='bookmark' title='Permanent Link: [HOWTO] Reset MySQL root password on Ubuntu when you&#8217;ve forgotten it'>[HOWTO] Reset MySQL root password on Ubuntu when you&#8217;ve forgotten it</a></li><li><a href='http://www.absolutelytech.com/2010/06/22/howto-use-local-phpmyadmin-with-remote-mysql/' rel='bookmark' title='Permanent Link: [HOWTO] Use local phpmyadmin with remote MySQL'>[HOWTO] Use local phpmyadmin with remote MySQL</a></li><li><a href='http://www.absolutelytech.com/2009/07/19/solution-to-mysql-server-has-gone-away-problem/' rel='bookmark' title='Permanent Link: Solution to &ldquo;MySQL Server Has Gone Away&rdquo; Problem'>Solution to &ldquo;MySQL Server Has Gone Away&rdquo; Problem</a></li></ol>]]></description> <wfw:commentRss>http://www.absolutelytech.com/2010/06/19/solved-cant-connect-to-local-mysql-server-through-socket-error/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Passing variable number of arguments to a function in PHP</title><link>http://www.absolutelytech.com/2010/04/14/passing-variable-number-of-arguments-in-php/</link> <comments>http://www.absolutelytech.com/2010/04/14/passing-variable-number-of-arguments-in-php/#comments</comments> <pubDate>Wed, 14 Apr 2010 02:57:43 +0000</pubDate> <dc:creator>Deepak Mittal</dc:creator> <category><![CDATA[Tips and tricks]]></category> <category><![CDATA[Web development]]></category> <category><![CDATA[functions]]></category> <category><![CDATA[func_get_arg]]></category> <category><![CDATA[func_num_args]]></category> <category><![CDATA[php]]></category><guid isPermaLink="false">http://www.absolutelytech.com/?p=369</guid> <description><![CDATA[We all know about functions and how we can pass arguments to it. But did you know that we can pass variable number of arguments in a function? Consider a function sum() which adds numbers passed into its arguments. Now we want it to add all the numbers passed onto the arguments. Eg; if we [...]Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/07/18/howto-send-emailsusing-mail-function-from-localhost-in-php-through-msmtp-using-gmail-account-on-linux/' rel='bookmark' title='Permanent Link: [HOWTO] Send emails(using mail function) from localhost in PHP through msmtp (using gmail account) on Linux'>[HOWTO] Send emails(using mail function) from localhost in PHP through msmtp (using gmail account) on Linux</a></li><li><a href='http://www.absolutelytech.com/2009/07/19/solution-to-mysql-server-has-gone-away-problem/' rel='bookmark' title='Permanent Link: Solution to &ldquo;MySQL Server Has Gone Away&rdquo; Problem'>Solution to &ldquo;MySQL Server Has Gone Away&rdquo; Problem</a></li><li><a href='http://www.absolutelytech.com/2010/08/01/howto-check-your-php-and-server-information-using-phpinfo/' rel='bookmark' title='Permanent Link: [HowTo] Check your php and server information using phpinfo()'>[HowTo] Check your php and server information using phpinfo()</a></li></ol>]]></description> <wfw:commentRss>http://www.absolutelytech.com/2010/04/14/passing-variable-number-of-arguments-in-php/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)
Database Caching 224/470 queries in 3.216 seconds using disk
Object Caching 10530/10716 objects using disk

Served from: www.absolutelytech.com @ 2010-09-10 04:05:16 -->