Monday, 08 September 2025
  0 Replies
  34 Visits
0
Votes
Undo
  Subscribe
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();
There are no replies made for this post yet.
Submit Your Response
Upload files or images for this discussion by clicking on the upload button below.
Supported: gif,jpg,png,jpeg,zip,rar,pdf
· Insert · Remove
  Upload Files (Maximum 2MB)