Hi!
It seems that the configuration.php file wasn't written to disk during the last step of Akeeba Backup Installer's restoration procedure, causing this issue.
The easiest workaround is to repeat the restoration process. Go through the usual restoration process and take a look at the last page of Akeeba Backup Installer. If it tells you that the configuration.php file wasn't written to disk, it presents you a gray text area with the contents of the configuration.php that it was unable to write. In this case, download your configuration.php file, edit it with a plain text editor (depending on your Operating System, good candidates include Notepad, GEdit, Fraise) and
replace its contents with the contents of the gray box. Then, upload the configuration.php file back to your site's root, go back to Kickstart and click on Clean Up.
If that didn't work, you will have to do some manual editing. Edit your site's configuration.php file. Your configuration.php consists of several lines. Each one is in the following form:
var $key = "value";
The key is the name of the configuration variable and value (inside double quotes!) is the value of the variable. Below is a list of the configuration variables which have to be modified to get up on-line:
dbtype is the database driver Joomla! will use. It can be either mysql or mysqli (notice the extra i in the end). If unsure, your best bet is mysql.
host is the database host name, usually localhost. If that doesn't work, try 127.0.0.1. If that still doesn't work, ask your host.
user is the database user name, assigned from your host company
password is - obviously - the database password, assigned from your host company
db is the database's name, assigned from your host company
dbprefix is the database table name prefix; on most Joomla! 1.5/1.6 sites it is jos_. You can find it out by looking at your database using phpMyAdmin and seeing what is the common part all table names begin with. Important: bak_ are backup copies of your table and should NEVER be used as your site's prefix.
live_site (this is an optional setting) Normally this is an empty string. If, however, your Joomla! site's front page looks as if all images and CSS files are not loading, you have to modify it and enter your site's base URL. For example, if the new site is located in http://www.example.com/mysite/, you have to locate the line starting with var $live_site and change it to become:
var $live_site = "http://www.example.com/mysite";
Important: Do NOT include the trailing slash.
That's all! You're good to go.
If you get stuck, please do not hesitate to post back so that I can further assist you.
Nicholas K. Dionysopoulos
Lead Developer and Director
🇬🇷Greek: native 🇬🇧English: excellent 🇫🇷French: basic • 🕐 My time zone is Europe / Athens
Please keep in mind my timezone and cultural differences when reading my replies. Thank you!