Search results

  1. JynX

    BrainCMS News Author

    Try this as your query for inserting: http://pastebin.com/M9m2AhRS
  2. JynX

    BrainCMS News Author

    Uhm, the actual site news please.
  3. JynX

    BrainCMS News Author

    Can you give us the code on your news page so we have something to go off of?
  4. JynX

    Recruiting Need a Developer to Help Me Fix Hotel

    Skype: JakeRetros123 :p
  5. JynX

    @Hender is very busy sir, if you'd like, you can schedule an appointment with the lady at the...

    @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*
  6. JynX

    Micro Hotel Release (Cabbo Edit)

    JakeRetros123
  7. JynX

    gravedigger

    gravedigger
  8. JynX

    Micro Hotel Release (Cabbo Edit)

    Uhm, delete column `staff_pin` and put your pin inside the column labeled `housekeeping_pin` and try again. :)
  9. JynX

    Applicant Developer Position

    Bump, still looking for a hotel.
  10. JynX

    MD5 TO SHA1

    OMRetros, do you have teamviewer so I can explain it more in detail?
  11. JynX

    MD5 TO SHA1

    return password_hash($password, PASSWORD_BCRYPT); Can't have bcrypt
  12. JynX

    MD5 TO SHA1

    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)
  13. JynX

    MD5 TO SHA1

    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.
  14. JynX

    Micro Hotel Release (Cabbo Edit)

    What's not working? Could you provide some screenies?
  15. JynX

    [Question] Dumbest thing/mistake you've done whilst coding

    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"..
  16. JynX

    Micro Hotel Release (Cabbo Edit)

    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.
  17. JynX

    [Question] Dumbest thing/mistake you've done whilst coding

    *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...
  18. JynX

    [HELP] Looking for a new Emulator.

    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:
  19. JynX

    [HELP] Looking for a new Emulator.

    https://devbest.com/threads/r63a-gte-jaycustoms-edits.78852/
  20. JynX

    Users can sign up with more than 1 account?

    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...
Top