Search results

  1. Ecko

    How to leverage browser caching

    Since I see a lot of people release stuff that uses big ass images and don't know how to cache stuff to increase page load times, I'm going to explain how. Note: This is for Apache where mod_expires and mod_headers are enabled, although you can read this great article for most major web...
  2. Ecko

    Simple Coming Soon template [HTML, CSS, JS]

    Cache-Control: max-age=0 people need to learn how to cache images
  3. Ecko

    [PHP] Referencing a Class within another Class

    global is not a function. he actually gave you the answer
  4. Ecko

    Logo Request [Will Pay $]

    still waiting on 1 person's input
  5. Ecko

    HoME

    this is hiddeous also wtf: <script src="js/jquery.js" type="text/javascript"></script> <script src="js/jquery-ui.js" type="text/javascript"></script> <script src="js/bootstrap.min.js" type="text/javascript"></script> <script src="js/raphael.min.js" type="text/javascript"></script> <script...
  6. Ecko

    Logo Request [Will Pay $]

    i'll show this to the others involved in this to get feedback, ty
  7. Ecko

    Logo Request [Will Pay $]

    i don't just need the text, i need an actual logo next to the text (left side)
  8. Ecko

    [help] User selected background

    you can just overwrite the bg element without having to load a different stylesheet .
  9. Ecko

    [help] User selected background

    that's dumb keep default bg in css file (for non logged in users). then run an if statement for when they are logged in to see which bg they have selected. overwrite the default bg within that if statement to select the one they have chosen.
  10. Ecko

    Show DevBest rbbit.pw | rabbit.paw - Fast File Sharing Service

    https://www.owasp.org/index.php/Cross-Site_Request_Forgery_%28CSRF%29_Prevention_Cheat_Sheet
  11. Ecko

    Show DevBest rbbit.pw | rabbit.paw - Fast File Sharing Service

    you need to use a token system on the upload. in one hour i could destroy your disk usage/bandwidth by sending the same headers over and over
  12. Ecko

    Show DevBest rbbit.pw | rabbit.paw - Fast File Sharing Service

    then learn to use a token system otherwise this shit is too easy to fuck with before: after: i could kill your bw and du in one night
  13. Ecko

    Show DevBest rbbit.pw | rabbit.paw - Fast File Sharing Service

    learn to add a captcha lol
  14. Ecko

    Show DevBest rabbit.paw - Coming Soon.

    hey another one of 'your' projects that will be dead in a few months
  15. Ecko

    REMOVED.

    There is nothing wrong with using bcrypt (which PHP 5.5 does with the password_hash() function). bcrypt is 10,000x slower than sha1 and as long as you do not use a fixed salt you will be fine (it's actually better to let the salt be generated by random noise from the OS). Even if processors get...
  16. Ecko

    HELP/Hiring Herewehost.eu WHMCS knowledge

    Assuming you're using cPanel/WHM: http://docs.whmcs.com/CPanel/WHM#Supported_Features
  17. Ecko

    Sports Whos the best basketball player ?

    Wade and Bosh are not superstars. Wade doesn't even play back to back and his season averages are pretty shit. Bosh is just trash. Westbrook has been killing it this season prior to his surgery. Ibaka and Westbrook are more superstars than Wade and Bosh (this can be confirmed by look at their...
  18. Ecko

    Sports Whos the best basketball player ?

    http://espn.go.com/nba/hollinger/statistics KD has a higher PER. KD averages more rebounds, blocks, steals and points. Lebron's averages in all categories have went down this year compared to last season. KD has went up in 3.
  19. Ecko

    REMOVED.

    note u should be using php 5.3 or above class bcrypt { private static $algorithm = '$2y$'; private static $cost = '10'; // check if bcrypt() is usable public static function isAvailable() { return defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH...
  20. Ecko

    REMOVED.

    if using php 5.5: http://us2.php.net/password-hash otherwise use bcrypt (if u need an example lmk)
Top