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

Blog

jq – command-line tool for parsing and formatting JSON

May 27, 2022 - by kurinchilamp // 398 Views
jq is a lightweight command-line tool for parsing and formatting JSON data. We can use this tool to extract the data based on the keys used and can limit the number of objects displayed. (more…)
Continue Reading

AH00558: httpd: Could not reliably determine the server’s fully qualified domain name, using ServerName.local.

Sep 09, 2019 - by kurinchilamp // 432 Views
Open a terminal to edit /etc/apache2/httpd.conf $ sudo vi /etc/apache2/httpd.conf Search for the variable "ServerName" in the editor. If commented, uncomment it and add it to the httpd.conf file ServerName localhost Then, restart the web server. (more…)
Continue Reading

PHP scripts are not getting executed from Apache on Windows/Mac

Aug 30, 2019 - by kurinchilamp // 421 Views
To enable any packages or to run PHP from apache $ sudo vi /private/etc/apache2/httpd.conf If PHP scripts are not executing, first check if the relevant version of the PHP module is enabled in httpd config settings (somewhere in the middle of the file). You may need sudo permission to save any file settings. LoadModule php7_module libexec/apache2/libphp7.so Then, restart the server $ sudo apachectl -k restart
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: Reset local branch to make it the same as remote branch master

Feb 22, 2017 - by kurinchilamp // 380 Views
Go to your local repository in bash $ git fetch origin $ git reset --hard origin/master To clean and remove untracked files and directories $ git clean -fdx
Continue Reading

TECHNOLOGY DEV STACK

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