derweili
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Website Not showing, Dashboard Not showingWhat happens if you log in? The login field is still working:
https://dailyindependentnig.com/wp-login.phpThe 404 Page is also still working: https://dailyindependentnig.com/readme.html
So maybe there is a error with the permalinks. (try to rename the .htaccess)
Also check the site’s error log, as esmi already wrote and try to turn on the wp_debug mode on, so wordpress displays error messages.
To do so, download the wp-config.php search for “wp_debug”, replace false with true. and reupload the file.Forum: Fixing WordPress
In reply to: no admin passwordThe best way is to get access to a admin account. To do so, reset the password via the mysql database.
Therefore go to the _users table, select the admin user and click edit. Then paste a new md5 encoded password to the user_pass field.To update wordpress without admin access, you have to delete every file except:
/wp-content/ – Folder
wp-config.phpThen download the latest wordpress version, unzip it and upload all files (except the wp-content folder).
Forum: Hacks
In reply to: Tags styling problem!You are using singe single quotation marks inside single quotation marks. This won’t work.
Try this instead:
$output .= '<li class="item"><a href="'. get_tag_link($tag->term_id) .'" style="background-image: url(\'/wp-content/uploads/tags/' . $tag->slug . '.jpg\')"><span class="item-name"><span class="count">'. $tag->count .'</span><span class="item-name">'. $tag->name . '</span></span></a></li>';
Forum: Fixing WordPress
In reply to: Redirect my /blog back to my latest postsThere are different ways how you can do this.
The best one ist set up a htaccess redirect, but if you are nor familiar with this, I would recommend you to use a plugin.
There are several redirection-plugins out there, for example: RedirectionForum: Localhost Installs
In reply to: Error establishing a database connectionIs Your Database running (Can you see the “M” on the app icon)?
If yes:
Did you enter the right database host, port, name, username and password?
The default settings of MAMP are:
host: localhost
port: 8889
database name: the one you created
username: root
password rootForum: Plugins
In reply to: [Cache Enabler] Safe for WooCommerceOk, thank you. I’ll give it a try.
Forum: Fixing WordPress
In reply to: Migrated site, but when upload image, it still goes to a wrong paghI don’t know the way iThemes Security renames the folder but here you can find a way to do this manually:
https://www.hongkiat.com/blog/renaming-wordpress-wp-content-folder/
If you could do this reverse, it may fix your problem.The Login with WordPress functions is added by the jetpack Plugin. You just have to deactivate this function in Jetpack settings.
You can read here how to rename the register button:
https://www.ads-software.com/support/topic/wp_register-how-do-i-change-the-text-linkForum: Fixing WordPress
In reply to: Can't add code to format commentsIt could may be that your server filters the requests as Spam/Hacking attempt, because of the html code in it.
Maybe you hoster can give you more informations about this.Forum: Fixing WordPress
In reply to: How to add a picture to blogYou need to add open Graph data to you head. So google or facebook knows which image to use.
There are serveral plugins out there. Try a search for open graph plugins.
I often use wordpress seo by yoast.Forum: Fixing WordPress
In reply to: Locked myself out of adminyes but usually you functions.php begins with <?php so just place is the line beneath <?php
Forum: Fixing WordPress
In reply to: Locked myself out of adminYou can simply disable the BPS Security and WordFence by by renaming the respective folder in wp-content/plugins/
The best way to reset the password is by changing it in the database.
Forum: Fixing WordPress
In reply to: Locked myself out of adminGo to the base directory of you installation
wp-content/themes/your-theme-directory/
then download the functions.php
pase the code I wrote above right after this line:
<?php
Forum: Fixing WordPress
In reply to: Locked myself out of adminOk,
I’m not familiar with Network Solutions. Do you have access to you database (phpMyAdmin)?You could also reset the password via ftp:
paste this into your themes function php:
wp_set_password( 'password', 1 );
‘password’ ist the new password
the number needs to be the User ID. By default 1After you then are able to login, make sure to go back and remove that code. It will reset your password on every page load until you do.
Forum: Fixing WordPress
In reply to: Can't add code to format commentsIt could be that your theme disabled this funcion. To find out, change the theme.