<wp-config.php should be kept because you will need the info from it even if you want to replace it with a v.2.6.x file.>
Perhaps, I can substitute my old WordPress 2.2 wp-config.php with the WordPress 2.6 to save on having to edit the WordPress 2.6.
But I there is https://codex.www.ads-software.com/Upgrading_WordPress_Extended
If there is not a SECRET_KEY define statement in your wp-config.php file, add one. Beginning with Version 2.5, a SECRET_KEY for salting (strengthening) user passwords was added to the wp-config.php file. To improve the chances your user passwords are not ‘hacked’ here’s an example of the line to add to your wp-config.php file:
(‘SECRET_KEY’, ‘RF63k93hb9shj3klvbn37sjd9a9n”‘); // Change this to a unique phrase.
I guess I should copy and paste data from my old WordPress 2.2 wp-config.php file into the WordPress 2.6 wp-config.php file.
Delete the old WordPress files on your site, but DO NOT DELETE
wp-config.php file;
wp-content folder; Special Exception: the wp-content/cache and the wp-content/plugins/widgets folders should be deleted.
wp-images folder;
wp-includes/languages/ folder–if you are using a language file do not delete that folder;
.htaccess file–if you have added custom rules to your .htaccess, do not delete it;
robots.txt file–if your blog lives in the root of your site (ie. the blog is the site) and you have created such a file, do not delete it.
In your Administration panel, under the Plugins choice, deactivate any Plugins. Because of the changes to WordPress, some Plugins may conflict with the upgrade process.
<If you meant you drop/delete the tables – then that’s OK, that will delete your existing blog from the DB.>
Yes, I meant to drop/delete the tables which would delete the contents.
Thank you for the https://codex.www.ads-software.com/Upgrading_WordPress_Extended link
and your replies to my post.