After restoring the config.php file, these are the errors I get once I run the installer:
A PHP Error was encountered
Severity: Notice
Message: Undefined variable: DB
Filename: updates/ud_009.php
Line Number: 40
A PHP Error was encountered
Severity: Notice
Message: Trying to get property of non-object
Filename: updates/ud_009.php
Line Number: 40
A PHP Error was encountered
Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at /Applications/XAMPP/xamppfiles/htdocs/[SYSTEM NAME]/codeigniter/system/core/Exceptions.php:170)
Filename: core/Common.php
Line Number: 409
A Database Error Occurred
Error Number: 1060
Duplicate column name 'can_search'
ALTER TABLE exp_member_groups ADD COLUMN can_search char(1) NOT NULL default 'n'
Filename: updates/ud_009.php
Line Number: 112
And the reason I get these error messages is because the installer completely wipes out my config file and replaces the content with this:
<?php if ( ! defined('BASEPATH')) exit('Invalid file request');
$config['site_url'] = "http://localhost/[NAME OF SITE].dev/";
$config['app_version'] = "0";
?>
I then change the app version to “222”.
The installer then prompts me with:
ExpressionEngine Installation and Update Wizard
You are now running the most current version of ExpressionEngine!
I then restore the remainder of the contents of the config.php file and proceed to remove the installer folder as instructed.
Which produces similar error messages as I included in the first post:
A PHP Error was encountered
Severity: Warning
Message: strlen() expects parameter 1 to be string, object given
Filename: libraries/Auth.php
Line Number: 240
A PHP Error was encountered
Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at /Applications/XAMPP/xamppfiles/htdocs/[SYSTEM NAME]/codeigniter/system/core/Exceptions.php:170)
Filename: core/Common.php
Line Number: 409
A Database Error Occurred
Error Number: 1054
Unknown column 'salt' in 'field list'
UPDATE `exp_members` SET `salt` = 'X:!l=cZQJ&\'#;![i]8[i5LO4kGHmyxUIXNn(hS3S~p]a|;{]{pGCe+(;-6E@>C57KQiV8gYB;ZeWJg#SIBDjk\'3UIxXHAqxI(+g,wFb4[86m-sC{8KhvU7c_e%wHw_El', `password` = '0cb33ecd1f945296701a4a3a54ab650dafb4b117e209d5c6d5515a5e50d867053dbd8db9b82a997d18070727ec2457f3ad0c8bafeaf45ccde384da4eff7aa855' WHERE `member_id` = 1
Filename: libraries/Auth.php
Line Number: 271
I would greatly appreciate some help here.