1. Difference between:
(from dns_soa_list.php)
PHP Code:
$app->uses('listform_actions');
// $app->listform_actions->SQLExtWhere = "access = 'REJECT'";
$app->listform_actions->SQLOrderBy = 'ORDER BY origin';
$app->listform_actions->onLoad();
and
(from web_domain_list.php)
PHP Code:
$app->load('listform_actions');
$list = new list_action;
$list->SQLExtWhere = "type = 'vhost'";
$list->SQLOrderBy = 'ORDER BY domain';
$list->onLoad();
both is "doing" the same. Which version is preferred?
2. Error on client_edit page:
If you are on the "Limits" page and try to switch to "Address" via the tab (or click on the "limits" tab) ->
output of the "DB::query(INSERT..." in the frontend. The data will successfully be inserted into the db.
Can you reproduce the error?
3. Is the globalsearch looking for domains in the domain module? On my dev machine it does not.