7 minutes ago, jetway said:turn on debug mode and see what error is thrown back.
here is what i get :
Exception
in modules/welcome/controllers/admin/AdminWelcomeController.php (line 34)
class AdminWelcomeController extends ModuleAdminController
{
public function postProcess()
{
if (!isset($_POST['action'])) {
throw new Exception('The action to call is not defined.');
}
if (!isset($_POST['value'])) {
throw new Exception('The value to set is not defined.');
}
AdminWelcomeController->postProcess()
in classes/controller/Controller.php (line 281)
if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className))) {
$this->setMedia();
}
// postProcess handles ajaxProcess
$this->postProcess();
if (!empty($this->redirect_after)) {
$this->redirect();
}
ControllerCore->run()
in classes/Dispatcher.php (line 515)
if (isset($params_hook_action_dispatcher)) {
Hook::exec('actionDispatcher', $params_hook_action_dispatcher);
}
// Running controller
$controller->run();
// Execute hook dispatcher after
if (isset($params_hook_action_dispatcher)) {
Hook::exec('actionDispatcherAfter', $params_hook_action_dispatcher);
}
DispatcherCore->dispatch()
in ********/index.php (line 97)
if (!headers_sent()) {
header('Content-Type: text/html; charset=utf-8');
}
// Prepare and trigger LEGACY admin dispatcher
Dispatcher::getInstance()->dispatch();
}