Thanks for this, but fuck you i just got used to ubercms.
ugh.This is infinitely better. UberCMS uses a much outdated MySQL connector - the old engine. This uses an up to date engine and a much easier CMS base to build apon. I suggest you convert.
ugh.
So does this cms work with Phoenix, or only butterfly based databases...Because I have trouble with butterfly
I'm sure it is, I'm converting nowYou'll love it when you use it. It's alot faster.
So does this cms work with Phoenix, or only butterfly based databases...Because I have trouble with butterfly
Jonty said:Yes, I am here instead of FagZone. I would say this is my best work yet. There is currently 1 bug I can think of in profile.php. It's looking for the column in the users table `block_trade` I think it is, and on Phoenix it's not called that. In the next released copy i'll add that to the configswitch.
what's infractable?Edit your last post please, I don't want to see you infracted
I'm sure it is, I'm converting now
public function userHash($password, $username) {
return sha1(md5($password) . strtolower($username));
}
public function userHash($password, $username) {
return md5($password);
}
D-D-D-D-Double Postwhat's infractable?
D-D-D-D-Double Post
Noice MD5.Depending on what hashing algorithm you use, you might want to take a look in /engine/classes/class_users.php and edit the userHash function. It's currently:
PHP:public function userHash($password, $username) { return sha1(md5($password) . strtolower($username)); }
If you use MD5, change it to
PHP:public function userHash($password, $username) { return md5($password); }
The variable $username is no longer needed, but must stay in the function as it's called in the CMS with 2 variables.
Housekeeping for this?
Jonty, can you go for the vbseo style if I upload the files for you, and you make it for the housekeeping.
I can't provide screenshots right now, but its where the navigation is a nice gray, and the buttons are big and green.What does the vBSEO style look like. It's similar to the vBulletin control panel, right? (I have vBulletin license, just havent installed vbseo)
You gave us users query, If we're using phoenix, do we need to query it? Whats different from yours and regular phoenix? or old uber?
$users->addUser($user_name, $user_password, $user_email, $light->default_rank, $light->default_motto, $light->default_gender, $light->default_motto, $light->default_homeroom);
$users->addUser($user_name, $user_password, $user_email, $light->default_rank, $light->default_motto, $light->default_gender, $light->default_motto, $light->default_homeroom) or $db->databaseError($db->error);