All Site Activity

  • Paul Smith replied on the discussion topic How to add another site page
    Never mind about Static. I figured out it is different from the core pages in Elgg. Just need to tweak it to allow more than two options for access permissions. view reply
  • Paul Smith replied on the discussion topic How to add another site page
    Nikolai, thanks for the links. Will upload Menu Builder and test it.  Is Static the same as the built in pages for Elgg? Not sure I understand the difference. view reply
  • Nikolai Shcherbin replied on the discussion topic How to add another site page
    Menu builder for custom menu items. Add a new menu name 'footer' and create your links. Note: this will override existing links so you'll have to recreate them. + Static for pages view reply
  • Paul Smith added a new discussion topic How to add another site page in the group General Discussion
    Been looking through a lot of plugins and discussions for a way to add more site pages to the footer besides the About, Privacy and Terms pages. Am I missing something in admin that allows me to create more site pages? Is there a plugin that does...
  • Topol replied on the discussion topic Updating Elgg without Losing Data
    Thanks I have been able to uptate to 6.3.7 using composer.... I had to remove many apps and reinstall, to get rid of errors... i have also sent an email regarding some custom plugins... Best Wishes Arindam view reply
  • Nikolai Shcherbin replied on the discussion topic Updating Elgg without Losing Data
    The upgrade process for Elgg depends on how your current installation was set up. If you installed Elgg using Composer, you should follow the official Composer-based upgrade guide. In general, the steps are: Back up your database and the... view reply
  • Topol added a new discussion topic Updating Elgg without Losing Data in the group General Discussion
    Hello The Elgg that I am using is Version 5.1.0, and it has all the data built in it.... How do I update to the latest version of Elgg by keeping the data intact. Dd you have a step by step process for this? Best Wishes Arindam
    • The upgrade process for Elgg depends on how your current installation was set up.

      If you installed Elgg using Composer, you should follow the official Composer-based upgrade guide. In general, the steps are:

      • Back up your database and the entire project directory.

      • Update your composer.json to require the newer Elgg version.

      • Run composer update.

      • After updating, log in to your site and run the upgrade script (usually via /upgrade).

      If your installation was done by downloading and extracting the archive (non-Composer method), then the process is slightly different:

      • Back up your database and all files (especially the data directory and elgg-config settings).

      • Replace the core Elgg files with the new version, but don't overwrite your data directory or configuration files.

      • Visit /upgrade in your browser to run the upgrade process.

      Also, please note that Elgg has specific upgrade rules between versions:

      • You can upgrade from any minor version to a higher minor version within the same major version.

      • To move to the next major version, you must first be on the latest minor release of the previous major version.

      • Once on certain baseline versions, you may upgrade further without stepping through every minor version.

      In your case, this means you should not jump directly from 5.1.0 to the latest version.

      Instead, you should:

      • First upgrade from 5.1.0 to the latest 6.x release (for example, 6.3.7).

      • Then upgrade to the next major version (for example, 7.0.4 or later stable release).

      Make sure to create backups before and after each upgrade step.

      Also, don't forget that 3rd-party plugins must be updated as well, ensuring compatibility with each Elgg version you install.

      Finally, it is worth checking previously discussed topics (1, 2, 3), as many upgrade scenarios and issues have already been covered there.

    • Thanks

      I have been able to uptate to 6.3.7 using composer....

      I had to remove many apps and reinstall, to get rid of errors...

      i have also sent an email regarding some custom plugins...

      Best Wishes

      Arindam

  • Jerome Bakker replied on the discussion topic Friends Count?
    First of having 2 count queries shouldn't be that heavy on the database (even with 100's of concurrent users). $user->getGroups(['count' => true]) elgg_count_entities(['relationship' => 'friend',... view reply
  • Sem Nick added a new discussion topic Friends Count? in the group Plugin Development
    Help creating a user counter plugin for Elgg 6.2 Hello everyone, I am working on an Elgg 6.2 community website and I would like some help creating a plugin that stores user counters directly in the user entity. The idea is to avoid...
  • Jerome Bakker replied on the discussion topic How to Find rss feed of my website Safalaya.com ?
    First make sure in the site settings RSS isn't disabled. Then (as a logged in user) when you go to a page that supports RSS (like /blog/all, /activity) in the footer there is a link to the RSS feed. view reply
  • How to Find rss feed of my website Safalaya.com ? URL : https://safalaya.com
    • First make sure in the site settings RSS isn't disabled.

      Then (as a logged in user) when you go to a page that supports RSS (like /blog/all, /activity) in the footer there is a link to the RSS feed.

  • Paul Smith replied on the discussion topic Organizing Groups In Elgg
    Thanks for this will take a look.  Had to abandon the Profile Manager as I couldn't get it to show categories on the Groups page. Always showed the Elgg default group page no matter what I tried. hypeGroups looks interesting though. view reply
  • Yes we share some variables between frontend and backend. You could fix it in your theme by also extending the admin.css and changing the font color or background color just for the admin side. view reply
  • Jerome Bakker published a blog post Elgg 7.0.3 release
    Bugfix release for Elgg 7.0 is now available
  • Nikolai Shcherbin replied on the discussion topic Organizing Groups In Elgg
    While there's no ready-made plugin, your problem can be solved with a custom plugin. All you need to do is add a new "Category" field (input/text by default or input/tags for multi-categories) to the group creation form and... view reply
  • Paul Smith replied on the discussion topic Organizing Groups In Elgg
    So after searching some more I found an old plugin named au_subgroups but it seems to be very old and not managed anymore. Sounds like what I need so I may try to update it. I also found a plugin named Profile Manager which seems to almost do what I... view reply
  • Paul Smith added a new discussion topic Organizing Groups In Elgg in the group General Discussion
    I have a community I just started creating with Elgg 6.3.1 and have the Group Tools plugin installed. I am wondering if there is a way to organize groups into categories currently that I may be missing or is this something that requires a plugin? Is...
    • So after searching some more I found an old plugin named au_subgroups but it seems to be very old and not managed anymore. Sounds like what I need so I may try to update it. I also found a plugin named Profile Manager which seems to almost do what I want but not quite so maybe I need to tweak it a bit also. In any case, thanks for bearing with me and any advice or other solutions great appreciated.

    • While there's no ready-made plugin, your problem can be solved with a custom plugin.

      All you need to do is add a new "Category" field (input/text by default or input/tags for multi-categories) to the group creation form and organize pages with group sorting by category.

       

      au_subgroups

      Look at hypeGroups.

      (Ismayil recently updated this plugin using AI, so give it a try, it might not work as intended.)

      This plugin doesn't contain an interface for creating subgroups from the admin panel, so you'll also need a custom plugin to override the structure of your groups' subtypes.

      Readme is very helpful.

    • Thanks for this will take a look.  Had to abandon the Profile Manager as I couldn't get it to show categories on the Groups page. Always showed the Elgg default group page no matter what I tried. hypeGroups looks interesting though.

  • I've made a dark theme and using a font near white. The theme seems also to be used for admin backend and so the nearly white font is there shown on white background. So it's really unreadable. It would be a good idea, all colors of...
  • jojof joined the group Elgg Technical Support