barbazul
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Calendar] Multisite not supportedDebugging the code I found the problem is with the plugin initialiation.
It assumes the plugin is being activated for a single site so clicking on “Activate for network” link will fail to create all the necessary tables.
A simple workaround is to disable it for the network and then enabling it on each site. That way $wpdb->prefix gets populated with the right values and the check in EC_DB::createTable() would make a lot more sense.
Althought the workaround is rather simple, this should still be considered a bug
Forum: Plugins
In reply to: [Events Calendar] Multisite not supportedI am willing to work on fixing this if you are currently accepting contributions to your code.
Forum: Plugins
In reply to: [Plugin: external-videos] – Videos imported multiple timesThere you go! 🙂
Forum: Plugins
In reply to: [Plugin: external-videos] – Videos imported multiple timesThe website where this issue was found was a short marketing campaign that was online for nearly two weeks.
I seem to have been the only person experiencing this bug and I even found a workaround for it. There is no way to test that behaviour online enymore because the site is down.
Even if this bug is not fixed, it is definitely expired
Forum: Plugins
In reply to: [Plugin: external-videos] – Videos imported multiple timesI kind of fixed it.
Actually what I did was set the cron to run every 12 hours and I didn’t have any more duplicated videos
Forum: Plugins
In reply to: [Plugin: external-videos] – Videos imported multiple timesOk I deserialized the option “cron” from the wp_options table and found the event. It’s correctly set up and only once, here’s the dump
[...] 1297123771 => array ( 'ev_daily_event' => array ( '40cd750bba9870f18aada2478b24840a' => array ( 'schedule' => 'hourly', 'args' => array ( ), 'interval' => 3600, ), ), ) [...]Forum: Plugins
In reply to: [Plugin: external-videos] – Videos imported multiple timesSilvia, thanks for taking the time to answer to my post.
Do you know how I can check the crons that are running?
Forum: Plugins
In reply to: [Plugin: external-videos] – Videos imported multiple timesUpdate on this.
It looks like the multiplication of posts happens when the videos are imported from youtube and not when they are published because more than one scheduled post is being created at that time, and all duplicated posts are signed with the same time and date.
A weird thing is that not all posts are being multiplied and not all of the multiplied posts are triplicated some of them are duplicated. I can’t find a pattern on this :s