Page 2 of 2
Re: Frontend User Management - add user
Posted: Wed Jun 09, 2010 12:18 pm
by janb
OR don't you have that table at all?
Uninstall/install FEU...
JanB
Re: Frontend User Management - add user
Posted: Wed Jun 09, 2010 12:21 pm
by Sabrinan
i'v uninstall and install it again.. what now?
i still don't have the module_feusers_grouppropmap", "force_unique"
where do i put the UDT
------
To fix this before an update is available make a new UDT (User Defined Tag) name it feu19tablefix and add this code:
Code:
global $gCms;
$db = &$gCms->db;
$dict = NewDataDictionary($db);
$sql_add = $dict->AddColumnSQL(cms_db_prefix()."module_feusers_propdefn", "force_unique I1");
$sql_drop = $dict->DropColumnSQL(cms_db_prefix()."module_feusers_grouppropmap", "force_unique");
$dict->ExecuteSQLArray($sql_add);
$dict->ExecuteSQLArray($sql_drop);
Use the UDT in a content page like this {feu19tablefix}, load the page once and then remove the UDT from the page after you have checked that everything is ok. Then you can also delete the UDT.
Re: Frontend User Management - add user
Posted: Wed Jun 09, 2010 12:49 pm
by janb
What tables do you have with cms_sandbox_module_feusers_ prefix?
Should be:
cms_sandbox_module_feusers_belongs
cms_sandbox_module_feusers_dropdowns
cms_sandbox_module_feusers_grouppropmap
cms_sandbox_module_feusers_groups
cms_sandbox_module_feusers_groups_seq
cms_sandbox_module_feusers_history
cms_sandbox_module_feusers_loggedin
cms_sandbox_module_feusers_propdefn
cms_sandbox_module_feusers_properties
cms_sandbox_module_feusers_properties_seq
cms_sandbox_module_feusers_tempcode
cms_sandbox_module_feusers_users
cms_sandbox_module_feusers_users_seq
JanB
Re: Frontend User Management - add user
Posted: Wed Jun 09, 2010 12:56 pm
by Sabrinan
i don;t have the cms_module_feusers_grouppropmap
Re: Frontend User Management - add user
Posted: Wed Jun 09, 2010 12:57 pm
by janb
Ahh..
There is a bug in 1.9.2 preventing "module_feusers_grouppropmap" to install, use 1.9.3
Re: Frontend User Management - add user
Posted: Wed Jun 09, 2010 1:10 pm
by Sabrinan
it works
i didn't even saw the update

*shame on me*
thank you so much for your help!!!
Re: Frontend User Management - add user
Posted: Wed Jun 09, 2010 1:45 pm
by janb
Great..
Missed the bug, shame on me as well
Remember to add [Solved] to the subject in the first post...
JanB
Re: Frontend User Management - add user
Posted: Wed Jun 09, 2010 1:45 pm
by Sabrinan
one final question...
my language is dutch
but by: Change Settings Template
there are 3 fields:
Settings
Passwords do not match
Username:
Password:
Again enter a new password here to change your password.
submit cancel
Red: that stays in Englisch.. how do i get that to dutch

?
note: the passwords do not match, you get that if you do submit without entering
Re: Frontend User Management - add user
Posted: Wed Jun 09, 2010 1:58 pm
by janb
You can't in FEU. No support for that yet...
..but try to change "Default language for the frontend" in Global Settings/General Settings.
passwords do not match, you get that if you do submit without entering
Must admit I've never tried to do that...
Do you intend to use no passwords?
JanB
Re: Frontend User Management - add user
Posted: Wed Jun 09, 2010 2:06 pm
by Sabrinan
hmm ok...
i can choose dutch as a default language...
only::
farsi
english
kazakh
Re: Frontend User Management - add user
Posted: Wed Jun 09, 2010 2:10 pm
by janb
??
Did you installed the full version of CMSMS?
JanB
Re: Frontend User Management - add user
Posted: Wed Jun 09, 2010 2:20 pm
by janb