Wordpress 3.1.1

Hello,
I updated to wordpress 3.1.1 and was not able to get it working any way other than removing the scheduler. The main site looks fine, the problem is with the admin section. I’ve read a couple other people are having this problem and was wondering if there would be an update.
I love this calendar and its perfect for what I need it for, i haven’t found anything that even remotely compares but am under strick deadlines.

Thanks!
Rene

Hello,

Thank you for the feedback.
We will look into this issue and I will post here as soon as somethings comes up.

Thank you and best regards,
Ilya

Thank you for your response. I’m going to hold off on updating my website unless you don’t think this will be a new release any time soon.

Scheduler 2.3.1 for WP is available
wordpress.org/extend/plugins/eve … /download/

I found out with this new version (after trial and error) I still have the problem. It’s only when you use multisites and you click ‘network activate’, you want to do each site one by one and it works fine.

Hi.
Open file wp-content/plugins/event-calendar-scheduler/scheduler.php and modify it a little:

  1. Add $current_user in a list of global variables:
...
require (ABSPATH.WPINC.'/pluggable.php');
global $scheduler_lang, $wpdb, $scheduler_table_name, $scheduler_mu_version, $scheduler_cfg, $scheduler_prefix, $scheduler_userid, $default_xml, $current_user;
...
  1. Comment line 65:
...
//get_currentuserinfo();
$scheduler_userid = $current_user->id;
...