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…
You usually need to move your blog (WordPress) if you are switching your web host as we generally work on localhost.You must also need to ‘move’ your website if you are transferring it to a new domain, new folder, or creating an alternate version on a local server. After uploading file and updating wp-config.php.We have…
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…
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…
If you want to reset or change xampp mysql password, or have forgot the password for accessing phpMyAdmin then just follow the below step to reset the password or change the password. You can do this by two methods. Method 1 The easiest way is to use the security console, which you can…
If your databases are located on same MySQL server.You don’t need two connections, you can access them both as unique user. You also don’t need to select a DB. Just use the database-name as prefix when specifying the tables. That’s it. Or if you want to select database, you can do Please note there can…