Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
titleLicense Information

If you do not have a license key, you will be able to activate a free trial during the installation process directly. If you have previously purchased a license key, you will be able to enter it during the installation process.

System Configuration

There are a number of configuration settings that may be set before or after installation.

Removing index.php from URLs

To remove index.php edit the .htaccess provided in the root directory of your Blesta installation, to appear as follows:

Code Block
title.htaccess
firstline1
linenumberstrue
########################################################
# package: minPHP
# filename: .htaccess
########################################################
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php

RewriteRule ^(.*)install.php$ $1/install [R=301,L]

Next, update init.php located in /installpath/lib/init.php as follows:

Code Block
languagephp
titleinit.php
firstline25
linenumberstrue
define("HTACCESS", true);