helldog2018
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress hacked – How to Remove new URLs I didn’t createHi @justcam,
I am not sure, but I think your website still has an old sitemap.xml file which have these pages still inside them. If so, refresh the sitemap.xml and test again.
Forum: Fixing WordPress
In reply to: weird sys msg repeated on my websiteI believe these messages are created because of your plug-in Seo Wizard.
Disable this plug-in and try a different SEO plugin.I prefer to use Yoast.
Let us know if this fixes your issue.Forum: Fixing WordPress
In reply to: Blog Post looping incorrectlyHi @donrucastle,
In style.css add:
.blog_post_list {height: 350px;}Let us know if this solves your issue.
Forum: Fixing WordPress
In reply to: Not access to full dashboardHi @timefliesus,
What you are seeing is profile on the left menu side. If you are administrator you should see users.
Are you sure you have the correct role to add/edit stuff?
If so, did you make a multi-site installation or single wordpress installation?Forum: Fixing WordPress
In reply to: Post editing page not working, java errorsHi @jcnordyke,
Try the following:
Open wp-config.php in your FTP and add the line
define('CONCATENATE_SCRIPTS', false);Test your backend again.
If this is not working check your php.ini if magic_quotes is enabled.
If so disable it.Let us know if this solved your issue.
Forum: Fixing WordPress
In reply to: Trying to update to PHP 7, compatability issuesHi @thepubcl,
What is happening here:
The dl() function is opening an extension (bounce) for the mailpoet plugin. As dl() has been deprecated (even completely disabled) you need to insert these extensions directly into your php.ini to make it work and then disable the pieces of code using the dl() function.
I think the best way to try is ask your hostingparty.If you are not using the bounce function within Mailpoet you can try the following for bounce.php
/*if (function_exists(‘dl’)) { //We will try to load it on the fly $fatalMessage = ‘The system tried to load dynamically the ‘ . $EXTENSION . ‘ extension’; $fatalMessage .= ‘<br/>If you see this message, that means the system could not load this PHP extension’; $fatalMessage .= ‘<br/>Please enable the PHP Extension ‘ . $EXTENSION; ob_start(); echo $fatalMessage; //This method could cause a fatal error, but we will still display some messages in that case. //dl($EXTENSION); $warnings = str_replace($fatalMessage, ”, ob_get_clean()); if (extension_loaded(‘imap’) OR function_exists(‘imap_open’)) return true;*/pear.php
/*function loadExtension($ext) { if (!extension_loaded($ext)) { // if either returns true dl() will produce a FATAL error, stop that if ((ini_get(‘enable_dl’) != 1) || (ini_get(‘safe_mode’) == 1)) { return false; } if (OS_WINDOWS) { $suffix = ‘.dll’; } elseif (PHP_OS == ‘HP-UX’) { $suffix = ‘.sl’; } elseif (PHP_OS == ‘AIX’) { $suffix = ‘.a’; } elseif (PHP_OS == ‘OSX’) { $suffix = ‘.bundle’; } else { $suffix = ‘.so’; } //return @dl(‘php_’.$ext.$suffix) || @dl($ext.$suffix); } return true;*/Last bit of pear.php:
`function __construct($message = ‘unknown error’, $code = null,
$mode = null, $options = null, $userinfo = null)’Let me know if anything changes.
According to Mailpoet everything should be functioning normal, but because your system is not going anywhere forward we need to disable the bounce part completely.- This reply was modified 8 years, 1 month ago by helldog2018.
Forum: Fixing WordPress
In reply to: 400 Bad Request ErrorI have no idea why you deleted your post.. But calling me a spammer for a so called affiliated URL? I have no affiliate websites, and I am certainly not spamming.
Some people realy do want to help others.
Thank you!- This reply was modified 8 years, 1 month ago by helldog2018.
Forum: Fixing WordPress
In reply to: Trying to update to PHP 7, compatability issuesYou can show them both svp.
Both files have same issue: Function dl()Forum: Fixing WordPress
In reply to: Trying to update to PHP 7, compatability issuesHi,
This is probably the same issue as the other widget, can you show me what is inside public_html/wp-content/plugins/wysija-newsletters/helpers/bounce.php?
Forum: Fixing WordPress
In reply to: Trying to update to PHP 7, compatability issuesYour welcome, happy that it solved your issue regarding the widget.
I have no idea what the compatibility issues are with Mailpoet, but if you have an error report, I am happy to take a look.Forum: Fixing WordPress
In reply to: Trying to update to PHP 7, compatability issuesHi there,
try editing the code to:
function __construct() { /* Widget settings. */ $widget_ops = array( ‘classname’ => ‘sgwindow_socialicons’, ‘description’ => __(‘Display Social Media Links.’, ‘sg-window’ )); /* Widget control settings. */ $control_ops = array( ‘width’ => 250, ‘height’ => 250, ‘id_base’ => ‘sgwindow_socialicons_widget’); /* Create the widget. */ parent::__construct( ‘sgwindow_socialicons_widget’, __(‘SG Social Media Icons’, ‘sg-window’ ), $widget_ops, $control_ops );Forum: Fixing WordPress
In reply to: site/author/[name author] blank page/404Hi @myrax,
Have you tried changing the .htaccess to .htaccess_OLD and THEN reset permalinks?
Might be an .htaccess issue.Forum: Fixing WordPress
In reply to: Verwijderen publicatie aantal hitsHi @arendjan,
This ain’t no normal reaction, my guess is that one of your plug-ins is adding this before the content.
Maybe try to disable plug-ins, activate one by one and refresh the page to see if anything is changing.Else check the page in the back-end and see if there has anything been added before the content.
Cheers.
Forum: Fixing WordPress
In reply to: Page loading time too long xmlrpc.phpHi @forgardening,
I have no idea what you are talking about. Tested your website on Pingdom https://tools.pingdom.com/#!/bTSiLa/https://forgardening.org/
Loading time of a little more then 1 second, and no xml files are loading at all.
I don’t think you have the same issue.
To even further your websites speed, try a smush plug-in to smaller the images on your website.Edit: Maybe you think your website still has the same issue because you have a caching plug-in enabled? For me it’s the first time checking the website. Clear cache if so and test again.
- This reply was modified 8 years, 1 month ago by helldog2018.
Forum: Fixing WordPress
In reply to: Changing Hyperlink ColorHi @katielems,
Try the following please:
.single-post a {color: #0000ff;}And to only edit the colors inside the post, you need to change the code to:
.single-post .post-content a {color: #0000ff;}Cheers.
- This reply was modified 8 years, 1 month ago by helldog2018.
- This reply was modified 8 years, 1 month ago by helldog2018.