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();