attached error.
At first I thought the error may be related to the profile cover plugin (which previously interfered with changing the profile photo) but even after disabling that plugin this error remained.
attached error.
At first I thought the error may be related to the profile cover plugin (which previously interfered with changing the profile photo) but even after disabling that plugin this error remained.
Just my advice. Plus though is u wont have this error any more.
in /ow_system_plugins/base/classes/event_handler.php
line 822
replace this:
public function onAddMembersOnlyException( BASE_CLASS_EventCollector $event )
{
$event->add(array('controller' => 'BASE_CTRL_Join', 'action' => 'index'));
$event->add(array('controller' => 'BASE_CTRL_Join', 'action' => 'joinFormSubmit'));
$event->add(array('controller' => 'BASE_CTRL_Join', 'action' => 'ajaxResponder'));
$event->add(array('controller' => 'BASE_CTRL_Captcha', 'action' => 'index'));
$event->add(array('controller' => 'BASE_CTRL_Captcha', 'action' => 'ajaxResponder'));
$event->add(array('controller' => 'BASE_CTRL_User', 'action' => 'forgotPassword'));
$event->add(array('controller' => 'BASE_CTRL_User', 'action' => 'resetPasswordRequest'));
$event->add(array('controller' => 'BASE_CTRL_User', 'action' => 'resetPassword'));
$event->add(array('controller' => 'BASE_CTRL_User', 'action' => 'ajaxSignIn'));
$event->add(array('controller' => 'BASE_CTRL_ApiServer', 'action' => 'request'));
$event->add(array('controller' => 'BASE_CTRL_Unsubscribe', 'action' => 'index'));
$event->add(array('controller' => 'BASE_CTRL_BaseDocument', 'action' => 'redirectToMobile'));
with this:
public function onAddMembersOnlyException( BASE_CLASS_EventCollector $event )
{
$event->add(array('controller' => 'BASE_CTRL_Join', 'action' => 'index'));
$event->add(array('controller' => 'BASE_CTRL_Join', 'action' => 'joinFormSubmit'));
$event->add(array('controller' => 'BASE_CTRL_Join', 'action' => 'ajaxResponder'));
$event->add(array('controller' => 'BASE_CTRL_Captcha', 'action' => 'index'));
$event->add(array('controller' => 'BASE_CTRL_Captcha', 'action' => 'ajaxResponder'));
$event->add(array('controller' => 'BASE_CTRL_User', 'action' => 'forgotPassword'));
$event->add(array('controller' => 'BASE_CTRL_User', 'action' => 'resetPasswordRequest'));
$event->add(array('controller' => 'BASE_CTRL_User', 'action' => 'resetPassword'));
$event->add(array('controller' => 'BASE_CTRL_User', 'action' => 'ajaxSignIn'));
$event->add(array('controller' => 'BASE_CTRL_ApiServer', 'action' => 'request'));
$event->add(array('controller' => 'BASE_CTRL_Unsubscribe', 'action' => 'index'));
$event->add(array('controller' => 'BASE_CTRL_BaseDocument', 'action' => 'redirectToMobile'));
$event->add(array('controller' => 'BASE_CTRL_AjaxLoader', 'action' => 'init'));
$event->add(array('controller' => 'BASE_CTRL_AjaxLoader', 'action' => 'component'));
$event->add(array('controller' => 'BASE_CTRL_Avatar', 'action' => 'ajaxResponder'));