Christian Sabo
Forum Replies Created
-
– check the box “Disable .htaccess File in Storage Directory”
-> did not work– adding AddType application/octet-stream .zip .log .sql .daf to htaccess
-> did not workForum: Reviews
In reply to: [Express SEO Free] funktioniert nicht@jdembowski
Du beziehst das hoffentlich nicht auf mich und hast erkannt, dass ich lediglich den ursprünglichen und mittlerweile geänderten (entschärften) Eingangsthread zitiert habe?Forum: Reviews
In reply to: [Express SEO Free] funktioniert nichtRedacted … Nicht schlecht, was du jemandem an den Kopf wirfst, der sich allerhöchstwahrscheinlich in seiner Freizeit ein Plugin ausgedacht, programmiert und veröffentlicht hat und es dir dann auch noch kostenlos zur Verfügung stellt.
Natürlich soll ein Plugin funktionieren, aber beschimpfen lassen muss sich hier keiner.
- This reply was modified 8 years, 3 months ago by Jan Dembowski.
- This reply was modified 8 years, 3 months ago by Jan Dembowski.
Forum: Plugins
In reply to: [GDPR] Blocking cookies> Now it seems this is not wanted
This is not the case.
We are happy about every translated plugin. But in order to keep up a good WordPress experience for all German users across all projects, the community has spent many many dozens of hours in setting up rules and style guides which describe how we want projects to be translated in a consistent way. Now if you don’t know these rules, that’s okay. That’s what we are trying to change by inviting you to our community.Unfortunately, as you do not want to hear about these rules or don’t want to talk about the reasons WHY we rejected a lot of you strings, there is nothing more to say.
Forum: Plugins
In reply to: [GDPR] Blocking cookies@deeluuxe
Yes, you can; join us on Slack, it won’t hurt 😉This is a support forum and not meant to be used to discuss 126 waiting translation suggestions. That’s what we do in Slack. In German. Much more convenient that here …
@shortpixel
OK, apology accepted.
Thanks for the quick update.Forum: Plugins
In reply to: [Enable Media Replace] Please Do Not Spam my Admin Screen Again3.2.5 comes without ads, at least here …
Forum: Plugins
In reply to: [Enable Media Replace] Changelog not mentioning nagging admin notice@mungobbq Thanks a lot for the effort and work you have taken to provide a very useful plugin!
Forum: Plugins
In reply to: [Firelight Lightbox] v1.6.3 incompatible wih PHP 5.3Hi @ravanh, maybe this one is interesting for you …
Forum: Developing with WordPress
In reply to: Accessing SVNI had similar issues (using command line on OS X 10.11) and the solution was as simple as surprising for me: my password contained the character ) and that breaks the command line commands
Hi, to remove entries older than e.g. 22 days, take this code
// Clear items that are older than 22 days (i.e. keep only the most recent 22 days in the log) add_filter( 'simple_history/db_purge_days_interval', function( $days ) { $days = 22; return $days; } );and put it in the file functions.php of your active theme (or child theme, if you use one)
Forum: Plugins
In reply to: [Simple History – Track, Log, and Audit WordPress Changes] 30 days of logHi, you can do so by adding a filter to your functions.php file:
// Clear items that are older than 30 days (i.e. keep only the most recent 30 days in the log) add_filter( 'simple_history/db_purge_days_interval', function( $days ) { $days = 30; return $days; } );for more examples see https://github.com/bonny/WordPress-Simple-History/blob/master/examples/examples.php
Forum: Plugins
In reply to: [Contact Form 7] Sender email address does not belong to the site domain.@d4nnk
here you can find previous versions:
https://wordpress.org/plugins/contact-form-7/advanced/(scroll down)
Forum: Plugins
In reply to: [Contact Form 7] How to show messages in admin panel?give this one a try:
https://wordpress.org/plugins/flamingo/Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 no longer working / submittingHi @caitlinlcook,
maybe you want to take a look at
https://wordpress.org/plugins/simple-history/okay, this doesn’t solve issues with CF7 – but at least you can see who did what in the backend 🙂