Ask the community if you have any question about PHP,
MySQL, Apache and Linux for quick answers!!!

Archive for July, 2011

Google is now in content delivery network (CDN) market

Google has launched another performance centric service i.e. Page Speed Service. It seems to be the content delivery service which other CDNs are providing with a difference by doing some performance tuning i.e. concatenating CSS and some other tasks which are also performed by Google's mod_pagespeed. By providing this service, Google will always have updated content for its services like Google search and AdSense. Let's see how Google plan this service future.

Comments

Setting a php.ini directive in .htaccess to apply only to one .php file

Yesterday I needed to increase the value of upload_max_filesize for a site's admin script/page while other pages of the size didn't require that. It is really easy to do it by using Apache's Files directive in .htaccess for a specific file with the below code.

<Files my.php>
php_value upload_max_filesize 10M
</Files>

Comments