bogdanthewise
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Data base error! ‘/wp_options.MYD’ not foundIf you have access a database management tool like PHPMyAdmin via your host’s control panel, then you could try running table repairs using that.
In the meantime, do you have any database backups you could restore as a last resort?
Forum: Fixing WordPress
In reply to: Can’t log in to WPHeya! If you recently updated WordPress to one of the latest version, this may be related to the issue you are facing.
If it’s not the case, log into the ftp for your account then browse to wp-content subdirectory and temporary disable all your plugins by renaming plugins folder to something different such as plugins_
Then give it another try with the login and see if it works.
Finally, if the login will work, then the issue is around one of the plugins and you can try to disable them one by one, until you will find the one causing the culprit.
Forum: Networking WordPress
In reply to: Multisite Welcome EmailThat really depends. Is your site sending the emails through default sendmail function or you have SMTP enabled ?
Forum: Fixing WordPress
In reply to: classifieds plugin or theme wantedI don’t think a plugin will help. Classified websites are quite complex, so a plugin won’t cover all the functions that a theme may offer. I remember that I was looking for a Classified WordPress theme once and Dolce Classifieds got my intention. Hope this information helps.
Forum: Networking WordPress
In reply to: Your own IP being blocked after moving to multisite?I don’t see how moving to MultiSite may cause this issue. I believe that this may be related to restrictive security they have imposed at the server side. They may be using mod_security, and you are triggering one of the rules. Basically intense activity may be considered a threat for your site.
The other cause may be around a security plugin that you may use. If you are using one, try to temporary disable it and to see if the problematic behaviour will stop.
Finally, your host should help you more with the troubleshooting, it’s their job 🙂
Forum: Networking WordPress
In reply to: 501 Errors on Multisite Network Admin PanelThe issue appears to be related to some line of code in .htaccess file for sure.
Try to replace this code:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ – [L] # add a trailing slash to /wp-admin RewriteRule ^wp-admin$ wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ – [L] RewriteRule ^(wp-(content|admin|includes).*) $1 [L] RewriteRule ^(.*\.php)$ $1 [L] RewriteRule . index.php [L] </IfModule>with
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^wp-admin$ wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^(wp-(content|admin|includes).*) $1 [L] RewriteRule ^(.*\.php)$ $1 [L] RewriteRule . index.php [L]And see if that will fix your issue.
Have you tried contacting your web host, and to ask them to check on the site’s error logs?
If you are using cPanel, you may be able to check on them as well.
1. Login to cPanel
2. Click the Error Log button from within the Logs section of the main panel.
You can now see the most recent errors from your website.
Forum: Fixing WordPress
In reply to: All pages show a 404 error until image upload finishedTry adding the following lines of code to your .htaccess file:
<IfModule mod_security.c> <Files async-upload.php> SecFilterEngine Off SecFilterScanPOST Off </Files> </IfModule>And see how did it go 🙂
Forum: Fixing WordPress
In reply to: Using a domain name containing åäö – impossible?!Try this IDN converter – https://www.punycoder.com/ then see if the domain will be accepted. Hope this helps 🙂