nachtigall
Forum Replies Created
-
Forum: Plugins
In reply to: [Shariff Wrapper] PHP notice: Constant WP_DEBUG already definedyep, just have it within an if check:
// in pseudo code if WP_DEBUG is enabled: disable WP_DEBUG
anyway, thanks for fixing ??
Forum: Plugins
In reply to: [PAYMILL for WordPress] Various (usuability) issuesThanks, I very much appreciate this!
Please do not forget about the minor 12th issue:
12. It should be “Kreditkartennummer” not “Kreditkarten Nummer”, see https://www.duden.de/rechtschreibung/Kreditkartennummer ??
Aber sogar dann wuerden natuerlich die Limits Deines Mailservers zuschlagen.
Naja, genau das w?re aber eine Katastrophe für mich, weil dann die wichtigen Mails nicht mehr rausgingen ?? Rechnungen, Bestellmails, Notifications…
Forum: Plugins
In reply to: [Shariff Wrapper] Allgemeine Frage zu StatistikAuf deine Ladezeiten hat dies nur geringen Einfluss, da die Seite bereits angezeigt wird, auch wenn die Zahlen noch nicht da sind. Sieht man gut, wenn man auf eine Seite kommt, auf der l?nger niemand war. Die Buttons sind sofort da, aber die Counter noch nicht. Nach kurzer Zeit erscheinen dann auch die Zahlen.
Kurze Frage: Hei?t das, dass das Plugin also auch mit gecachten Seiten funktioniert (Auslieferung via varnish), weil technisch gesehen das “Nachladen” der Zahlen per ajax passiert?
Das wurde auch schon mal bei dem anderen Plugin gefragt, aber leider gab es keine Antwort dazu: https://www.ads-software.com/support/topic/does-this-work-with-html-page-caching (Ich habe genau das selbe “Problem” bzw. Situation mit vorgeschaltetem varnish bzw. page cache).
Wann wird denn das n?chste Release erscheinen? Ich habe hier im Support-Forum bei Problemen schon des ?fteren gelesen, das dieses oder jenes im github repo bereits behoben ist…
Forum: Plugins
In reply to: [Germanized for WooCommerce] Woocommerce_DE nicht mehr erh?ltlichWie geht man jetzt am besten vor, um alles zu übersetzen?
Ach so, es ist ja alles übersetzt. Das wird aber erst mit dem kommenden WooCommerce-Release “mitgeliefert”. Auf transifex (der übersetzungsplattform) ist schon alles übersetzt und auch gesichtet.
Forum: Plugins
In reply to: [Germanized for WooCommerce] Woocommerce_DE nicht mehr erh?ltlichSehr schade, dass das Plugin eingestellt wurde, ich lese das gerade erst…
Andererseits ist die Standard-WooCommerce-übersetzung (Sie-Form) mittlerweile auch recht brauchbar und es gibt auch eine Du-Form. Die Du-Form ist zwar nicht soo leicht installierbar wie mit dem Plugin, aber mit Hilfe der Anleitung hier geht es auch.
Forum: Plugins
In reply to: [Germanized for WooCommerce] Frage an alle, die einen Woocommerce-Shop habenIch schicke meine Ware erst nach erhalt des Geldes los.
Dem stimme ich zu.
Forum: Plugins
In reply to: [Germanized for WooCommerce] Frage an alle, die einen Woocommerce-Shop habenIch glaube die erste Variante ist üblich.
Ich bevorzuge die zweite M?glichkeit, da man so erst Verfügbarkeit der Ware überprüfen kann bzw. auch den Kunden überprüfen kann.
Ich würde nur Waren im Shop anbieten, die ich verfügbar habe. Dafür gibt es ja die Lagerverwaltung in WooCommerce. Ich glaube genau hier liegt in der Herangehensweise der Fehler bei dir…
Hoffe das hilft weiter ??
Forum: Plugins
In reply to: [PAYMILL for WordPress] Various (usuability) issuesHi Matthias,
it took me quite some time to put together this bug report. I am bit disappointed to say that (almost?) none of these have been fixed in the latest 1.9 release.
Even none of the easy to fix translation typos, not the minor CSS issue and not even the “PHP Warning: Invalid argument supplied for foreach()”
Best,
JensAny timeline when this will be released? I know I can update myself with sftp, but just clicking the update button is more convenient (and less error-prone)
Thanks for all this! Get well soon!
Thanks for the support, I am setting this thread to resolved now.
I wrote them to let them know, hope they get in contact with you. Thanks.
FYI, I’ve got a response from gandi.net now. First my question, followed by their answer:
> My Question:
> 1. This plugin has a “Purge all” button. But this is not working
> because your varnish does not seem to understand regex. Please see
> this FAQ on this:
> https://www.ads-software.com/support/topic/purge-varnish-not-working-saving-
> postspages-does-purge?replies=3#post-5916708
>
> Can you please enable this so that the plugin can be fully used?We can’t implement each case from each plugin/app with a general propose cache due to many factors (complexity/incompatibility/performance).
The API with the varnish cache is:
PURGE <url>
and
PURGEALL <url> (it will purge all content in cache from the shs instance)You can modify the plugin code to use PURGEALL instead of PURGE+regex if you need this function in the plugin, but that is up to you. Note that PURGEALL can only be called once every 120 seconds. You can also call it manually with the following command from inside your Simple Hosting console:
curl -I -X PURGEALL https://mydomain.com/
Just for your interest and other gandi.net users that get here by google. I think there is not much one can do about it (except maybe having a simple filter to adjust the purge-all command).
But since purging is working now for me (only with the pull request I sent), it is not such a big issue anymore.
Hi,
I’ve tested the github version:
1. First, I get the following warning now whenever editing a product or blog post:
PHP Warning: parse_url() expects parameter 1 to be string, array given in /varnish-http-purge/plugin/varnish-http-purge.php on line 139
2. Now /blog/ gets purged but no more /. As you can see on my site (https://www.fiveroasters.de) the blog posts are on the frontpage (/) and on the blog overview (/blog/)
3. “/shop” is still not purged when editing a product.
I’d really like to use your plugin but it is too unflexible and I cannot use it because it results in stale pages (which is a severe error to me!). So I forked it. I only added the aforementioned
vhp_purge_urls
filter. Here is a pull request. It is just one(!) single line.With this I can just added this to my child theme and all is fine now:
// add custom / individual purge urls to vhp function add_purge_urls( $purgeUrls = array() ) { $myUrls = array( home_url('/'), home_url('/shop/'), home_url('/blog/'), home_url('/blog/page/2'), home_url('/blog/page/3'), home_url('/blog/page/4') ); $res = array_unique( array_merge( $purgeUrls, $myUrls ) ); /* error_log( 'FR vhp: ' . print_R($res, true) ); */ return $res; } add_filter( 'vhp_purge_urls', 'add_purge_urls', 10, 1 );
I don’t really like to maintain my own fork of your plugin as this consumes time that I would rather put into something other within the FOSS world… Sadly as it is now, I am foced to do so…