Search results

  1. MayoMayn

    Ajax to PHP form.

    You arent supposed to put the values for the ID in the database if its auto incremented. Simply remove the `id` and '' inside the query. EDIT: Like so: mysql_query("INSERT INTO `chat` (`username` ,`message`,`time`,`ip`) VALUES ('$username','$comment', '$time', '$realip')"); // enters into chat...
  2. MayoMayn

    Show DevBest [PHP] Easy class & interface loading with automatic initializing

    Well, @Wess you asked and I decided to code it. Could use some changes etc, just gonna post it for now. index.php // Require app autoload require_once __DIR__ . '/app/autoload_namespace.php'; $class = new Syberia\Autoload([ Syberia\Http\Request::class, Syberia\Controller\Home::class...
  3. MayoMayn

    [PayPal IPN] Automatic Shopping System

    You need to set the redirect url in your settings, and the callback url in ur form
  4. MayoMayn

    Bronson you even know the true story about Eminems rap career? Obviously not. Never stated he...

    Bronson you even know the true story about Eminems rap career? Obviously not. Never stated he was bad, you're just too naive to be capable of reading what I write. His lyrics are just shite compared to those artists. Example http://genius.com/amp/Vinnie-paz-end-of-days-lyrics
  5. MayoMayn

    Mark, they're the real deal compared to Eminem. Here's a playlist of mine...

    Mark, they're the real deal compared to Eminem. Here's a playlist of mine: https://open.spotify.com/user/11168814319/playlist/0GYBtZzCAc1N6l76RvveqP
  6. MayoMayn

    Best VPS host for Habbo Retro[EU]

    Sadly not :P
  7. MayoMayn

    Wish artists like Slaine, Vinnie Paz, Celph Titled, Eminem and Immortal Technique did tours in...

    Wish artists like Slaine, Vinnie Paz, Celph Titled, Eminem and Immortal Technique did tours in Denmark, but sadly people have a crappy music taste.
  8. MayoMayn

    PlusEMU Support thread.

    Try to disable sso tickets on the client Sent from my SM-G928F using Tapatalk
  9. MayoMayn

    MyBB Code request

    I'd not recommend using MyBB, well they're decent but they got an insecure file uploader which can easily be exploited and by that upload a php shell through it. Sent from my SM-G928F using Tapatalk
  10. MayoMayn

    [PayPal IPN] Automatic Shopping System

    http://braintreepayments.com Sent from my SM-G928F using Tapatalk
  11. MayoMayn

    Recruiting Hiring for Crime Life

    I've seen the Steam Greenlight trailer, and well, the concept is great, but vampire fucking looking characters with wings? wtf Some things could use a big improvement, e.g the player info box that gets shown above the players heads.
  12. MayoMayn

    RevCMS BCRYPT

    1. Jays reply wasn't even a correct way to verify password hashes with the built-in functions, as I've mentioned several times, but you clearly didn't bother to read before commenting. 2. Nope, it isn't, not if you apply a salt, as is recommended, and is a default by crypt, base64. mcrypt...
  13. MayoMayn

    RevCMS BCRYPT

    Definitely not the password verifying thats wrong with, I can tell you that. EDIT: All I can suggest, is getting a new cms that isnt deprecated as fuck.
  14. MayoMayn

    RevCMS BCRYPT

    It's fine, I recoded RevCMS to PDO a year ago, which included bcrypt as password hashing. You're just doing it wrong. Could you post an example of the hash in the password column inside the users table? If its not something like this $2y$12$, in the start then you're definitely doing it wrong.
  15. MayoMayn

    RevCMS BCRYPT

    Just change your userValidation function to this. final public function userValidation($username, $password) { $query = mysql_query("SELECT `password`FROM `users` WHERE `username` = '".mysql_real_escape_string($username)."' LIMIT 1"); $dbpass = mysql_result($query, 0)...
  16. MayoMayn

    RevCMS BCRYPT

    Drop me your userValidation function, because I can see the error. Are you using password_verify() or are you just simply checking the two hashes against eachother? Because you're pretty much hashing the entered password on this line: if($this->userValidation($template->form->log_username...
  17. MayoMayn

    RevCMS BCRYPT

    Dunno how the heck your login function works, this was an example on how passwords are verified. Don't expect me to write a whole script for you, because then you'll never truly understand it, before you do it yourself. Never used RevCMS in production, and would never bother to do so. EDIT...
  18. MayoMayn

    RevCMS BCRYPT

    What the hell kind of password validation is that lmfao. First query line, select password from users where username is post password? Wtf. Either way, this wouldn't work, since you're not verifying the posted password, you're just hashing the input and checking it against the one in the...
  19. MayoMayn

    Show DevBest InGame - Gaming Database.

    Second, looks best for this template. Sent from my SM-G928F using Tapatalk
  20. MayoMayn

    Show DevBest InGame - Gaming Database.

    Yeah, so it sticks to the bottom of the page, instead of floating in the middle of the page Sent from my SM-G928F using Tapatalk
Top