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…
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…
Environment variables windows Environment variables are a set of dynamic named values that can affect the way running processes will behave on a computer. You can say, It is a dynamic “object” that stores a value, which in turn can be referenced by one or more software programs in Windows (OS). Environment variables…
PHP 5.3.0 introduces two new error levels named as E_DEPRECATED and E_USER_DEPRECATED. The E_DEPRECATED error level is used to indicate that a function or feature has been deprecated. The E_USER_DEPRECATED level is intended for indicating deprecated features in user code, similarly to the E_USER_ERROR and E_USER_WARNING levels. The following is a list…
Set file permissions with .htaccess, this is a great method for ensuring the CHMOD settings for various file types. Apply the following rules in the root .htaccess file to affect all specified file types, or place in a specific directory to affect only those files (add/update file types according to your needs) Require SSL…