Closed (fixed)
Project:
Site User List
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Reporter:
Created:
24 Apr 2007 at 21:40 UTC
Updated:
22 May 2007 at 01:26 UTC
I installed the Site Site User List module and now user data is not being written to the to the profile_data table and is being written to the user table in a serialized format instead. Additionally, new user data (users who signed up after the module was installed) do not show any profile field data on the Site User List page, but they do show the data in their account pages.
I have 2 questions:
1.) Is there a way to get data missing from the profile_data table back into it? Perhaps move it over from the user tabel?
2.) Can I get new user data to go into the profile_data table?
Thanks, Moses
Comments
Comment #1
pukku commentedHi! Does it look like http://drupal.org/node/119114 might be the source of your problem? Site User List can't really cause these problems — in order to affect the data saved, I would need to implement hook_user, and I don't...
Ricky
Comment #2
flamingvan commentedI saw that node. The problem occurred the same day I installed the Site User List module, which seems like an unlikely coincidence. But maybe...
Comment #3
flamingvan commentedI applied the patch from that page. Now data is going into the profile_values table, which is great! But new users still don't show the values on the Site User List page.
Comment #4
pukku commentedHi! If you are using MySQL < 5.0, or have selected to use a table rather than a view (not refering to the Views module, but an SQL view) for some reason, you will need to regenerate the table every time any changes (such as new users or changes in data) are made. This is why, if you have MySQL >= 5.0 (or PostgreSQL), I suggest using a view.
Ricky
Comment #5
Microbar commentedHi, I'm not a developer but I hope this observaetion will be of use to one.
I also have had this problem, I found purely by accident that if one goes to the view personal data page and clicks submit then when site user is run again the dat is now there. Please help!
Comment #6
pukku commentedHi! This is because of the issue at http://drupal.org/node/119114. You need to apply the patch located there, which will fix the problem with profile.module. Then data will properly get put into place for site_user_list to be able to use it.
Comment #7
pukku commentedThis isn't really a problem with Site User List...