Search results

  1. Higoka

    MySQL Errors - Access Denied

    did you create the user "br3n" else use "root" and make sure the password is correct
  2. Higoka

    Habbo Club upon register?

    you can try running this sql query: ALTER TABLE users_settings ALTER club_expire_timestamp SET DEFAULT '1735689600'; this will set the expire date to 01/01/2025 and every new user automatically has that. if you want to update your existing users run this sql query: UPDATE users_settings SET...
  3. Higoka

    Parse error?

    you are probably missing a semicolon ; in the line above that
  4. Higoka

    SimpleCMS

    you stupid?
  5. Higoka

    How to fix this CSS code?

    no. you dont need them flexbox is supported by 98.45%. only IE10 needs prefix but nobody uses it anyway
  6. Higoka

    How to fix this CSS code?

    dont know if this has been fixed but try using flexbox. remove the old display and add these attributes to #main-block display: flex; flex-direction: column;
  7. Higoka

    AstroCMS (Comet Emulator)

    "This CMS is completely safe because it contains no flaws like XSS or SQL." Its not safe. you are using md5 for password encryption. md5 can easily be cracked. use bcrypt or even better use argon. also dont store user passwords in sessions. also xss is possible in your cms. you need to escaped...
  8. Higoka

    CSS Help - Navbar Overlapping content

    just give .banner a margin-top with the height of the nav that way it never gonna overlap
  9. Higoka

    SimpleCMS

    i can already tell based off that screenshot that there are probably going to be sql injections and xss attacks possible - use prepared statements - escape everything before printing to html - dont mix php with html
  10. Higoka

    Automatic Furniture Fixer

    better use this to add or remove graphic tags: https://github.com/higoka/habbo-graphics-tag
  11. Higoka

    Req | Habbo 2020 Production(Habbo.swf) & Packets

    to download the latest production you could use my tool: https://github.com/higoka/habbo-downloader to crack and extract the packet ids you could try and use HabKit but im not sure if it works for the newer productions
  12. Higoka

    Emulator error restarts people.

    make sure you are looking in the right database
  13. Higoka

    Emulator error restarts people.

    the code never lies. if its really there this error wont come up
  14. Higoka

    Some Spanish errors in index...

    dont know what cms ur using but probably in index.php or if it has a language system maybe in the translation files
  15. Higoka

    Client Re-directs to SWF folder

    can you post your client.php
  16. Higoka

    Delete a room from outside of the game

    replace :roomId with the id from the room you want to delete. DELETE FROM rooms WHERE id = :roomId LIMIT 1; DELETE FROM items WHERE room_id = :roomId;
  17. Higoka

    [HELP] index not detected?

    are you using apache or iis?
  18. Higoka

    Phoenix emulator problem

    game port and mus port cannot be the same i recommend 30000 for game 30001 for mus
  19. Higoka

    Error on website

    give read and write access to App folder and public folder
  20. Higoka

    Error on execute database

    run this query first then import your database: SET @@global.sql_mode= '';
Top