The best WordPress plugins – visibility – seo – functional
WPTouch Adds a mobile formatted version of your WordPress install for users that happen to browse to your website using a mobile device such as an iPhone, iPod, or Android device. WP Realtime Sitemap Provides an easy to install human readable HTML sitemap to whichever page or post you would like. SEO Slugs Automatically removes [...]
Zend Framework – Moving your database connection outside of the application.ini file
Why would someone want to place their database connection settings within the unsecured application.ini configuration file? Why this is the default setting is beyond my own logic as it gives your users an open door to easily access and destroy your back office storage. Moving your database configuration settings to an external PHP file is [...]
Add Zend Framework full page cache to your bootstrap
Insert the function below into your bootstrap file. // full page cache protected function _initCache() { $dir = "location you would like to store cached pages"; $frontendOptions = array( ‘lifetime’ => 3600, ‘content_type_memorization’ => true, ‘default_options’ => array( ‘cache’ => true, ‘cache_with_get_variables’ => true, ‘cache_with_post_variables’ => true, ‘cache_with_session_variables’ => true, ‘cache_with_cookie_variables’ => true, ), ‘regexps’ [...]
Stripping audio from a video using FFMPEG for MP3, OGG, or other formats
Everyone has wanted to grab the audio portion of a video at one point or another. Whether to get the audio from a music video, concert, or even a lecture. The ability to separate audio data from video data can be darned handy. Before you can begin you will have to install FFMPEG. This guide [...]
keep looking »
