Search results

  1. Ecko

    Quick IIS question

    check web.config
  2. Ecko

    GTA 5 Views

    Not official yet, but this site seems to get our hopes up: http://societyandreligion.com/gta-5-pc-release-date-leaked,1816
  3. Ecko

    Small social network MySQL help

    http://www.w3schools.com/sql/sql_join_inner.asp Combine the statuses table with the friendships table and use a WHERE clause to determine if they are friends.
  4. Ecko

    Small social network MySQL help

    INNER JOIN
  5. Ecko

    Index of

    http://httpd.apache.org/docs/current/mod/mod_autoindex.html
  6. Ecko

    Index of

    Just don't add an index page? Or create a DirectoryIndex to a non-existent file/folder
  7. Ecko

    Anyone know a good protection for your hotel?

    SecurePort by Staminus
  8. Ecko

    Convert .htaccess to Web.Config

    http://msdn.microsoft.com/en-us/library/ms972974.aspx http://www.iis.net/learn/extensions/url-rewrite-module/using-the-url-rewrite-module
  9. Ecko

    [Question] How to transfer big files from pc to VPS faster

    Setup FileZilla server on your VPS then download FileZilla client and connect.
  10. Ecko

    [VPS error] Some undefined errors in the CMS [DeltaCMS]

    Put this in your .htaccess file: php_value display_errors 0 I'd only recommend it if you are not seeing any loss of functionality within the script.
  11. Ecko

    PHP MYSQL HELP

    idg why you're not using AUTO_INCREMENT
  12. Ecko

    PuTTY Problem?

    PuTTY does not show password input to prevent people who are looking at your screen from knowing how long your password is. It's a security feature on lots of applications that use SSH.
  13. Ecko

    b64 decoding

    The crypt() function uses a one way algorithm, so good luck. Don't know why you encoded it so many times either.
  14. Ecko

    [Help]Stupid Unknow Error[Help]

    var_dump($user); $user->logged_in is not an object of $user public function is_Admin() { global $user; return($this->rank == 7); }
  15. Ecko

    [PHP/MYSQL]Not Working ~ News System[PHP/MYSQL]

    if(isset($_GET['id'']))
  16. Ecko

    [Help]Stupid Unknow Error[Help]

    That doesn't help. We won't know what it's referencing if we can't see the line that is throwing the error. At this point it could be a lot of things... $user may not be an object or could be empty. run var_dump() on that or give print_r() output on the query to see if it's returning the...
  17. Ecko

    [Help]Stupid Unknow Error[Help]

    Might be helpful if you posted the lines that have the errors on them from login.php
  18. Ecko

    PHP Help

    I know exactly what it means, I'm wondering why you are even using it when it is utterly useless. All you need is. echo $user; Your method would only be necessary if you were echoing plaintext before the variable.
  19. Ecko

    PHP Help

    What's with the ''. .'' ..? Post your full code, no one wants to try and make sense of it while looking at it on a youtube clip.
  20. Ecko

    Free | Portfolio-ish

    Looks decent. What's with the two css files? And the extra background.png?
Top