Send private message

You must be logged in to send a private message.

Group membership

Activity

  • LinuxT added a new discussion topic Check if user as profile photo in the group General Discussion
    Hello to all , is there a way to check if a user as a profile photo or not?   Thanks
  • LinuxT added a new discussion topic Add elgg.action to href in the group Elgg Technical Support
    Hello to all i,ve got this href "href" => "action/friends/add?friend=" . $entity->getGUID(), how do i turn it to something like this "href" =>...
    • Simplest way is to use jquery bindings:

      $(document).on('click', '.link-class', function(e) {

          e.preventDefault();

          elgg.action($(this).attr('href'), {

              success: function(result) {

                  // do something when the action is complete

              }

          });

      });

  • LinuxT added a new discussion topic Ajax friends requests in the group Elgg Technical Support
    Hello to all, can you please help me .How can i turn this code , to make an ajax request? Thanks   if (check_entity_relationship($user->getGUID(), "friendrequest", $entity->getGUID())) { // pending request...
    • There's quite a few steps in order to "ajaxify" things:

      1. Register action (or ajax view if there's no sensitive data required)
      2. Custom PHP file with necessary Elgg functions and output link/button
      3. jQuery click() listener function for custom button
      4. Inside the jQuery click function should use elgg.action() function for the ajax request

      That's pretty much it I think. See the message board core plugin for an example.

  • LinuxT replied on the discussion topic Tidypics - Storing Width and Height of an Image
    Hello to all, when i upload the images they become all equal, the same pic repeated by the number of images uploaded... :( Does anyone have the some problem??? Can someone help me? view reply
  • LinuxT added a new discussion topic Auto Post on TheWire in the group Plugin Development
    Hello to all , do you know of any plugin that admin can use to post to the wire by cronjob for elgg 1.8x???   Thanks
  • LinuxT replied on the discussion topic thumbnail in river
    Hello, how can i redirect to the river after file upload?? Thanks view reply
  • LinuxT added a new discussion topic Authentication required in register form in the group Elgg Technical Support
    Hello to all i´m using Elgg 1.8.16 and the Login Required plugin, when im click on the register form and start filling the values elgg returns "You must be authenthicated to see this page"  though i can fill the values and...
    • As I replied on your previous post on the Loginrequired plugin page it would be necessary to know what additional 3rd party plugins you are using the does this form validation on the register page. The reason for the error is very likely due to this plugin (or maybe even plugin if there's more than one involved) not working correctly within a walled-garden Elgg site (neither Elgg core walled-garden or with the Loginrequired plugin). For the plugin to work with walled-garden enabled it would be necessary to allow access to certain pages or actions this plugin provides when not logged in. But it's just impossible to say which one these are without even knowing what plugin(s) are involved.

  • LinuxT replied on the discussion topic Plugin Login Required
    Thanks and sorry for the trouble. view reply