Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../var/softacul.../bbpress
File: notes.txt
1. The following files _wpconfig.php and .htaccess have to be configured if the user selects to install with Multisite and also the multisite.sql should be made with the new tables that are created after configuring the Multisite Option.
[0] Fix | Delete
The guide to install Multisite Manually :
[1] Fix | Delete
https://wordpress.org/support/article/create-a-network/
[2] Fix | Delete
[3] Fix | Delete
2. (101, 'rewrite_rules', '', 'yes'), Keep it blank, WordPress generates it automatically
[4] Fix | Delete
[5] Fix | Delete
3. In multisite sql
[6] Fix | Delete
After Configuring the Network, dump the SQL before logging in.
[7] Fix | Delete
[8] Fix | Delete
4. The multisite.sql is the whole SQL file and also remove the INSERTS in the Options table that are made after login i.e from 'CRON' except
[9] Fix | Delete
INSERT INTO `[[dbprefix]]options` VALUES
[10] Fix | Delete
(100, 'rewrite_rules',''), Keep it blank, WordPress generates it automatically
[11] Fix | Delete
(115, 'can_compress_scripts', '0', 'yes');
[12] Fix | Delete
also change the AUTO INCREMENT as it is in the dumped SQL of Original database.
[13] Fix | Delete
[14] Fix | Delete
5. Remove inserts in the sitemeta table after "active_sitewide_plugins" in MU
[15] Fix | Delete
[16] Fix | Delete
6. (14, 1, 'session_tokens', 'a:1:{s:64:"e5043af8ebbd5602c6df6fca2ab4f7a7f09d80484487b1a1698c449455dc8f9a";i:1416717670;}'), and
[17] Fix | Delete
(17, 1, 'community-events-location', 'a:1:{s:2:"ip";s:11:"";}'), will be created in usermeta table. If doesn't then create token and add it.
[18] Fix | Delete
7. From 4.5.1 we detect if the server has capability to use utf8mb4, we have changed define('DB_CHARSET', 'utf8mb4'); to define('DB_CHARSET', '[[utf8]]'); in both config file and updated COLLATE utf8mb4_unicode_ci to [[collate]] in both sql from 4.2.2
[19] Fix | Delete
[20] Fix | Delete
8. While manual installation keep root writable and configure .htaccess as _htaccess.
[21] Fix | Delete
[22] Fix | Delete
9. configure [[permalink_structure]] only in wp.sql. Not in multisite.sql.
[23] Fix | Delete
[24] Fix | Delete
10. _index.php is our file no need to change it.
[25] Fix | Delete
[26] Fix | Delete
11. Remove Storage ENGINE "ENGINE=InnoDB" from all the CREATE TABLE queries in wp.sql and multisite.sql as WordPress sets the storage engine based on the default set in the MySQL Server.
[27] Fix | Delete
[28] Fix | Delete
12. when we add/delete a plugin update the edit.php and edit.xml file.
[29] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function