rlsavage

Send private message

You must be logged in to send a private message.

Friends

No friends yet.

Group membership

Activity

  • 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
  • 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
  • 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 in the group Event calendar
    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);
      }

       

  • rlsavage joined the group Event calendar
  • rlsavage added a new discussion topic Admin Options Link in Profiles not expanding. in the group Feedback and Planning
    I am trying to determine if there is some conflict from a plugin that prevents Admin Options Link from expanding to allow user deletion, password change etc when selecting a user profile as Admin. This is 1.8 and I am using email validation (which...
    • Check your browser debugging tools for js errors

    • Cant see anything suspicious in firefox .. Im not a web designer or js expert.. but.. there s no red Warning or anything.. There s much more strange behavior related to js. e.g: In admin Panel the right site buttons.. They are not working. I always have to click on "Plugins" first to open a sub category, then im able to click all the other buttons.. I have no clue where to start research.

      Thanks for the reply, Matt!

      pipu

    • Disable all 3rd party plugins to check if any of them causes the problem. The most likely reason is that any of the 3rd party plugins is buggy. Only if you have disabled them all at the same time and there's still a problem with the admin menu, it's not a plugin issue. If it works with all 3rd party plugins disabled, then you can enable them again - but only one plugin at a time. Then test out which plugin is causing the issue.

      Other possibilities for identifying the problem are the server logs (Apache, Php) or the webconsole / JS console of your browser that might indicate where the problem is coming from.

      Without you narrowing down the cause (e.g. to a single plugin) it's impossible to give any more specific advice.

  • rlsavage joined the group Feedback and Planning