mainwp
Forum Replies Created
-
Thanks Nasah, it seems there was a bug introduced in 0.28 if you had Debug turned on. We have updated the code in version 0.28.1 please update and install that version.
That is currently the only way to do it if you choose to use the Unique Security ID feature.
If you have ideas such as this please enter it in the MainWP Ideas site http://ideas.mainwp.com so others can see it and vote on the idea for inclusion.
Thanks
We would be happy to investigate your situation to see exactly where the issue is.
We have no other reports on the Support forum of this so it will be very helpful to trouble shoot with your hosting setup and Theme if you don’t mind.
I notice someone with your username is already signed up for the Members area and I assume it is you (if not please signup and select Free)
Log into the MainWP Members Area and select Help Desk Ticket.
Reference this post and we’ll get someone from the Dev team to work specifically with you and your setup.
Thanks
The best thing to do is check this Doc page for more information What does the Security Issues page fix?
Once again you can ignore the warning if you feel comfortable that your theme has already corrected the issue.
The security check is looking for an index.php page in the directory so that folder contents are not listed. Clicking fix will simply add an empty index.php page or you can ignore the warning if you feel comfortable that your host has already corrected the issue.
Thanks
Thanks for the heads up, it will be updated in the next child version.
Forum: Fixing WordPress
In reply to: Redirect to /wp-adminIf you are always redirecting to the wp-admin and you have no use at all for the front-end of WP you could probably do it using wp_redirect.
Add the wp_redirect to a child theme of your current theme, copying the index.php to the child theme then adding
wp_redirect( home_url('/wp-login.php') ); exit;Add that code right above the themes get_header hook on the index.php page.
Then delete all your posts and pages.
Do note that I have not tested it just a theory that should work and not require multiple plugins.