Send private message

You must be logged in to send a private message.

Group membership

  • Beginning Developers

    Beginning Developers

    This space is for newcomers, who wish to build a new plugin or to customize an existing one to their liking

Activity

  • inca commented on the plugin [Elgg 1.8-1.12 & 2.X: Gifts]
    Thank you information for. I see point. Is code maybe in elgg or github?
  • inca commented on the plugin [Elgg 1.8-1.12 & 2.X: Gifts]
    Anybody experience to use this Gifts plugin not for gifts but only userpoint transfer to one other user?
  • inca replied on the discussion topic How to change theme color/CSS from visual editor?
    Also Themer. But author dump it I think. Only enColor work Elgg 2 I think. And enColor change no logo unfortunate. view reply
  • inca commented on the plugin Material Design (Quantum Paper)
    Cool theme! Will new version come?
  • It say on page error:default:title error:404:content I control file owner code and data. All ok. Acces right OK. I search but do not find solution. Anybody know? Thank u.  
  • inca commented on the plugin enColor
    I didnt try. Because manifest say for 1.9. I will try in test. Thank u
  • inca commented on the plugin enColor
    plugin-maker COOL! I try but it produce plugin in elgg 1.9. I am elgg 2. Bad luck.
  • inca commented on the plugin enColor
    no logo change?
  • inca commented on the plugin [Elgg 1.8-1.12 & 2.X: Elggx Fivestar]
    anybody know setting limit star-giving to only admin?
  • inca commented on the plugin [Elgg 1.5-1.12 & 2.X: Tidypics]
    @iionly I change post-max-size but same problem. I think somwhow relate owner and permission. But still no work start position: For some no thumbnail display and click on image link gives message "This image failed to load". For...
  • inca commented on the plugin [Elgg 1.5-1.12 & 2.X: Tidypics]
    Hello, I use 1.10.7 Elgg 1.12.4. Problem images dont show. But different reasons. For some no thumbnail display and click on image link gives message "This image failed to load". For other default error thunmnail (quiestion mark) display....
  • inca commented on the plugin [Elgg 1.5-1.12 & 2.X: Tidypics]
    Problem start after I repair tables. But I can never say if OK just before repair. I must repair table because my host has problem. Every time my host has problem elgg start not. Normally problem with elgg_users_sessions table. This time I try...
  • inca commented on the plugin [Elgg 1.5-1.12 & 2.X: Tidypics]
    Thank you iionly. I forget to say I already disable all non-bundle plugins. I use only tidypics but problem still is. Error "Sorry bad request. The request is invalid or incomplete." only give for tidypics images. For FILE images it...
  • inca commented on the plugin [Elgg 1.5-1.12 & 2.X: Tidypics]
    Also maybe relate to another problem (elgg_users_sessions table too big): PHPmyadmin not possible to repair this table. So I use command line command to repair with big buffer size: myisamchk -r -q elgg_users_sessions.MYI...
  • inca replied on the discussion topic Can I empty elgg_users_sessions table? Too big!
    Thank you Juho, Thank you iionly. I try your advice. view reply
  • inca commented on the plugin [Elgg 1.5-1.12 & 2.X: Tidypics]
    Profile images show. No problem. Images uploaded with Files plugin or Tidypics do not show. But when click on name of image (upload with FILES) then it show. But when click on image (upload with TIDYPICS) it give error: "The image xxx cannot...
  • inca commented on the plugin [Elgg 1.5-1.12 & 2.X: Tidypics]
    Hello I have tidypics 1.10.7. For long time. Today my site show no pictures. in log i see filesize(): stat failed for maybe you know why? thank you.
  • inca added a new discussion topic Can I empty elgg_users_sessions table? Too big! in the group Elgg Technical Support
    Hello My elgg users_sessions table become too big. I repair everytime. Simply may I empty truncate it on PHPmyadmin? Harmful? Thank you
    • Some old discussion postings seem to indicate that you can empty (not delete) this table - but I can not give ANY advice here by own experience! Maybe it's best to backup the database before trying this out. Emptying the table would also result in all users getting logged out.

      Possibly it's a php.ini setting resulting in the table getting so big. It might help to set the php variable session.gc_probability to 1 for some php garbage collection. But I can't give some definite advice here either as the garbage cleanup done by php might be working differently on different servers.

    • Thank you Juho, Thank you iionly. I try your advice.

    • This issue (sessions not being cleaned up) still arises some times, as php default setting is not always set so that the garbage collector runs.

      The best way to handle this is to set the proper php settings in php.ini file :

      session.gc_maxlifetime = 604800
      session.gc_probability = 1
      session.gc_divisor = 1000

      If this option is not available, truncate is harmful and can be done on the full table.

      However, to avoid disconnecting logged in users, thruncate only sessions where "ts" is older than session duration should be removed, e.g. for a session duration of 1 day <=> 86400 seconds, we would only delete rows where "ts" is below current ts minus 86400 :

      • current timestamp : 1633332276
      • session duration : 86400
      • limit ts : 1633245876

      So SQL would be :

      DELETE FROM `elgg_users_sessions` WHERE `elgg_users_sessions`.`ts` < 1633245876;

      or better :

      DELETE FROM `elgg_users_sessions` WHERE `elgg_users_sessions`.`ts` < (UNIX_TIMESTAMP(NOW()) - 86400);

  • inca commented on the plugin QuickLinks
    Thank you Jerome. Clear!
  • inca commented on the plugin QuickLinks
    Different bookmark? How?