• support[@]kurinchilion.com
  • +1 (888) 666-4252

Blog

How to change WordPress admin password in MySQL?

Jan 05, 2019 - by kurinchilamp /MySql/ 376 Views
Step 1: Identify the user id for which you want to change the password Step 2: Issue the below MySQL command to update the password for the selected user update wpgi_users set user_pass=MD5('yourpasswordgoeshere') where wpgi_users.id=1
Continue Reading

How to redirect HTTP website to HTTPS in Laravel?

Jan 03, 2019 - by kurinchilamp // 380 Views
In order to force redirection of your website developed in Laravel from HTTP to HTTPS, you can try adding the following rules in .htaccess file. <fModule mod_rewrite.c> Options -Indexes RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] RewriteRule ^(.*)$ public/$1 [L] </IfModule> Next, look at .env file and modify the value for APP_URL parameter APP_URL=https://yoursite.com
Continue Reading

How to redirect HTTP links to HTTPS in WordPress (Apache)?

Jan 01, 2019 - by kurinchilamp // 317 Views
In order to force redirection of your Wordpress website from HTTP to HTTPS, the key task that you will need to do is to modify .htaccess file that is present in the root of the website directory. If you check your wordpress install, you will have the following code by default in your .htaccess file. <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / # BEGIN WordPress RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> (more…)
Continue Reading

Git: How to add an untracked file back to the repository?

Oct 02, 2017 - by kurinchilamp // 379 Views
If you want to add certain files that was previously removed from Git repository, follow the steps given below. STEP 1: remove the file reference in .gitignore STEP 2: remove the cached reference from git. $ git rm --cached sampleconfig.txt (more…)
Continue Reading

Git: How to make a file not to be tracked in future commits?

Oct 01, 2017 - by kurinchilamp // 375 Views
As a developer, you may come across scenarios when you think that certain SPECIAL files should not be tracked in Git commits. As the first step, commit all changes in your repository and then add those SPECIAL files to .gitignore To remove a file (not delete) from getting tracked in your Git repository use: $ git rm --cached sampleconfig.txt To remove all files that is referenced in your .gitignore use: $ git rm -r --cached . (more…)
Continue Reading

How to run multiple node versions in a computer?

Jul 16, 2017 - by kurinchilamp // 352 Views
Solution is to use Node Version Manager (nvm) which helps manage multiple version of node versions. $ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash To see the list of all available nvm versions, $ nvm ls-remote Currently, Node v6.11.1 has the long term support (Latest LTS: Boron). We will setup that first version $ nvm install 6.11 The above command will install Node.js version 6.11.x (where x will be the last available version number) To find where the node version is installed, type $ nvm which 6.11 As of this writing, the latest version available is v8.1.4 $ nvm install 8.1.4 When nvm installs the corresponding npm package also gets installed. You can switch between different versions of the node by typing $ nvm use 6.11.1 or $ nvm use 8.1.4 To list all the available versions of installed node versions, type $ nvm ls
Continue Reading

TECHNOLOGY DEV STACK

Following are some of the technologies that we use to build and maintain solutions for our clients.