DanielTulp
Forum Replies Created
-
Forum: Plugins
In reply to: [Cross-Network posts] WP 4.x compatible?it works on a wp 4.1 install (multisite) I have running, but I have not rewritten anything of late
hope I can find time to do so and put in some wanted improvementsForum: Plugins
In reply to: [Flickr Gallery] Invalid argument supplied for foreach()see: https://www.ads-software.com/support/topic/https-api?replies=16#post-5790366
next time read other posts before creating your ownForum: Plugins
In reply to: [Flickr Gallery] HTTPS APII also replaced all https:// calls with https:// in phpFlickr.php and flickr-gallery.php (not sure the latter is necessary)
Forum: Alpha/Beta/RC
In reply to: Live site automatically updated to an Alpha versionMy site had been updated to yhe 4.0 alpha version 3 times now…
Will do a manual downgrade when I get out of bed.Forum: Alpha/Beta/RC
In reply to: Live site automatically updated to an Alpha versionI have this problem also with an en_GB install.
Forum: Plugins
In reply to: [Cross-Network posts] Update?I would like to yes. But I can’t guarantee anything. Hope I find the time in between becoming a father for the second time, social life, work etc..
But I know it needs work.
Any in particular you’d like fixed, added or improved?Forum: Plugins
In reply to: [People Lists] does not work with WP 3.7.1yep, works
I agree that the pro version is way way way way to expensive
In theory it should work with custom post-types, but I haven’t tested it.
Forum: Plugins
In reply to: [Cross-Network posts] Can this retrieve from multiple blogs at once?if you modify the code a little you could pull all posts. Right now it is limited to one blog. I like the idea, will add it as a feature later.
Forum: Plugins
In reply to: [Cross-Network posts] Usage Questions – featured images & paginationthere is no pagination in plugin
featured images should come with the post, but am unsure whether it will work, haven’t tested itForum: Plugins
In reply to: [Cross-Network posts] Can this embed from one WP site to anotherno, sorry, you will need multiside to do that, seperate WP sites use seperate databases so that will not work
Forum: Plugins
In reply to: [Crony Cronjob Manager] Logs not recordedI have managed to also solve the first issue
in the same file and function, around line 578 change the sql query to:
// Drop any older logs
$max_records = 100;
$crony_ids = $wpdb->get_results(“SELECTid
FROM" . CRONY_TBL . "logs
ORDER BYid
“);
if(count($crony_ids)>$max_records){
foreach($crony_ids as $index => $crony_id){
if($index<count($crony_ids)-$max_records){
$wpdb->query($wpdb->prepare(“DELETE FROM" . CRONY_TBL . "logs
WHEREid
= %d”, $crony_id->id));
}
}
}uses $max_records to set the maximum amount of records to save in the log (create a setting for this?)
hope this helps someone!
Forum: Plugins
In reply to: [Crony Cronjob Manager] Logs not recordedI fixed the second error:
change:
/wp-content/plugins/crony/crony.php line 581
return $wpdb->query($wpdb->prepare("INSERT INTO
” . CRONY_TBL . “logs(
crony_id,
output,
real_time,
start,
end) VALUES (%d, %s, %s, %s, %s)", array($id, $end)));
to
return $wpdb->query($wpdb->prepare("INSERT INTO
” . CRONY_TBL . “logs(
crony_id,
output,
real_time,
start,
end) VALUES (%d, %s, %s, %s, %s)", array($id, $output, $real, $start, $end)));
note the additional parameters in the array at the end of the query
the first error might be solved by using JOIN or my host updating the MySQL db to a higher version, but I doubt that will happen soon
possible solution with JOIN:
https://stackoverflow.com/questions/12434525/this-version-of-mysql-doesnt-yet-support-limit-in-all-any-some-subqueryForum: Plugins
In reply to: [Crony Cronjob Manager] Logs not recordedI’m getting all kinds of errors because of this, hope it helps:
[Thu May 23 16:32:12 2013] [warn] [client 213.132.202.20] mod_fcgid: stderr: WordPress databaseerror This version of MySQL doesn’t yet support ‘LIMIT & IN/ALL/ANY/SOME subquery’ bij query DELETE FROM
qrfaf4v8_9_crony_logs
WHEREcrony_id
IN ( SELECTcrony_id
FROMqrfaf4v8_9_crony_logs
ORDER BYcrony_id
LIMIT 80, 1000 ) gemaakt door do_action_ref_array, call_user_func_array, crony, crony_add_log[Thu May 23 16:32:12 2013] [warn] [client 213.132.202.20] mod_fcgid: stderr: WordPress databaseerror Query was empty bij query gemaakt door do_action_ref_array, call_user_func_array, crony, crony_add_log
running MySQL v5.1.69