zorbs
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] Litespeed crawler is not working at allLog indicates “…failed to parse custom sitemap: Failed to parse xml {URL}”
Forum: Plugins
In reply to: [LiteSpeed Cache] Litespeed crawler is not working at allHello – I have the exact same issue. XML sitemap curls fine on the server.
Forum: Plugins
In reply to: [WooCommerce] SyntaxError: Unexpected token M in JSON at position 0In case this helps someone, we also experienced the same problem.
We discovered that what was causing it was WP Fastest Cache with Cloudflare integration. (We haven’t tested yet if the Cloudflare integration is the culprit, but disabling WP Fastest Cache solved the problem.Good catch, Omicron7! This was driving me crazy.
Specifically, this won’t work with the Quick Cache plugin, which adds a “Clean Cache” button (thus becomes the first form on the page) at the very top of the admin.I hope this is fixed in the next release.
Forum: Plugins
In reply to: [Simple Lightbox] Simple Lightbox with maxCDNNo, the issue was first experienced prior to the WP 3.2 update the other day, and persisted with WP 3.2 as well.
Forum: Plugins
In reply to: [Simple Lightbox] Simple Lightbox with maxCDNHello Archetyped,
Just wanted to let you know that the problem disappears with the “FancyBox for WordPress, 2.7.5” plugin instead. All other settings and agents (Cloudflare with maxCDN) remained the same.
I hope this helps.
Please post further info if you discover anything else on this.
Thank you and best regards.
Forum: Plugins
In reply to: [Simple Lightbox] Simple Lightbox with maxCDNHello,
There are many plugins on the site. Cloudflare is enabled in plugin W3 Total Cache. I have disabled Cloudflare and emptied all caching prior to testing this again, but my tests still fail.
I do not see the js error you are referring to at my end, but your reply may be helpful. We need to do some more testing at our end.
If you have any other ideas I would love to hear them.
Thank you
Forum: Plugins
In reply to: [Simple Lightbox] Simple Lightbox with maxCDNHello Archetyped, and thank you for your response.
You were able to open the thumbnails properly because we have subsequently and removed all /uploads from the CDN. This is a temporary fix, until we figure out the issue with the lightbox.
I have now put back the images in the CDN so that you can see the problem.
I can recreate this problem in IE8, Chrome, and Safari. In Firefox 3.6.13 something really weird is happening: Sometimes I see the popups sometimes not, even on the same thumbnails.I’ve tried with the lightbox css and js on or off the CDN but there is no change there. The problem persists.
P.S. I have removed the top-left thumbnail from the CDN to demonstrate that if an image is not served by the CDN all is fine.
Thanking you in advance for your attention to this issue that renders such a beautiful plugin useless.
Any ideas?
Forum: Plugins
In reply to: [Simple Lightbox] Simple Lightbox with maxCDNFurther information on the problem with maxCDN that still remains after Simple Lightbox 1.5.5.1:
On https://www.commbits.com/add-ons/network-security-appliance/screenshots/ the first thumbnail on the left does not use the maxCDN, and it works just fine. The rest use maxCDN and the window doesn’t open unless we shift-Click.
Any ideas, anyone?
Thank you
For now, I have added two lines above imagecopyresampled(..), on or about line 115, which forces cropping to start from the top left (just for the default “sharp” setting of “smooth”.
Hacked segment shown below:$src_x = 0;
$src_y = 0;
imagecopyresampled( $to_image, $from_image, $dst_x, $dst_y, $src_x, $src_y,
$dst_w, $dst_h, $src_w, $src_h);
}Ideally, this should be a setting in the admin.
Hmm, haven’t tested this, but it may work:
[si-contact-form form=’1′ hidden=’account=[PHP shortcode here]’]I have solved my issue by posting to another page, then adding my auto code then sending further to the final destination.
Thanks,
Notwithstanding – of course – the already-available option of submitting the form to an intermediary PHP script, which adds the dynamically-generated new field, prior to sending to the final destination…
Same request as per ombre8 here.
This is used as a front-end to a payment order form. My system needs to generate order numbers automatically.
I have a function that generates (algorithmically) an order number using Unix timestamp as a seed. I need to pass this value to a 3rd party URL, through your “Query string key value pairs to add:”:
order_no={PHP HERE}
It would be nice if this would be compatible with “Shortcode Exec PHP” plugin, which allows me to easily define my PHP function and then call it from anywhere with a custom-defined shortcode. I would then be able to create my order-generation as a shortcode (say “make_orderNo”], and call it from your field “Query string key value pairs to add:”:
order_no=[make_orderNo]
Another idea, which is self-sustained, and wouldn’t make your plug in depended on anything else, you could program a new field type, i.e. “Dynamic”, and you allow form developers to choose from a list of constructors, which would generate dynamic data on-the-fly. For example, “the right X digits from a timestamp”, or “a random number with X digits, ranged from Y to Z”, plus configurable header or trailer.
I would then have a hidden, dynamic field, which I would then rename and pass along to the 3rd party url.
Under a worst-case scenario, where in your php code should I insert a conditional statement, looking for something unique on that form (i.e. the form number), and then define my dynamic field manually?
Thank you for your great plugin!