[SOLVED] Trouble with "view as table " and login

Hi Steve, hi everyone,
I've got a strange behaviour with a new installation (xataface 1.3.2):
I've got a mysql view that i'm using as a table with a primary key described on the field.ini.
Everything works but the login button : if I click it when i'm on this View page, i' got a blank page. This happen only on my hosted server : in Wamp, it does not crash.
You can see it happen here :http://compagnonsdarmes.guild-heberg.fr/artisanat/CraftBase (The view is "Recettes")
I've tried a workaround in my delegate class but it did not help
Do you know why this happen ?
Or, as a workaround, is there a way to disable the "login" button on this page only ?
Thanks a lot for your help, and please excuse my english.
I've got a strange behaviour with a new installation (xataface 1.3.2):
I've got a mysql view that i'm using as a table with a primary key described on the field.ini.
Everything works but the login button : if I click it when i'm on this View page, i' got a blank page. This happen only on my hosted server : in Wamp, it does not crash.
You can see it happen here :http://compagnonsdarmes.guild-heberg.fr/artisanat/CraftBase (The view is "Recettes")
I've tried a workaround in my delegate class but it did not help
- Code: Select all
function beforeHandleRequest(){
$auth =& Dataface_AuthenticationTool::getInstance();
$user =& $auth->getLoggedInUser();
$app =& Dataface_Application::getInstance();
$query =& $app->getQuery();
if ( $query['-table'] == 'cb_recette' and ($query['-action'] == 'login_prompt' or $query['-action'] == 'login') ){
$query['-table'] = 'cb_objetartisanal' ;
}
}
Do you know why this happen ?
Or, as a workaround, is there a way to disable the "login" button on this page only ?
Thanks a lot for your help, and please excuse my english.