helldog2018
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP LoginHi @jtheuriet,
It might be that sending mails from WordPress is having trouble. I know for a fact that most WordPress instances have problem sending e-mails to the same domainname as the website is installed on. So sending from yourwebsite.com to info@yourwebsite.com can give you problems.
To change your password you need to do it manually via phpmyadmin.
http://www.wpbeginner.com/beginners-guide/how-to-reset-a-wordpress-password-from-phpmyadmin/When you have your password back you might want to change the way sending emails work. Take a look at http://www.wpbeginner.com/plugins/how-to-send-email-in-wordpress-using-the-gmail-smtp-server/
Good luck.
Forum: Fixing WordPress
In reply to: No button to add plugins or themesHi @matty11127,
That is probably because you installed a multi-site WordPress.
To install themes and/or plug-ins you need to use the top bar in your back-end.Something like
My sites –> Network admin –> Themes.Let me know if this solves your issue.
Forum: Fixing WordPress
In reply to: Trying to update to PHP 7, compatability issuesHi @thepubcl,
The widgets function need a __construct instead of the functions name.
Below an example of how it probably looks likefunction social_media_widget() { parent::__construct(false, $name = 'Social Media Widget' ); }Change to something like this
function __construct() { parent::__construct(false, $name = 'Social Media Widget' ); }Let us know if this has solved your issue.
Forum: Fixing WordPress
In reply to: Shadow under the headerHi @cedricschweizer,
Add the following code into your style.css
#site-header {box-shadow: 0px 10px 5px #27272780; -webkit-box-shadow: 0px 10px 5px #27272780; -moz-box-shadow: 0px 10px 5px #27272780; position: relative; z-index: 999999;}Let us know if this solves your problem.
Forum: Fixing WordPress
In reply to: Page loading time too long xmlrpc.phpHi @andisman,
The xmlrpc.php is being used to connect different other functions via API with your WordPress installation (example is sending posts by mobile app to your WordPress website).
So it might be possible that multiple plug-ins are trying to use the xmlrpc.php file, which in their turn causes the long waiting.
You can do any of the following solutions:
1. Change the name of the file to something completely different.
2. Add <Files “xmlrpc.php”>
Order Allow,Deny
deny from all
</Files> to your .htaccess file
3. Install the plug-in “Disable XML-RPC Pingback”.Let us know if it solves your long awaiting time.
- This reply was modified 8 years, 1 month ago by helldog2018.
Forum: Fixing WordPress
In reply to: Possible plug in problemHi @chall57444,
There is a possibility an error is occuring because of a just installed plug-in.
To roll back a plug-in is to disable and delete the plug-in, you can do this via FTP.Login into FTP and go to wp-content/plugins find the folder which is being used for the plug-in. Change the name of the folder with _OLD at the end.
This will disable the plug-in being used, test the website if it runs normal again.