first time usage error after set params in welcome screen

edited September 2017 in Installation
At startup installed zip at C:\xampp\htdocs\CMS\CI\FUEL-CMS-master got welcome screen at http://localhost/CMS/CI/FUEL-CMS-master/ after changed some attributes as instructions said like never got welcome screen again... chrome browser but when opened IE11 http://localhost/CMS/CI/FUEL-CMS-master/fuel/login/ here appear login possibly due to cookies in Chrome not appear ... but welcome screen like http://localhost/CMS/CI/FUEL-CMS-master/ same message as chrome below... any help please?

changes // also connected DB
==========================================================
RewriteBase /CMS/CI/FUEL-CMS-master/
==========================================================
$config['base_url'] = "http://localhost/CMS/CI/FUEL-CMS-master/";
==========================================================
$db['default'] = array(
'dsn' => '',
'hostname' => 'localhost',
'username' => 'root',
'password' => '',
'database' => 'fuelcms',
==========================================================
// path to the fuel admin from the web base directory... MUST HAVE TRAILING SLASH!
$config['fuel_path'] = 'fuel/';

// the name to be displayed on the top left of the admin
$config['site_name'] = 'My Website';

// whether the admin backend is enabled or not
$config['admin_enabled'] = TRUE;

// options are cms, views, and auto.
// cms pulls views and variables from the database,
// views mode pulls views from the views folder and variables from the _variables folder,
// and the auto option will first check the database for a page and if it doesn't exist or is
// not published, it will then check for the corresponding view file.
$config['fuel_mode'] = 'auto';
==========================================================



Import has been successfully finished, 34 queries executed. (fuel_schema.sql)
Error
SQL query:


/*!40000 ALTER TABLE `fuel_permissions` DISABLE KEYS */
MySQL said: Documentation

#1100 - Table 'pma__tracking' was not locked with LOCK TABLES


http://localhost/CMS/CI/FUEL-CMS-master/fuel/login/
A Database Error Occurred

Error Number: 1146

Table 'fuelcms.fuel_users' doesn't exist

SHOW FULL COLUMNS FROM `fuel_users`

Filename: C:/xampp/htdocs/CMS/CI/FUEL-CMS-master/fuel/modules/fuel/core/MY_DB_mysqli_driver.php

Line Number: 156


http://localhost/CMS/CI/FUEL-CMS-master/
A Database Error Occurred

Error Number: 1146

Table 'fuelcms.fuel_users' doesn't exist

SELECT fuel_pages.*, fuel_users.user_name, fuel_users.first_name, fuel_users.last_name, fuel_users.email, CONCAT(fuel_users.first_name, fuel_users.last_name) AS full_name FROM `fuel_pages` LEFT JOIN `fuel_users` ON `fuel_users`.`id` = `fuel_pages`.`last_modified_by` WHERE `fuel_pages`.`location` = 'home' AND `fuel_pages`.`published` = 'yes' ORDER BY `location` desc LIMIT 1

Filename: C:/xampp/htdocs/CMS/CI/FUEL-CMS-master/fuel/modules/fuel/core/MY_Model.php

Line Number: 478

Comments

Sign In or Register to comment.