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

Blog

PHP: Warning: Module “zip” is already loaded in Unknown

Nov 22, 2023 - by kurinchilamp // 626 Views
In order to solve the issue, we need to find out what all PHP .ini files are getting loaded up as part of the webserver setup. (more…)
Continue Reading

How to write a simple calculator plugin in WordPress?

Oct 17, 2023 - by kurinchilamp // 304 Views
In this short tutorial, we will learn to how to create a simple WordPress plugin step by step and to have the plugin activated from the WordPress dashboard. Important names are highlighted to help ease the tutorial navigation. (more…)
Continue Reading

Steps to update WordPress using the WordPress Command Line Interface (WP-CLI)

Feb 01, 2023 - by kurinchilamp // 264 Views
SSH into your server: Connect to your server using SSH and navigate to the root directory of your WordPress installation. Update WP-CLI: Make sure that you have the latest version of WP-CLI installed. You can update it by running the following command: wp cli update. Check WordPress version: Run the following command to check the current version of WordPress installed on your site: wp core version. (more…)
Continue Reading

phpMyAdmin – The configuration file now needs a blowfish secret passphrase

Mar 18, 2022 - by kurinchilamp /MySql/ 328 Views
Configuration file in phpmyadmin will require a blowfish_secret to be set. Ensure to check if the below line is has the needed value. (more…)
Continue Reading

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

Aug 30, 2019 - by kurinchilamp // 399 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 // 361 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

TECHNOLOGY DEV STACK

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