WebHostingHero
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Media Auto Publish] PHP 7 Support?I’ve downloaded version 3.2.2 and now it throws some compatibility errors with PHP 7.2:
FILE: /home/webhero7/public_html/wp-content/plugins/xyz-wp-smap/api/Facebook/PseudoRandomString/McryptPseudoRandomStringGenerator.php ------------------------------------------------------------------------------------------------------------------------------------------------------ FOUND 3 ERRORS AFFECTING 1 LINE ------------------------------------------------------------------------------------------------------------------------------------------------------ 57 | ERROR | Function mcrypt_create_iv() is deprecated since PHP 7.1 and removed since PHP 7.2; Use random_bytes() or OpenSSL instead 57 | ERROR | Extension 'mcrypt' is deprecated since PHP 7.1 and removed since PHP 7.2; Use openssl (preferred) or pecl/mcrypt once available instead 57 | ERROR | The constant "MCRYPT_DEV_URANDOM" is deprecated since PHP 7.1 and removed since PHP 7.2 ------------------------------------------------------------------------------------------------------------------------------------------------------
Forum: Plugins
In reply to: [Minify HTML] White Space Character Before HTML Tags Are Suppressed by ErrorHi Tim,
Indeed, disabling “Support multi-byte UTF-8 encoding” solved the issue.
Thank you!
Stephane
WebHostingHero.comForum: Plugins
In reply to: [Minify HTML] White Space Character Before HTML Tags Are Suppressed by ErrorI should add that only the first space character before each tag is suppressed. If there are two spaces before an HTML tag, only will remain. Here’s another example:
<p>hello <strong>world</strong></p>
Will display this in the source code of the published post (1 space char suppressed):
<p>hello <strong>world</strong></p>
And this will be displayed by the browser:
hello world
Sorry for my english btw.
Forum: Plugins
In reply to: [Social Media Auto Publish] Call to undefined function ereg_replaceWhen do you think it will come out? I’ve switched to PHP7 and had to remove the plugin. Shall I wait or find an alternative?
Forum: Plugins
In reply to: [Social Media Auto Publish] cannot activate Social Media Auto Publish plugYou need to install the Curl extension for PHP on your server.
Is it a cPanel server?
Forum: Plugins
In reply to: [Social Media Auto Publish] Fatal errorThis is because the php MB String module is not installed on your server.
https://forums.cpanel.net/threads/how-do-you-add-php-mbstring-extention-with-cpanel.182491/
Forum: Reviews
In reply to: [Parent Page Filter] Works ok-ish, needs a few tweaksThe issue with $_GET[‘post_type’] is now solved. Please update to 1.0.2.
I will eventually create a GitHub repo for the plugin. Thank you for the suggestion.
Changes made to extension.php will probably be lost during the next update / upgrade.
Instead go to WP Dashboard > AAM > Extensions and disable “AAM Media Manager” by clicking on the green tick.
Forum: Fixing WordPress
In reply to: Strange Dashboard Display Problem when using chromeI have the same problem here. I disabled all the plugins and still had the problem on 3 different WP sites.
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] CSS messed up after updateUse this code if you want to load related.css in the header instead of the footer:
function EnqueueYarppStyle() { wp_enqueue_style('yarppRelatedCss', YARPP_URL.'/style/related.css'); wp_register_style('yarppRelatedCss'); } function DequeueYarppStyle() { wp_dequeue_style('yarppRelatedCss'); wp_deregister_style('yarppRelatedCss'); } add_action('wp_footer', DequeueYarppStyle); add_action('wp_print_styles', EnqueueYarppStyle);
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] CSS messed up after updateTo completely disable Yarpp’s related.css file, put this code in your theme’s functions.php:
function DequeueYarppStyle() { wp_dequeue_style('yarppRelatedCss'); wp_deregister_style('yarppRelatedCss'); } add_action('wp_footer', DequeueYarppStyle);
Forum: Plugins
In reply to: hacked “by real_Karizma “?I’ve been hacked too by the same morons. What I’ve found is this:
– It seems they only replaced “index.php” and “style.css” within the active wordpress theme folder. I can’t confirm this though, I am still investigating.
– They replaced the username and password in the wp_users table.
Try editing the wp_users table and change your user name and email address back to what it was. Go to the WordPress login page and reset your password.
This does not prevent them from defacing your website again though.
Forum: Requests and Feedback
In reply to: [Plugin: NextGEN Gallery] Gallery description text?Can someone please tell me where do I enter the galleries’ description???