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

Tags

Setting up Laragon on Windows – an alternative to XAMPP, WAMP

Apr 04, 2024 - by kurinchilamp / / Post Comment
Setting up Laragon on Windows is a straightforward process. Laragon is a portable, isolated, fast, and powerful development environment for PHP, Node.js, Python, and Ruby applications. It comes with Apache, MySQL, PHP, and other essential tools pre-configured, making it easy to set up a local development environment. (more…)
Continue Reading

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

Jan 01, 2019 - by kurinchilamp / / Post Comment
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

Django: Permission denied access to / because search permissions are missing on a component of the path

Jul 23, 2015 - by kurinchilamp / / Post Comment
Possible reasons and solutions i) SELinux settings enforcing a file serve $ /etc/selinux/config Change SELINUX = disabled within the file and check if this is the cause for the error ii) Application directory under restricted user permission folder path For example, configuring the django project inside /root folder and trying to serve those files via apache server (apache user). Try changing the folder to a path that you think is good for allowing public access such /var/www or /opt/sites . (more…)
Continue Reading

Apache webserver (httpd) service installation on CentOS 7 Linux

Jul 20, 2015 - by kurinchilamp / Linux Server / Post Comment
First set up the httpd (web) service $ yum install httpd If httpd service is already installed, update the service $ yum update httpd Now, start the web server $ service httpd start Redirecting to /bin/systemctl start httpd.service Check the status of the web server $ service httpd status (more…)
Continue Reading

How to set apache server error status codes for beginners

Jun 03, 2015 - by kurinchilamp / / Post Comment
Edit Apache configuration file for your site setting. It may be httpd.conf or a virtual host file that ends with .conf specific to your site. Add the below line with the host file and give the correct path for the error message page. ErrorDocument 404 /404.html If you do not want to create a custom page to showcase the error message, you can simply add the error message in the configuration file ErrorDocument 404 "404 - Page not found." Error status codes on the client side 400 - Bad Request 401 - Unauthorized 402 - Payment Required 403 - Forbidden 404 - Not Found 405 - Method Not Allowed 406 - Not Acceptable 407 - Proxy Authentication Required 408 - Request Timeout 409 - Conflict 410 - Gone 411 - Length Required 412 - Precondition Failed 413 - Request Entity Too Large 414 - Request-URI Too Long 415 - Unsupported Media Type 416 - Requested Range Not Satisfiable 417 - Expectation Failed Error status codes shown from server 500 - Internal Server Error 501 - Not Implemented 502 - Bad Gateway 503 - Service Unavailable 504 - Gateway Timeout 505 - HTTP Version Not Supported
Continue Reading

PHP Fatal error: Class ‘DOMDocument’ not found

Jul 22, 2014 - by kurinchilamp / / Post Comment
When setting up applications such as Magento you may come across the error message "PHP Fatal error: Class 'DOMDocument' not found ..." in your apache server log files Reason for the error is missing log files. Issue the commands below to fix the issue $ yum -y install php-xml php-devel $ service httpd reload
Continue Reading

TECHNOLOGY DEV STACK

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