Search results

  1. Chuckie_

    RevCMS - New page is messing up.

    Try turn on php errors using this: https://stackoverflow.com/questions/1053424/how-do-i-get-php-errors-to-display Then see what errors you get when trying to access the site.
  2. Chuckie_

    Request Reception logo drape

    Couldn't find the miniature version of that hotel myself. Hope the one supplied is okay. :-) @BR4N No need to be that way
  3. Chuckie_

    Request Reception logo drape

    Here is the one using the assets from the tutorial that I linked earlier. Also aligned the letters correctly, as you had some pixels errors on the upper part. I can do the one from Boon if you can provide the hotel image used.
  4. Chuckie_

    Request Reception logo drape

    This is just a downsized landing page background sat behind the text? And you have not removed the white background from the overall image.
  5. Chuckie_

    Request Reception logo drape

    Haven't got the time myself, but you should just follow this simple tutorial: https://devbest.com/threads/make-your-own-reception_logo_drape.85391/. Reuse your existing banner where you could just crop out the text and place the hotel image behind it. @Niko001 Are you honestly asking $1 for...
  6. Chuckie_

    [RESOLVED] MySQLi Issue

    I prefer not using my discord for that. You'd learn more from messing around with the migration yourself too, but make sure that you've provided 4 arguments in your connection and are using a proper mysql version. Google is your friend too.
  7. Chuckie_

    [RESOLVED] MySQLi Issue

    Try changing all the mysql functions to their respective mysqli version in the initiate function.
  8. Chuckie_

    [RESOLVED] MySQLi Issue

    Again, what CMS is this? Seems it has configuration to either use mysql or mysqli. Redo what I sent and try changing your mysql type in the configs to mysqli.
  9. Chuckie_

    [RESOLVED] MySQLi Issue

    What cms is this? Would you be able to share the entire class.engine file? *EDIT: Try using this: $this->connection = mysqli_connect($_CONFIG['mysql']['hostname'], $_CONFIG['mysql']['username'], $_CONFIG['mysql']['password'], $_CONFIG['mysql']['database']); If database isn't configured in your...
  10. Chuckie_

    Morningstar Switched catalog from Wullez to Rystbo's runtime error.

    Seems some of the values in the database are using strings instead of integers, but not entirely sure.
  11. Chuckie_

    Landing page Top 10 richest users

    For Arcturus based emulators, iirc it's located in the emulator_settings. Might be the same for Plus.
  12. Chuckie_

    GoldFish CMS [1.3.0][Arcturus Morningstar]

    Looks like you linked to a succesful composer install. Where is the error?
  13. Chuckie_

    %76 (BrainCMS)

    Your emulator config file says UberEmulator and the CMS supports either Plus or Arcturus?
  14. Chuckie_

    [BRAIN 1.9.1] Illumina Habbo

    He has provided the base cms in the post which should contain sqls for the db. Afaik Brain supports both Plus and Arcturus, so you'd just have to download those from whereever they are found.
  15. Chuckie_

    GoldFish CMS [1.3.0][Arcturus Morningstar]

    Does work with xampp. What php version are you running? What errors are you getting? Have you properly installed all dependencies and filled out details in the .env file?
  16. Chuckie_

    GoldFish CMS [1.3.0][Arcturus Morningstar]

    Downgrade from what? This cms exceeds 80% of others cms released in this community. And yeah, calling this a rev re-release is really dumb.
  17. Chuckie_

    Arcturus // Add custom furni.

    My bad, sorry. Looks correct. Is the swf located in the hof_furni folder, and have you tried refreshing your cache?
  18. Chuckie_

    Arcturus // Add custom furni.

    Doesn't seem like you are using the correct item_ids in your catalog_items INSERT. Whole query looks odd compared to Arcturus' data structure. Where did you get these from?
  19. Chuckie_

    WiredEffect MoveFurniToUserBox Lag

    First step is stating which emulator you are using.
  20. Chuckie_

    Need help with Online Status

    $user = mysql_query("SELECT * FROM users"); while($user = mysql_fetch_assoc($user)){ $isOnline = ($user['online'] == 1) ? 'online' : 'offline'; echo "<img src='yourimagesfolder'/ . $isOnline . '.filetype'>"; } Should work. Haven't done raw mysql in a while though. *EDIT: If you are...
Top