@Hender is very busy sir, if you'd like, you can schedule an appointment with the lady at the front desk. Other than that I'm going to have to ask you to leave. *points to door*
Well your old cms is using SHA1 and MD5 as seen in a piece of the code: return sha1(md5($password)
On your new CMS change the stuff that is like this: if (md5($password) == $passwordDb) to something like this:
if (sha1(md5($password)) == $passwordDb)
Just change the way passwords are made/changed in the classes from md5 to what your database is at, which you said was SHA1, and change the way they are read for login and you should be good.
You can also use addons in notepad++ see here.
You can use different designs in notepad++ see here.
Never once has my Notepad++ crashed, never once has it been "buggy"..
Common Solutions:
Fuck PHPMyAdmin and use Navicat
Go in \phpmyadmin\libraries\config.default.php and change $cfg['ExecTimeLimit'] = 300; to $cfg['ExecTimeLimit'] = 0; and restart XAMPP.
*cough* Old thread *cough* Gravedigging *cough*
Sorry, I've got a bit of a cold going on.
ONT: Not true at all, Notepad++ has a plugin that does that and backs it up so that's not anything better, and could you prove that it is the fastest and most stable editor? I'd like to see some stats on...
I'm pretty sure he knows what PlusEMU seeings as there's 10000 posts about it in the help section alone. He also probably wants to work with R63, to be entirely honest I've been working off of Jay's GTE edit just for fun, I find it good to see the good ol' days :d
He also stated:
Try replacing the hasClones with this:
final public function hasClones($ip)
{
global $engine;
if($engine->num_rows("SELECT * FROM users WHERE ip_reg = '" . $_SERVER['HTTP_X_FORWARDED_FOR'] . "'") == 1)
{
return true;
}
return false...