Jump to content
MakeWebGames

sniko

Members
  • Posts

    2,210
  • Joined

  • Last visited

  • Days Won

    47

Everything posted by sniko

  1. Very kind of you. I'll be sure to reply to this thread and PM you when I get some time
  2. / Initiates countdown clock.
  3. Neither, it makes my posts seem for enticing! (It was hard to not do another film thing in this one, I could have made it amazing!)
  4. / Tense music plays / Camera pans across a battlefield / Camera zooms into face [mid-shot] to a commanding general on top of a hill "I'm making a stand!" Haha, yeah, I know - I just don't see the benefit of releasing huge things for free to drive the sales of an inactive product author.
  5. Yeah, me too. I don't like the fact that McCodes have taken a back seat - once again - and allowed the community to drive the sales.
  6. No, it didn't. Perhaps I'll restart development on it when; I get more time McCodes Team becomes more active   - sorry
  7. Ah yes, I forgot to mention that. Good thought. You won't be able to, so I assume you'd have to compensate, or send the cookie value encrypted; even then it's not totally secure. (I expect you knew the answer anyway, but wanted to raise the question for others)
  8. So, I was browsing YouTube, and I came across this guy and this - which he could explain better than me, but in a nutshell, here's the information;  A malicious/naughty naughty person can 'extract' your session/cookie data using XSS through a query string, and 'use' it. (He explains it well in the video) Anyway, he explains that a session/cookie not having httponly set to FALSE can be extracted using javascript, but if httponly is set to TRUE, the sessions/cookies can not be 'executed/manipulated/-whathaveyou-' through javascript - or it's hard to. He uses a very good example in the , extracting a cookie that holds his personal information, and shows that a cookie with httponly = TRUE was not extracted - quite a nifty, yet overlooked, hack/trick.   So how do I set httponly to TRUE? session_set_cookie_params - php manual. I encourage you to watch his as it's really informative. - Stay safe; sniko
  9. Goodie - yeah, it's a shame really. I arrived here when it was known as 'Criminal Existence' - and the community was -somewhat- booming. Seeing it die slowly..... /violin music and camera pans across a desert landscape/ Anyway, back on topic, like I said, excited to see this finished!
  10. Hi Steve, You're on the correct track -although others would have done it differently- it will still yield the same result. I look forward to seeing this complete, to see how you complete it, and what methods you'll use. If you don't have mccodes set up due to the price, how about using McCodes FREE, and then convert it, if you wish it to be for version two as well. If you need help in any areas, PM me (: Good Luck, Sniko
  11. sniko

    Blog Layout

    I like it, simple, clean and very easy on the eyes! Great Job!
  12. I think if you touch up the colours, and the size of the buttons to flow with the main site; you'll have it 10/10!
  13. Incorrect. Search storm8 - Massive user base
  14. Perhaps change your environment. From desktop to tablets and mobile.
  15. .... Look at storm8.
  16. <?php /* "color" -> hex value of the colour, including hash # "style" -> background colour of the option && text colour of the option "tag" -> what it will display in the option */ $colours = array( '#FFFFFF' => array('style' => 'background:#CCCCCC;color:#000000', 'tag' => 'White'), '#000000' => array('style' => 'background:#3C3C3C;color:#FFFFFF', 'tag' => 'Black'), ); if( isset($_POST['submit']) ) { if( array_key_exists($_POST['colour'], $colours) == FALSE ) { /* Not a colour in the array */ echo 'Choose again'; } else { /* Everything OK */ echo 'Colour changed!'; // mysql_query("UPDATE `users` SET `chat_colour`='{$_POST['colour']}' WHERE `userid`={$userid}"); } } echo '<form action="" method="post">'; echo '<select name="colour">'; echo '<option value="">--- Choose One ---</option>'; foreach( $colours as $colour => $additional) { echo '<option value="'. $colour .'" style="'. $additional['style'] .'">'. $additional['tag'] .'</option>'; } echo '</select>'; echo '<input type="submit" value="Do" name="submit" /> </form>'; ?>   http://pastebin.com/T6DcPNi5
  17. Banks with less than a minute data loss.... (Server Management)
  18.   Version 5.5.8 Try updating version?
  19. What version of MYSQL are you running?
  20. UPDATE `users` SET `bankmoney` = LEAST (`bankmoney`+ (`bankmoney` / 100) * 0.2, 500000000) WHERE (`bankmoney` > 0) AND (`donatordays` > 0) AND (`vip_days` <= 0) UPDATE `users` SET `bankmoney` = LEAST ( `bankmoney`+(`bankmoney` / 100) * 0.6, 1500000000) WHERE (`bankmoney` > 0) AND (`donatordays` > 0) AND (`vip_days` > 0)   I believe that should work. Untested.
  21. Site looks awesome! May you post bigger screenshots? It's hard to see
  22. sniko

    ps3 3.55 sale

    Why are you selling it, may I ask?
  23. True, so why not give them (the first account) a unique code that users need to enter to signup again, and it changes every time it has been used.
  24. Thanks DJK and Spud - You learn something new everyday ;) No worries newttster
×
×
  • Create New...