renanno
Forum Replies Created
-
Hi
I solved this by disabling the option “Prevent caching of objects after settings change” in browser cache settings (general, js & css and media & other files sections).
Didn’t figure why it happen tough.
Forum: Plugins
In reply to: [WooCommerce - Pagar.me] Boleto tranca após erros no cart?o de créditoEntendi.
Talvez seja algum outro plugin carregando algum javascript nessa tela que está conflitando ent?o.
A sugest?o foi só porque achei que poderia ser um bug e n?o gosto de vir no fórum de suporte dos plugins só pra reclamar, prefiro apontar algo que possa contribuir também. Mas como tu disse, nesse caso n?o é um bug no teu plugin, ent?o provavelmente etá relacionado a algum outro plugin conflitando.
Obrigado
Forum: Fixing WordPress
In reply to: admin-ajax and media searchAlright, did it.
If anyone need this, I changed line 7082 in wp-includes/js/media-views.js (don’t forget .min)
search: function( event ) { if ( event.target.value ) { this.model.set( 'search', event.target.value ); } else { this.model.unset('search'); } }
With this:
search: function( event ) { if ( event.which === 13 ) { if ( event.target.value ) { this.model.set( 'search', event.target.value ); } else { this.model.unset('search'); } } }
Forum: Fixing WordPress
In reply to: admin-ajax and media searchI think this topic would fit better the Hacks subforum.
Anyway, anyone knows how to do this?
Thanks
Forum: Fixing WordPress
In reply to: WordPress 4.0 & Missed Schedule postsHi!
I’ve tried to hard code the core no success. Also I didn’t want to install another plugin. Tested some suggestions about scheduling a real cron in Cpanel to “wp-cron.php?doing_wp_cron”. Also no success.
I’m using WP 4.0, and have disabled wp cron in wp-config.php
So what I have done is this: I’ve opened wp-cron.php and started to insert some “echos” around the file so I could identify where the file was stopping it’s execution.
Found out that execution was stopping after running “if ( empty( $doing_wp_cron ) ) {” (line 65 to 75 of wp-cron.php).
I saw that this statement is trying to identify the existence of $doing_wp_cron so, otherwise, can use a $_GET or forcing a new lock.
So, the solution I’ve found is simply using this:
yourdomain.com/wp-cron.php?doing_wp_cron=true
Instead of this:
yourdomain.com/wp-cron.php?doing_wp_cron
When setting a real cron job. All the “missed scheduled” posts were posted.
This seems to work for me and I hope that help you guys also.
Renan
Forum: Plugins
In reply to: [Auto Attachments] JS problem inserting links to a new postFor the record:
WP 3.5
AA: 1.1 (the newest)Forum: Plugins
In reply to: [W3 Total Cache] Stops working randomly…Well… It doesn’t work. Go to another plugin.
Forum: Plugins
In reply to: [W3 Total Cache] Stops working randomly…It happened again today. Right now my CDN isn’t working.
Forum: Plugins
In reply to: [W3 Total Cache] Stops working randomly…Someone?
Forum: Plugins
In reply to: [W3 Total Cache] Stops working randomly…Some informations that may help:
WP 3.5
Amazon S3
W3TC 0.9.3
Enabled: CDN, browser cache and object cacheThe unsuccessful file transfers list is always empty (seriously, I’ve never see one file listed thered). So there is nothing to clean.
And I did upload (again) every content available (media library, wp-includes, theme files and custom files). Actually, when I try to access some file directly at CDN, it works fine, like: https://cdnprev.s3.amazonaws.com/wp-content/uploads/2013/06/dinheiro-100×76.jpg .
So, it’s just the rewritable stuff that it doesn’t work anymore and I don’t know why.
Today by morning the plugin was working fine. The only change I’ve made was in footer.php (some facebook + google plus javascript), in custom.css and in single.php (like, tweet and +1 buttons).
I’ve already tried to deactivate and activate W3TC, but nothing changed.
And finally, when I try to send a bug report, it shows that I have no permissions even though I have super admin flag.
(sorry for the bad english, brazilian here \o/ )