I’ve been adding CMS functionality to a site using modx Evolution 1.0.2. I’ve been doing this on my local dev server (MAMP) and recently put up a copy of the site on a shared host (Bluehost) and everything seems to be working fine except that new users cannot login (wrong username/password combination). Users that were created on my local dev server (and imported via SQL import) work fine as long as I don’t change their passwords. Any ideas?
Update & Answer
So I had accidentally set the database collation to "ucs2_general_ci" instead of what my local dev server was set to, "utf8_general_ci". All the tables where correctly set, but not the database itself. Changing this seems to have fixed the problem. I’m not sure that this was it, but I guess it must be since nothing else changed.
This was also
posted to StackOverflow with more details in the question.