vt220

About me:
Website: http://
Email:

Send private message

You must be logged in to send a private message.

Friends

No friends yet.

Group membership

Activity

  • vt220 replied on the discussion topic Filtering Activities?
    Thanks a lot! Great Community! view reply
  • vt220 replied on the discussion topic Filtering Activities?
    Thanks for the fast replies :-) Do you have any hints where I can find the responsible plugin and it's river code? view reply
  • vt220 added a new discussion topic Filtering Activities? in the group Elgg Technical Support
    Hi, is there a way to filter the activities shown in the activity window? Students are complaining that the friendship status-updates are shown in activities and that this behaviour distracts them from more important things: like file upload and...
    • You can create a plugin hook for the river creation event

      elgg_register_plugin_hook_handler('creating', 'river', 'skip_river_updates');
      function skip_river_updates($hook, $type, $item) {
      $view = $item['view'];
      switch ($view) {
      // remove group join updates
      case 'river/relationship/member/create':
      return false;
      break;
      //remove creating friendship
      case 'river/relationship/friend/create':
      return false;
      break;
      }
      }

    • Thanks a lot! Great Community!

    • GreaT work, this will help definately with performance as well of the river page load.

      I do wonder though, why not have all activity plugins added the standard option in the settings to update the river or not? Seems that there's a 'standard' used with the create / delete so why not with the river update?

  • vt220 replied on the discussion topic ELGG Validation Error
    I'm checking later on that blocked eMail addresses issues again and report here... view reply
  • vt220 replied on the discussion topic ELGG Validation Error
    Hi iionly,   I've disabled the friend request plugin and it didn't help. I deleted all the users from the admin section, my validated and unvalidated testusers accounts. But ELGG doesn't give the used email adresses free, it just tells me,... view reply
  • vt220 replied on the discussion topic ELGG Validation Error
    Even If a user is deleted it seems that the address used for the initial signup is remembered by elgg and can't be used for further sign ups :-(   The "unvalidatede" url didn't work for me...even with inserting /admin/ But really thx for... view reply
  • vt220 replied on the discussion topic ELGG Validation Error
    Thank you for your fast reply. I'm using gdocs file previewer and friend request 1.5 as activated non-standard plugins. Deactivating friend request didn't help. The twitter core plugin is deactivated because "of missing dependencies". There are... view reply
  • vt220 added a new discussion topic ELGG Validation Error in the group Elgg Technical Support
    I'm currently facing validation errors on ELGG 1.8.8.Users get validations emails over and over again, but the validation process seems not to work anymore (users open the validation link, but don't get validated instead they get the validation mail...
    • Hi iionly,

       

      I've disabled the friend request plugin and it didn't help.

      I deleted all the users from the admin section, my validated and unvalidated testusers accounts. But ELGG doesn't give the used email adresses free, it just tells me, that the address has been in used in the past and blocks a new registration with that email address :-(. 

      Now I disabled the email validation; Users can sign up and even don't need a manual approval anymore. I thought disabling the email validation would lead to the need of a manual approval by the admin account...?

       

       

       

    • Hm, I just tested registration with uservalidationbyemail plugin disabled. I was quite surprised about the automatic activation, too. I also thought it would require manual activation when no validation email is sent. I guess the behaviour has been changed at some point (Elgg 1.7 ---> Elgg 1.8?).

      I still can't reproduce what you say about email addresses of deleted accounts being blocked. If I delete an account I can use the email address to register again without problems regardless if this account had belonged to an activated or unactivated account. Are you sure you didn't test the registration using an email address belonging to a still existing account?

    • I'm checking later on that blocked eMail addresses issues again and report here...