By Guest on Monday, 08 September 2025
Posted in EasySocial
Replies 4
Likes 0
Views 225
Votes 0
Current version of easysocial fails with blank error message when trying to create new event / page / group.

Fix is related to table->store failure as bind->table object does not match the database table structure. Solution is to add missing table info to the bind object

in /admin/components/com_easysocial/includes/cluster/cluster.php

find


if (!$this->table->latitude) {
$this->table->latitude = '';
}

// Try to store the item
$state = $this->table->store();


Replace with


if (!$this->table->latitude) {
$this->table->latitude = '';
}

if (!$this->table->verified) {
$this->table->verified = '0';
}

// Try to store the item
$state = $this->table->store();
Thanks for your fix
So you have the latest version 4.0.15, but bugs are still present?

Philippe
·
1 month ago
·
0 Likes
·
0 Votes
·
0 Comments
·
#82
Thks this seems to work! Great and much love to you fixing this!!
·
1 month ago
·
0 Likes
·
0 Votes
·
0 Comments
·
#83
I see the Stackideas survivors are concentrating here! 😄
I'd love to have the latest updates and finally be able to upgrade to Joomla 5.
But spending $250 for so few fixes is excessive.
Would you be interested in sharing the cost of a bundle?
·
1 month ago
·
0 Likes
·
2 Votes
·
0 Comments
·
#84
I see the Stackideas survivors are concentrating here! 😄
I'd love to have the latest updates and finally be able to upgrade to Joomla 5.
But spending $250 for so few fixes is excessive.
Would you be interested in sharing the cost of a bundle?

I would be interressted to share a bundle. I have also to upgrade to joomla 5 Sion.
·
1 month ago
·
0 Likes
·
0 Votes
·
0 Comments
·
#85
View Full Post