user list + new user
Moderator: Thorsten
user list + new user
Hi,
I upgraded to 2.0.2 but i can't see any of the user i created with version 1.6.8.
Besides I can't see new user either and new users can't access to admin to create articles. I see the new user logged in on the front page or in admin but to access user/content/statistics i have to log in again and nothing happens.
As i can't see users in the list i can't give new users some rights to access the tabs. Is this my problem?
I saw this bug will be fixed in version 2.0.3. Do you have an idea of when it will be released?
Thanks for help.
I upgraded to 2.0.2 but i can't see any of the user i created with version 1.6.8.
Besides I can't see new user either and new users can't access to admin to create articles. I see the new user logged in on the front page or in admin but to access user/content/statistics i have to log in again and nothing happens.
As i can't see users in the list i can't give new users some rights to access the tabs. Is this my problem?
I saw this bug will be fixed in version 2.0.3. Do you have an idea of when it will be released?
Thanks for help.
+1
hi,
I have the same problem with user list in the admin list
My config :
I have the same problem with user list in the admin list
Code: Select all
http://localhost/fos/admin/index.php?action=user
- V2.0.2
wamp server
win XP sp 2
Hi,
can you please post the user names from your database here? Only the names.
thank you!
bye
Thorsten
can you please post the user names from your database here? Only the names.
thank you!
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
up !
here they are :
I found someting in the user list xml file, it may cause the bug :
(I look in "ajax.user_list.php" file but didn't found how to solute the bug, sorry)
Talking about something else, are you interrested with the french lang file for phpmyfaq 2.02 version ?
Code: Select all
SELECT display_name FROM faq_faquserdata ;
""
"Anonymous User"
"test"
"NICOUE Diane"
"GAILLAT Jean"
(I look in "ajax.user_list.php" file but didn't found how to solute the bug, sorry)
Code: Select all
<item name="email">
<name>adresse email :</name>
<value></va
ad1
lue>
</item>
I FOUND THE BUG
Finally after some sweat I get it!
It was only a problem with that sort of caracter :
the solution was on the "language_fr.php file"
doesn't work
but this one do..

It was only a problem with that sort of caracter :
Code: Select all
é and
Code: Select all
$PMF_LANG["ad_entry_email"] = "adresse email :";
$PMF_LANG["ad_user_realname"] = "Nom réel :";
Code: Select all
$PMF_LANG["ad_entry_email"] = "adresse email :";
$PMF_LANG["ad_user_realname"] = "Nom réel :";





Hi,
ah... thanks!
Could you please file a bugreport for that with your patch on http://bugs.phpmyfaq.de!
Thanks!
bye
Thorsten
ah... thanks!
Could you please file a bugreport for that with your patch on http://bugs.phpmyfaq.de!
Thanks!
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
well it's not realy finished...
I cure the first bug but now checkboxes are not checked in the user/group view (last div on the right) even if my user/group have the good right set in the data base...
I will post à topic about this patch when it will be closed.
You didn't tell me if you are interested in french translation for 2.0.2 version?
I cure the first bug but now checkboxes are not checked in the user/group view (last div on the right) even if my user/group have the good right set in the data base...
I will post à topic about this patch when it will be closed.
You didn't tell me if you are interested in french translation for 2.0.2 version?
Hi,
I'm always interested in improved translations... please send it to me. Thanks!
bye
Thorsten
I'm always interested in improved translations... please send it to me. Thanks!
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Hi!
Changing the french translation file wasn't enough to solve the user/group bug.
look at my solution :
Changing the french translation file wasn't enough to solve the user/group bug.
look at my solution :
- 1 - change every word containing "&" by is right accent wich means
Code: Select all
"déjeuner" become "déjeuner"
2 - change this code on the group.php file (line 465)into this one (issue from "user.php")Code: Select all
// build new table row checkbox = document.createElement('input'); checkbox.setAttribute('type', "checkbox"); checkbox.setAttribute('name', "group_rights[]"); checkbox.setAttribute('value', right_id); if (isGroupRight == 1) { checkbox.setAttribute('checked', "checked"); } table_addRow(group_rights_table, i, checkbox, document.createTextNode(right_name));
Now it's all right with firefow and IE[/code]Code: Select all
// build new table row checkbox = document.createElement('input'); checkbox.type = 'checkbox'; checkbox.name = 'group_rights[]'; checkbox.value = right_id; setTimeout((function(checkbox, isGroupRight) { return function() { checkbox.checked = isGroupRight == 1; } })(checkbox, isGroupRight), 10); table_addRow(group_rights_table, i, checkbox, document.createTextNode(right_name));