Open nakarin4350 opened 10 years ago
Same problem, the thing is that when you open the http://localhost/testdrive/index.php/user/install calls to render function with start view as parameter, and this view uses Yum::SetFlash function that in turn uses Yum::t funcion. You can work around that issue creating the translation table like this:
CREATE TABLE IF NOT EXISTS translation
(
message
varbinary(255) NOT NULL,
translation
varchar(255) NOT NULL,
language
varchar(5) NOT NULL,
category
varchar(255) NOT NULL,
PRIMARY KEY (message
,language
,category
)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
But this is not the only problem :( , to be continued.
I had the same problem. After creating the table and running the installer I was getting "trying to get a property of a non object" from user/views/user/login.php line 124
to fix it i added the following to the config->main->modules portion
'registration' => array(
'registrationUrl' => '../registration/registration/registration',
),
Thanks for response.
When click installation I get "Error 500 CDbCommand failed to execute the SQL statement: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'yii_user_management_demo.translation' doesn't exist Yii User Management version 0.9-git-wip.". Any idea ?