infinustechnology
Forum Replies Created
-
When you go into the post itself do you see anything on the sidebar that notifies you of external images? Are they in a custom post type? Are they on a different domain than the site you’re working on?
I have used it recently so it is compatible with 4.4, but it does check for some specific things, and doesn’t support custom post types without editing in a few places.
Forum: Plugins
In reply to: [WordPress Language] Fetal error on plugin activationI did what was recommended and removed the UNIQUE KEY line, it activated no problem. Don’t forget to remove the comma at the end of the previous line. It will look like this:
PRIMARY KEY (id`)
) ENGINE=MyISAM {$charset_collate}”;
$wpdb->query($sql);Forum: Plugins
In reply to: [Exec-PHP] Deprecated WarningHey tastycarp – I re-uploaded the one that I had created many years ago, due to people emailing me about it. Seems the plugin still does the trick for several hundred thousand people, after 7 years of non-development. That’s staying power!
Here’s the link:
Forum: Plugins
In reply to: [WP eCommerce] Upgrade to 4.3 and problems with shipping calculatorhttp://brendancarr.ca/wordpress-variable-monitoring-script/
The top javascript is just the html5 desktop notification part, if you don’t require that then remove it and lines 60-62. Basically, load it up in a browser on the site in question, and let it sit there until something happens.
To the developer: the issue hasn’t reappeared since commenting out that line, so you at least know where to start to debug.
Forum: Plugins
In reply to: [WP eCommerce] Upgrade to 4.3 and problems with shipping calculatorThanks for confirming Gus, I also have a script you can put into your root folder that will monitor the custom shipping options variable and notify you via html5 desktop notifications in the browser, and via email. Let me know if you need it. If you’re all set and back to normal (both sites in my case are working normally now), at least we know what the developer needs to fix now.
Forum: Plugins
In reply to: [WP eCommerce] Problems with shipping calculator after WordPress upgradeHey NFWro,
When you’re in the shipping tab, are the options that you originally had in there still checked or are they now unchecked?
If you check them again, does your shipping selection in the checkout now work?
You could try commenting out this line:
<?php //topcat_lite_posted_on(); ?>
in this file:
/wp-admin/theme-editor.php?file=content-single.php&theme=topcat-lite
Or modify/remove the function itself, in this file:
/wp-admin/theme-editor.php?file=inc%2Ftemplate-tags.php&theme=topcat-lite
Forum: Plugins
In reply to: [WP eCommerce] Upgrade to 4.3 and problems with shipping calculatorI appear to have fixed the issue on the two sites by commenting out line 57 in shipwire.php – it updates the custom_shipping_options but replaces the array completely with just ‘shipwire’, which makes it look like tablerate and fixedrate are being unchecked.
I haven’t traced back as to why this file is being called and when, as it looks like the cron jobs just delete expired visitors and clear stock claims.
Forum: Plugins
In reply to: [WP eCommerce] Upgrade to 4.3 and problems with shipping calculatorActually, both ran at the same time – if that helps. I’ve never heard of shipwire until now, and realized it’s an option right above the shipping modules.
wpsc_twicedaily_cron_task 2015-10-04 17:33:40 (now)
Forum: Plugins
In reply to: [WP eCommerce] Upgrade to 4.3 and problems with shipping calculatorOK, so it just happened. I was monitoring the variable custom shipping options, and it actually changed from tablerate to shipwire at 5:30pm.
get_option(“custom_shipping_options”);
Survey of cron tasks says:
wpsc_daily_cron_task 2015-10-04 17:33:40 (now)
Forum: Plugins
In reply to: [WP eCommerce] Upgrade to 4.3 and problems with shipping calculatorWordPress is 4.3.1
WPEC is 3.10.1
SS is 1.1Maybe not on your side, but in the latest update of WP? table_rate_layers are stored in the _options table, so I’m assuming the rest of the vars for WPSC are in there too – I can write a script to monitor them today and check for changes, then email me when it happens, and I’ll compare against cron jobs and logs. Maybe it’s getting flushed out with transients?
Forum: Plugins
In reply to: [WP eCommerce] Upgrade to 4.3 and problems with shipping calculatorUnfortunately following the steps doesn’t change anything – even if I disable all plugins with the exception of WPEC and a payment gateway that isn’t on the other site, it still disables any shipping options. Again, this is two separate sites, two separate installations, and two different themes.
On three other sites that I have not updated to 4.3.1 and the latest version of WPEC, the shipping options remain unchanged, and I have no issues with them. One is running 3.8.14.1, one is 3.8.7.5, and one is on 3.9.1. I hesitate to do any kind of updates on them knowing what will likely happen. The sixth site doesn’t contain any shipping options, so I’m not as concerned, but still a high percentage of failure looking at a cross section of fairly active eCommerce sites.
Forum: Plugins
In reply to: [WP eCommerce] Checkbox on Shopping Cart not Checkedif you are doing this with code, just add “checked” to that input field. I am assuming that this is being done in the checkout template for your theme:
<input class=”wpsc-visitor-meta” data-wpsc-meta-key=”join-our-mailing-list-for-special-offers” type=”checkbox” name=”collected_data[20][]” value=”YES” checked />
Hope this helps, cheers.
Forum: Plugins
In reply to: [WP eCommerce] Upgrade to 4.3 and problems with shipping calculatorI think you misunderstand – I was using it to troubleshoot my own installations for clients. I wasn’t offering a method to fix the issue, just seeing if your problem was similar to my own, as we have the same symptoms. I do agree however that support is slow to respond, but keep in mind you are not paying for the quick support package unless you have purchased the “gold cart” or buy support tokens.
Forum: Plugins
In reply to: [WP eCommerce] Upgrade to 4.3 and problems with shipping calculatorIt’s just a security plugin. I was monitoring cron jobs in WordPress and it seemed to be that around the same time the daily cron for Wordfence ran, I lost the shipping options. I installed the plugin Crontrol to monitor it, and am just waiting for the last three cron jobs in a 24 hour span to complete.