Hi guys, I don’t know if it is of any helpto your issue, but what happened to my wp-config.php is just this:
after its own ithemes settings and comments, the new updated version 6.9.0 just closed automatically the ?> php tag, leaving all the WordPress settings lingering just as plain text comments.
I removed the ?> closing tag and all went normal.
Though since I didn’t like ithemes settings on top of my wp-config.php I moved them at the bottom, so if it happens is just closing the php markup at the end without causing any problem.
<?php
// BEGIN iThemes Security - Do not modify or remove this line
// iThemes Security Config Details: 2
define( 'FORCE_SSL_ADMIN', true ); // Force SSL for Dashboard - Security > Settings > Secure Socket Layers (SSL) > SSL for Dashboard
define( 'DISALLOW_FILE_EDIT', true ); // Disable File Editor - Security > Settings > WordPress Tweaks > File Editor
// END iThemes Security - Do not modify or remove this line?>
....
the rest of my code was below this point
note the // END iThemes Security – Do not modify or remove this line?>
Hope this helps.
G.
-
This reply was modified 6 years, 9 months ago by Giorgio25b. Reason: code typo
-
This reply was modified 6 years, 9 months ago by Giorgio25b. Reason: code typo
-
This reply was modified 6 years, 9 months ago by Giorgio25b.