nrmnslvstr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Creating a local copy from a manual backup1.) it has something to do with your wp.config. If you established a connection meaning your on the right track but that doesnt end here. You’ll need to update urls too to avoid links into your live site.
You can do manual SQL or use WP tool Export/Import.
via SQL:UPDATE wp_posts SET post_content = REPLACE(post_content,’http://www.yoursite.com’,’http://localhost/foldername’);
UPDATE wp_posts SET guid = REPLACE(guid,’http://www.yoursite.com’,’http://localhost/foldername’)
UPDATE wp_options SET option_value = REPLACE(option_value,’http://www.yoursite.com’,’http://localhost/foldername’);via Import/Export
into your editor (ie. notepad++) ctrl+f and do find and replace all link to your localhost link and then save, then import it.
Forum: Fixing WordPress
In reply to: Can't remove page that turned a blog archiveMaybe you do have a file named archive-kurssit.php? Content inside it will be shown when you have that category. Template Hierarchy thingy.
Forum: Fixing WordPress
In reply to: All plugins disabled, huge loading times.is this into all of your pages? try using Query Monitor Plugin
You can see if there are slow queries or duplicate queries into your database.Forum: Fixing WordPress
In reply to: WordPress restoreTry to restore your backup first, then with regards to Administrator account, go dig into your database again. For more detailed How-to, Follow the step-by-step process in this link http://www.wpbeginner.com/wp-tutorials/how-to-add-an-admin-user-to-the-wordpress-database-via-mysql/
Forum: Fixing WordPress
In reply to: editing the code of the widgetI think your plugin has a filter for that icon, try some editing.
BTW, what is the plugin you are using?