Group activity

  • irrikan replied on the discussion topic publish multiple events on the same day
    I don`t know.... I try and they put same events in the same minute but they don`t in the selectioned data. First: Second, they put when...... 20:30 - 22:30, 6 Apr 2013 I put 7 Apr Thirth:     view reply
  • Kevin Jardine replied on the discussion topic publish multiple events on the same day
    I've never seen this behaviour. You can have events in the same minute, hour, day whatever. view reply
  • irrikan added a new discussion topic publish multiple events on the same day
    Hi, I have problems to publish multiple events on the same day, is posible?... when i put the same date they change one day before. ¿they are any option to this? Thanks.
  • walkie replied on the discussion topic 1970 event date problem still
    If someone still have this problem with newest version: in model.php find lines, where $event->start_date and $event->end_date are set. Then replace fragments like that: $start_date_text = get_input('start_date'); if($start_date_text... view reply
  • rlsavage replied on the discussion topic 1970 event date problem still
    Ouch, tunnel vision, got what I deserved..... Yes thanks Kevin. Problem with Firefox 8.0.1 on Intel MAC. All is good in FF3.6.28 on PPC MAC, 16.0.2 on Intel MAC, Safari 4.1.3 on MAC PPC, Safari 5.1.2 on Intel MAC and IE8 on Windows PC. Sorry to... view reply
  • Kevin Jardine replied on the discussion topic 1970 event date problem still
    Do you get the same result in several different browsers? view reply
  • rlsavage replied on the discussion topic 1970 event date problem still
    Thanks for your reply Kevin. That appears to be the version of EV_0.85 that I am using. I initially upgraded to what must be an earlier version of 0.85 (6e3d519), it did not have the recurring event dates for the full calendar and Blue Button... view reply
  • Kevin Jardine replied on the discussion topic 1970 event date problem still
    Get the version in: https://github.com/kevinjardine/Elgg-Event-Calendar/tree/full view reply
  • rlsavage replied on the discussion topic 1970 event date problem still
     I have played with changing order of plugins and deactivating plugins to the point of only event calendar is activated. Still same results. Of further note - between upgrading from 0.8 to 0.85 I temporarily added a custom profile field to add... view reply
  • rlsavage added a new discussion topic 1970 event date problem still
    I am having the 1970 date problem and I cant seem to get around it. I am running 1.8.8 Elgg and initially I activated Event Calendar 0.8. It was posting events correctly albeit not easily because the date menus were running off the page but if you...
    • Do you get the same result in several different browsers?

    • Ouch, tunnel vision, got what I deserved..... Yes thanks Kevin. Problem with Firefox 8.0.1 on Intel MAC.

      All is good in FF3.6.28 on PPC MAC, 16.0.2 on Intel MAC, Safari 4.1.3 on MAC PPC, Safari 5.1.2 on Intel MAC and IE8 on Windows PC. Sorry to waste discussion space.

      Thanks for the excellent plugin... and your time

      Rusty

      www.masterkeykenpo.com

    • If someone still have this problem with newest version:

      in model.php find lines, where $event->start_date and $event->end_date are set.

      Then replace fragments like that:

      $start_date_text = get_input('start_date');
      if($start_date_text && isValidTimeStamp($start_date_text)){
      $event->start_date = $start_date_text;
      }
      else{
      $event->start_date = time();
      }

      $end_date_text = get_input('end_date');
      //$event->original_end_date = get_input('end_date');
      if ($end_date_text && isValidTimeStamp($end_date_text)) {
      $event->end_date = $end_date_text;
      //$event->munged_end_date_string = $end_date_text." ".date_default_timezone_get();
      } else {
      $event->end_date = time();
      }

      I've added here function isValidTimestamp, because when you do not choose a date, it will not be set to timestamp, so it will be 1960 year. If user dont choose date - we have an event today. isValidTimestamp:

      function isValidTimeStamp($timestamp){

      return ((string) (int) $timestamp === $timestamp)
      && ($timestamp <= PHP_INT_MAX)
      && ($timestamp >= ~PHP_INT_MAX);
      }

       

  • buraddo added a new discussion topic Auto add to group calendar
    I know I am a thorn in your side :) Trying to determine how it is supposed to work. If a site event is created and a group owner adds it to the group calendar. Shouldn't this get added to each group members personal calendar if the option to...
  • buraddo replied on the discussion topic Reminder followup
    cron works fine or reminders works or both? view reply
  • Kevin Jardine replied on the discussion topic Reminder followup
    This probably doesn't help but I have a client running Elgg 1.8.8 with the standard walled garden and cron works fine, including the message_queue plugin. view reply
  • buraddo replied on the discussion topic Reminder followup
    I ended up just reinstalling instances and no every selecting the walled garden feature. I just used the login_required plugin for the functionality. Will pursue a root cause at a later date. view reply
  • buraddo replied on the discussion topic Reminder followup
    More info.. I tried configuring on a instance where I have never installed message queue, or enabled reminders on the event plugin. I turned off "restrict pages to logged-in users" and then completed the installs.. Still does not work. I repeated... view reply
  • buraddo replied on the discussion topic Reminder followup
    Found where errors are being logged and no PHP errors are occuring..  At a dead end at the moment. If I could work out how to unblock the reminders, then I could switch from walled_garden to the login required plugin. But I have tried... view reply
  • buraddo replied on the discussion topic Reminder followup
    I was mostly referring to the documentation referring to "pg/minute" etc.. for the path.. It some of the discussion boards etc.. it seems the launch method for cron has changed over time.. Anyway, probably a wild goose chase.  I get the same... view reply
  • Kevin Jardine replied on the discussion topic Reminder followup
    Hi Brad, I see no references to cron in CHANGES.txt except for the walled garden bug fix I mentioned. So, no I don't think that the cron API has changed. view reply
  • buraddo replied on the discussion topic Reminder followup
    Didnt they change the way cron works in mid 1.8.X releases ? I still cant use my work around of login required plugin until I can work out what is blocking up the reminders and preventing them from working when I uncheck the walled garden. view reply
  • buraddo replied on the discussion topic Reminder followup
    Just as a side test.. I tried the "login required" plugin in place of the built-in functionality (looking for a work-around in parallel) and the reminders still work..   B view reply