Programming

Use Dropbox as CDN for FREE !!!

0

Dropbox recently  introduce new feature by which its easy to make a public link. By this we just though why not copy all the statics files of our website like images, css and javascript files in public folder of Dropbox.

Now use this public link in your website to give a effect of CDN (Content delivery network). This will help us to take the advantages of awesome Dropbox service of fast delivery of files.

Try out and let us know. We are already in phase of implementing it on our Websites.

Click here to get your free Dropbox account today.

PHP Basics – How to disable notice and warning in PHP.ini file

0

To disable notice and warning in PHP is quite easy to do, but easy to forget how to do it ;)

Just open right php.ini file (VERY IMPORTANT to find RIGHT php.ini file) search for line error_reporting under “Error handling and logging” section and give variable as E_ALL & ~E_NOTICE & ~E_WARNING

Line should look like this:

error_reporting = E_ALL & ~E_NOTICE & ~E_WARNING

restart webserver (Apache in most case) and you are done. Now you will not get those pesky notice and warning messages :)

 

Go to Top