Search results

  1. Data

    Client Connection Dropped

    What EMU are you using? Are you using a proxy?
  2. Data

    error?

    People normally get this type of error when they don't install PHP.
  3. Data

    PHP code help.

    Just thinking, might not work but have you allowed permission for the file to be read?(or w.e it is)
  4. Data

    PHP code help.

    Does the folder even exist? http://live.demo.savor.ws/Downloads/web_promo.zip
  5. Data

    question

    On Topic: Just make a beta script so they need a valid key in order to signup. Or just comment out register function until you launch your site. Off Topic: Thanks for ignoring me on kik :)
  6. Data

    PHP code help.

    Just try the direct link? <?php if ($handle = opendir('app/tpl/skins/Habbo/images/web_promo')) // Or whatever CMS you use change to the direct URL { while (false !== ($file = readdir($handle))) {...
  7. Data

    Other ways to get https?

    I am sure it's todo with the set header, needing to be changed to another type(check below). proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; Or in your code try do it by $_SERVER['HTTP_X_REAL_IP']. I am working on my own CDN scripts at...
  8. Data

    Other ways to get https?

    You don't have to have a cdn to use a SSL certificate, you can get HTTP Proxies and setup an SSL certificate with them.(Or even just set them up directly with your server).
  9. Data

    Looking for/Hiring a Habbo Retro (R63B) developer for my hotel (VPS Run)

    Who would accept a position if they aren't even getting access? Going on teamviewer every time and could be fired after wasting their time doing things for you?
  10. Data

    RevCMS Player of the week and Room of the week system

    Just add this in a box and do the styling yourself. <?php $user = 'TheUserOfTheWeekHere'; $userinfo= mysql_fetch_assoc(mysql_query("SELECT * FROM users WHERE username = '{$user}'")); ?> <img src = "https://www.habbo.nl/habbo-imaging/avatarimage?figure=<?php echo $userinfo['look']; ?>"><br>...
  11. Data

    Reminder

    Off topic: Message me on kik. On topic: The original RevCMS only had the mango and priv theme. Look for a release with it and copy the me page?
  12. Data

    Any good TCP Proxy host?

    They closed on the 28th of august, the owner Elliot posted a status on facebook saying don't pay your invoices as all services will be shutdown on the 28th.
  13. Data

    Any good TCP Proxy host?

    SoYouStart is great, but unlike going with OVH directly they don't have instant migration and it takes about 5 minutes of your uptime per attack.
  14. Data

    Hiring a GFX for Habbi Hotel

    You need to growup.
  15. Data

    Hiring a GFX for Habbi Hotel

    I haven't seen any posts in this thread mentioning code, you are an idiotic cunt who used Liam for users and begged him to come back to you. "You can't code" really? What a great comeback! not. Piss off, you aren't wanted here.
  16. Data

    Register problem "Field 'referer' doesn't have a default value"

    Go to navicat and go to wherever the 'referer'(probably users) colum is and give it a default value, this query should work. ALTER TABLE `users` MODIFY COLUMN `referer` varchar(100) NOT NULL DEFAULT '0';
  17. Data

    Hiring a GFX for Habbi Hotel

    Who cares about votes, it does nothing apart from slow users down when signing up and going on the client.
  18. Data

    Hiring a GFX for Habbi Hotel

    Just briefly read what @Each and @zJoey have been posting, I think you are both total idiots he didn't ask for your opinion on Habbi. He simply asked if someone wants to do graphics work for his hotel. For Joey: If you want to argue somewhere why don't you take it to a skype conversation? You...
  19. Data

    CRON scripts

    Set it up as a cron, best thing to do I guess. <?php $select = mysql_fetch_assoc(mysql_query("SELECT * FROM users WHERE rank >= 2")); mysql_query("UPDATE user_stats SET DailyRespectPoints = '5' WHERE id = '{$select['id']}'"); echo 'Done.'; ?> I don't know if this will work, but that is...
  20. Data

    CRON scripts

    Just setup a navicat event.
Top