I guess the database tables didn't created during install. You have to re-install Elxis. If you have mysql 5.2 there is a mysql bug with the usage of "TYPE" instead of "ENGINE" term. To solve/type/engine bug on mysql 5.2 do this.Open includes/adodb/adodb-datadict.inc.phpgo to line 590change this:$sql[0] .= ' TYPE=MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci';to this:$sql[0] .= ' ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci';Re-install Elxis after that.
It seems that the problem is with your database user. To prepare a database for elxis to install do the following:- Go to your web hosting control panel and create a new database.- Create a new database user and assign him to the newly created database. This user will have all the required privileges for this database.Now go to elxis installer and install elxis by using the database name, username and password you just created.For your php.ini contact your web hosting provider. The timezone information must always be set in php.in as of php 5.x/6.x, and should never be left empty.