Maciej Krawczyk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changed WP URL and now cant reach backendIt’s strange, modifiyng wp-config shouldn’t give you internal server error, it’s more likely changes to htaccess did that.
WordPress didn’t change any files, it changed database entries. You can change the site options with your theme’s functions.php file. Revert changes in htaccess and wp-config and put this to functions.php of your active theme:
update_option(‘siteurl’,’https://example.com’);
update_option(‘home’,’https://example.com’);Forum: Fixing WordPress
In reply to: Changed WP URL and now cant reach backendTry adding this to .htaccess
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ https://www.domain.com/$1 [L,R=301]Remember about domain name, this should redirect non-www urls to www. You need this anyway, so visitors will always be redirected to the link with www, even if they access your site with no www.
If it doesn’t work and you still can’t access wp-admin, you can restore the old url by putting this into wp-config.php
define(‘WP_HOME’,’https://example.com’);
define(‘WP_SITEURL’,’https://example.com’);
More info here:
https://codex.www.ads-software.com/Changing_The_Site_URLForum: Fixing WordPress
In reply to: Changed WP URL and now cant reach backendHave you made the changes in .htaccess too?
Forum: Fixing WordPress
In reply to: best cahching pluginDisable javascript minification and see how it goes.
Forum: Plugins
In reply to: [IPBlock] IPBlock 1.1 Breaks Admin InterfaceThank you. I submitted the fix.
Thank you for your feedback! Please consider making a thread about it in the support forum, so I can look into the problem. Personally I have never had WindowPress crash, so I won’t be able to fix this without your help.
So when I update description, I should update both trunk and newest tag readme.txt?
Then please explain to me, how is it possible that I changed my plugin’s description 12 hours ago and it’s still not visible on the site.