ok, since i havent done any testing with a MySQL database am not sure if its coded wrong for MySQL, but i would assume its compatible.
if all you've edited is the register.asp file you should be able to just copy over the Mods files without having to enter the code your self. as the mod doesnt change the register.asp file.
the part that acctually saves the skin is in "functions/functions_forumskins.asp" with the following:
strSQL = "SELECT " & strDBTable & "Author.Mod_Skin FROM " & strDBTable & "Author WHERE " & strDBTable & "Author.Author_ID = " & lngLoggedInUserID & ";"
rsCommon.Open strSQL, adoCon,3,3
if not rsCommon.EOF and not rsCommon.BOF then
rsCommon("Mod_Skin") = intSkinID
rsCommon.Update
end if
rsCommon.Close |
the part in red is acctually telling it to only update where the users id is the same as the currently logged in user, ie only update the skin for the user who requested it.
so its rather strange why its updating ALL users.
check the above code is the same as what you've added to your files and if the problem continues i recommend using the Store to Cookies option.