Search results

  1. Ecko

    Session_Start(); being annoying :s

    Use isset() to check if the session is even there in the amlinker() function
  2. Ecko

    How's this computer's specs?

    I'm talking about raw video editing where you have uncompressed video files, gigabytes in size without millions of frames.
  3. Ecko

    How's this computer's specs?

    wtf are you going to do with 32GB of RAM that won't get utilized at all unless you do any of these things: video editing in raw formats with dozens of layers large database handling (large as in 20-50GB large) run multiple VMs with dedicated RAM if not, you are creating unnecessary...
  4. Ecko

    post your speed test

    Learn to read noob: Length: 104857600 (100M) [application/octet-stream] I downloaded a 100 megabyte file in 1.4s The math puts it at 71.4 MB/s, however milliseconds are lost when resolving the file. root@auto [~]# wget -O /dev/null http://cachefly.cachefly.net/100mb.test --2013-06-15...
  5. Ecko

    post your speed test

    root@auto [~]# wget -O - http://cachefly.cachefly.net/100mb.test > /dev/null --2013-06-14 16:31:47-- http://cachefly.cachefly.net/100mb.test Resolving cachefly.cachefly.net... 205.234.175.175 Connecting to cachefly.cachefly.net|205.234.175.175|:80... connected. HTTP request sent, awaiting...
  6. Ecko

    [HTACCESS] Multiple URL Segments

    You'll need to use PHP as well (routing) http://www.phpaddiction.com/tags/axial/url-routing-with-php-part-one/
  7. Ecko

    Sulake had sent a DMCA.

    No it's not, but Cloudflare has a form that is used for submitting abuse/DMCA issues. There's no way of knowing if someone just put in that information (which is easy to find) or if it was legitimately inputted by a Sulake legal representative.
  8. Ecko

    Show DevBest [Release] CookieFramework 2- Updated & Optimized.

    You could use a DRM method, but that is usually used more for licensing of software or products that are purchased. If you're releasing code for free but do not want your copyright to be modified, use something like ionCube or Zend Guard to encode the source (PHP obviously). Non web languages...
  9. Ecko

    Sulake had sent a DMCA.

    Click on the down arrow under [email protected] (next to To: [email protected])
  10. Ecko

    Sulake had sent a DMCA.

    That's not the headers. This is what it should look like: Return-path: <[email protected]> Envelope-to: [email protected] Delivery-date: Tue, 11 Jun 2013 05:21:04 +0400 Received: from root by auto.autobots.biz with local (Exim 4.80.1) (envelope-from <[email protected]>) id...
  11. Ecko

    Sulake had sent a DMCA.

    When you emailed back, was it a counter DMCA? Such as: >The complaint does not follow the prescribed form for notification of an alleged copyright violation as set forth in the Digital Millennium Copyright Act, 17 USC 512(c)(3). Specifically, the complainant has failed to: ~Include a physical...
  12. Ecko

    Sulake had sent a DMCA.

    Post the DMCA. If it's not in valid format then it doesn't mean shit. I see a dozen of them a day and pass them along, but 85% of them are never in the proper format. It's also real easy to send a counter DMCA.
  13. Ecko

    Program/application ideas

    http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/win_kbd_repeat_rate.mspx?mfr=true
  14. Ecko

    Program/application ideas

    This already exists in Notepad++. (NppFTP) You can also use WebDAV
  15. Ecko

    PHP Encryption

    1. bcrypt 2. bcrpyt, scrypt, PBKDF2 3. bcrypt/PBKDF2 since scrypt does not have support built in with PHP 4. Use bcrypt or PBKDF2 5. no, because the hashing algorithm is still md5, at least use sha: function encrypt_PBKDF2($data) { $salt = "76Vygvt6VTYGvt67GvGutvUV7j"; $result =...
  16. Ecko

    Difference Between <DIV> Tags?

    To expand on this: id's are unique, classes are not. For example, you should only use id of "box" once per page. id's also take precedence over classes because of specificity (http://www.w3.org/TR/CSS2/cascade.html#specificity). Here's how somehow explained it to me a long time ago (think of...
  17. Ecko

    Show DevBest Code Editor

    Tried this awhile ago. Thing is horrible with files with a few thousand lines of code.
  18. Ecko

    REMOVED.

    You want the form fields to already be filled with info from the database?
  19. Ecko

    Website to learn css

    http://www.csszengarden.com/
  20. Ecko

    Illuminia CMS [PHP, OOP, MySQLi, Uber 3]

    Insecure CMS is insecure.
Top