Cropping, rotating, scaling image sizes, and flipping the images vertically or horizontally in wordpress
Cropping, rotating, scaling image sizes, and flipping the images vertically or horizontally in WordPress   Generally we have lot of images in our website and we need different sized images, but generally in WordPress we have 3 sized images called as Small, Middle and Actual or Full size.   We can also scale down an… (6 comments)

Remove index.php from CodeIgniter URL Path using .htaccess
If you are using Codeigniter (PHP Framework) you are noticed that by default index.php will be included with your URL.   But you can easily remove index.php from your URL so that your URL should be like : http://yourdomainname.com/controller/action/var1/var2   To do this just follows the following steps:   1. Open config.php from system/application/config directory… (2 comments)

How to install ioncube loader in xampp
1. Find your PHP version using phpinfo() function. You should need to know the version when you download the ionCube loaders.   x86/ppc/sparc packages are for 32 bit systems; x86-64/ppc64 packages are for 64 bit systems.   The Windows non-TS Loaders are for use on a Windows system where a phpinfo() page shows that PHP… (1 comment)

Set up multiple virtual hosts on XAMPP for windows
You just have to update the following files: X:\xampp\apache\conf\extra\httpd-vhosts.conf   First of all,  uncomment the following line to enable name based virtual host on your server’s port 80: NameVirtualHost *:80   Then you can start adding your virtual hosts. The following listing is just a sample, I usually do.I am assuming ,we create a project…