yitwail
Forum Replies Created
-
@zodiac1978 I uploaded a php file that contains
add_filter( 'auto_update_plugin', '__return_false' );
to wp-content/mu-plugins then restored a backup
I hope that’s an adequate workaround.I have the same problem. In my case, it’s upgrading to 3.5.8.4
@wfpeter, in my original post I mentioned I had already contacted the data center, limestone networks, and their response was,
It seems issue with remote “noc1.wordfence.com” security setting/policy which is in-accessible from external network and from your given server.
Is it possible that our server IP is blacklisted by your firewall? If so, is there anyway to check that, and perhaps have the IP whitelisted?
Thank you.
@wfpeter I’ll try whitelisting your IP range, though as far as I know, it’s not blacklisted. Also, one reason I doubt it’s simply outbound connectivity is because in the sample PHP code I included earlier, if I change your URL, https://noc1.wordfence.com/scanptest/hilowebdesign.com/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=0&cronKey=47e9d1fa6a675b5999999333 to https://www.example.com/ then the code works.
ETA: I added 69.46.36.0/27 to both /etc/csf/csf.allow and /etc/csf/csf.ignore and restarted csf, which should whitelist the IP range, but it didn’t have any effect. I’d rather not have to switch to a different security plugin, so I hope you can suggest something else. Also, not sure how helpful this is, but when I ping 69.46.36.28 I get timeout, both in my computer connected to wifi and in my smartphone ping app when not connected to wifi, and lastly, I checked 69.46.36.28 at MultiRBL https://multirbl.valli.org/dnsbl-lookup/69.46.36.28.html and it’s listed 6 times, though whitelisting your range should make that moot.
@wfpeter Thank you for your response; I just sent the report.
Forum: Fixing WordPress
In reply to: Error with image uploading@ahcreative, bypassing GD Editor did the trick. Thanks!
Forum: Plugins
In reply to: [WooCommerce] Removing Sort by on WooCommerce Shop PageI came across the same problem. To remove the action, remove_action must be placed inside a hook, rather than directly inside functions.php. In my case, I used before_woocommerce_init like so:
add_action( 'before_woocommerce_init', function() { remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); } );
Forum: Plugins
In reply to: [WP Fastest Cache] Manually Preload with Cron Jobthank you for your answer
Forum: Plugins
In reply to: [WP Fastest Cache] Manually Preload with Cron JobYou have a great plugin but I don’t have time right now to exchange emails with you, especially when you don’t answer my questions from my last email. There’s only 1 post and seven or 8 pages. As I tried to explain at the beginning, I look at a page before and after doing your-site.com/?action=wpfastestcache&type=preload and the page shows the same day/time it was created by fastest cache, so it doesn’t update the cache, and you keep saying clear the cache and cache is cleared, but the only way I know to do that is to login and click the logo in the admin bar and then click the button to clear the cache, and that’s all manual and I need this to happen using a cpanel crontab cron job. Thanks.
- This reply was modified 7 years, 10 months ago by yitwail.
Forum: Plugins
In reply to: [WP Fastest Cache] Manually Preload with Cron JobThen I don’t understand what preload does, I thought it recreates the cache.
So instead, I will do what hosting suggests, which is- add ‘define(‘DISABLE_WP_CRON’, true);’ in wp-config.php
- create cron job that runs every thirty minutes the command /usr/local/bin/php /home/user/public_html/wp-cron.php
then I will enable preload and in Cache Timeout clear The All Cache once a day. Will this refresh the cache automatically once a day? That’s what I want to happen, make the cache refresh and preload even if no one visits the site.
@prestamos-rapidoses, the other thing you can do is rename or delete the wp-content/plugins/wordfence directory then install & activate latest version of wordfence that fixes this problem.
@bond138 and anyone else experiencing this,
The line 1707 looked line this in 6.2.3:
if(is_wp_error($authUser) && $authUser->get_error_code() == 'invalid_username'){
It now reads like this:
if(is_wp_error($authUser) && ($authUser->get_error_code() == 'invalid_username') || ($authUser->get_error_code() == 'invalid_email')){
I believe it should look like this instead:
if(is_wp_error($authUser) && (($authUser->get_error_code() == 'invalid_username') || ($authUser->get_error_code() == 'invalid_email'))){
That fixes the error on the one site I tried it on. I encourage you to try it until the plugin gets updated. I know you can’t see the entire line of code, but you can copy/paste it into a text editor.
Forum: Fixing WordPress
In reply to: Moved from Godaddy – can't update WordPressI encountered the same problem today, and the solution worked. Thank you Mark!
Forum: Plugins
In reply to: [FG Drupal to WordPress] Is there URL path settings support?So I updated to the premium version, and selected the ‘Don’t import the redirects’, and it halted with the following error message:
WordPress database error: [Table 'wwcf_wrdp1.wp_fg_redirect' doesn't exist] TRUNCATE wp_fg_redirect
I’m also seeing this error in the import page:
Warning: Invalid argument supplied for foreach() in /home/wwcf/public_html/wp-content/plugins/fg-drupal-to-wp-premium/admin/class-fg-drupal-to-wp-custom-content.php on line 205
WP is version 4.6.1. Thanks
—————————
UPDATE: I ran it again with ‘Don’t import the redirects’ unchecked but got the same error. Also, at the beginning of the log, it shows this:[WARNING] The Types plugin is required to manage the custom post types and custom taxonomies.
So I will try this one more time after installing Types.
- This reply was modified 8 years, 5 months ago by yitwail. Reason: report additional results
Forum: Plugins
In reply to: [FG Drupal to WordPress] Is there URL path settings support?Great. One last question, is it possible to only modify links and not do 301? I ask because the WP site will be on a test server until I finish the WP theme to replicate the Drupal site. Or because test site has a different domain name, the 301s have no effect on the live Drupal site? Thank you.