Page 2 of 4 FirstFirst 1234 LastLast
Results 31 to 60 of 109
  1. Collapse Details
     
    #31
    clay stop StompleB's Avatar
    Join Date
    Dec 2011
    Posts
    546
    Quote Originally Posted by Plug Drugs View Post
    i don't know man i see them fine so i dont know
    that's because it's drawing from your cache dumbass
    Reply With Quote
     

  2. Collapse Details
     
    #32
    Lisa
    king steveyos
    Quote Originally Posted by Lisa View Post
    Tards
    Reply With Quote
     

  3. Collapse Details
     
    #33
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    Quote Originally Posted by StompleB View Post
    that's because it's drawing from your cache dumbass
    IT'S THE MIME TYPE STOMPLE I CHECKED THE MIME TYPE THEY ARE SETTING JPGS ARE TEXT/HTML ITS A VERY CLEVER WAY TO MAKE IT SO YOU CAN HOT LINK THERE SHIT
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  4. Collapse Details
     
    #34
    Lisa
    king steveyos
    Quote Originally Posted by StompleB View Post
    that's because it's drawing from your cache dumbass
    DING DING DING DONG

    Winner
    Reply With Quote
     

  5. Collapse Details
     
    #35
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    Properly Configuring Server MIME Types
    IN THIS ARTICLE
    Background
    What are MIME types?
    Technical Background
    Why are correct MIME types important?
    Why browsers should not guess MIME types
    Loss of control
    Security
    How to determine the MIME type sent by a server
    How to determine the correct MIME type for your content
    How to set up your server to send the correct MIME types
    Related Links
    Original Document Information
    Background
    By default, many web servers are configured to report a MIME type of text/plain or application/octet-stream for unknown content types. As new content types are invented or added to web servers, web administrators may fail to add the new MIME types to their web server's configuration. This is a major source of problems for users of Gecko-based browsers, which respect the MIME types as reported by web servers and web applications.

    What are MIME types?

    MIME types describe the media type of content either in email or served by web servers or web applications and are intended to help guide a web browser in how the content is to be processed and displayed. Examples of MIME types are:

    text/html for normal web pages
    text/plain for plain text
    application/octet-stream meaning "download this file"
    application/x-java-applet for Java™ applets
    application/pdf for Adobe® PDF documents.
    Technical Background

    MIME is currently defined in RFCs 2045, 2046, 2047, 2048, and 2049 and registered values for MIME types are available in IANA | MIME Media Types. The HTTP specification defines a superset of MIME which is used to describe the media types used on the web.

    Why are correct MIME types important?

    Example of an incorrect MIME type result If the web server or application reports an incorrect MIME type for content, a web browser has no way, according to the HTTP specification, of knowing that the author actually intended the content to be processed and displayed in a way different from that implied by the reported MIME type.

    Some other web browsers, such as Microsoft® Internet Explorer, try to allow for misconfigured web servers and applications by guessing what the correct MIME type should be. This has sheltered many web administrators from their own errors, since Internet Explorer will continue to process content as expected even though the web server is misconfigured, e.g. displays an image which is reported to be plain text.

    Serving content using the correct MIME type can also be important for security reasons; it's possible for malicious content to affect the user's computer by pretending to be a safe type of document when it is in fact not.

    Note: Historically, Firefox has loaded CSS files even if they had the wrong MIME type, as long as the HTML document that requested them was being processed in quirks mode. For security reasons, Gecko 2.0 will no longer do this for stylesheets loaded from a different origin than the requesting document. If your stylesheet comes from a different origin than the document, you must serve it with the correct MIME type (text/css).

    Gecko 1.9.1.11 (Firefox 3.5.11) and Gecko 1.9.2.5 (Firefox 3.6.5) also implement this security fix, but to improve compatibility, there's a temporary heuristic that allows the load if the first line in the style sheet appears to be a well-formed CSS construct.

    You need to fix your site; this temporary workaround will go away in Firefox 4.
    Why browsers should not guess MIME types
    Apart from violating the HTTP specification, it is a bad strategy for browsers to guess MIME types for the following reasons:

    Loss of control

    If the browser ignores the reported MIME type, web administrators and authors no longer have control over how their content is to be processed.

    For example, a web site oriented for web developers might wish to send certain example HTML documents as either text/html or text/plain in order to have the documents either processed and displayed as HTML or as source code. If the browser guesses the MIME type, this option is no longer available to the author.

    Security

    Some content types, such as executable programs, are inherently unsafe. For this reason these MIME types are usually restricted in terms of what actions a web browser will take when given content of that type. An executable program should not be executed on the user's computer and at most should cause a dialog to appear asking the user if they wish to download the file.

    MIME type guessing has led to security exploits in Internet Explorer which were based upon a malicious author incorrectly reporting a MIME type of a dangerous file as a safe type. This bypassed the normal download dialog resulting in Internet Explorer guessing that the content was an executable program and then running it on the user's computer.

    How to determine the MIME type sent by a server
    In Firefox, load the file and use Tools | Page Info. You can also use Rex Swain's HTTP Viewer or Live HTTP Headers to see the full headers and content of any file sent from a web server.

    According to the standards, a meta tag that gives the MIME type such as <meta http-equiv="Content-Type" content="text/html"> should be ignored if there's a Content-Type line in the header. Instead of looking for this line in the HTML source, use the above techniques to determine the MIME type sent by the server.

    How to determine the correct MIME type for your content
    There are several steps which you can take to determine the correct MIME type value to be used for your content.

    If your content was created using a vendor's software application, read the vendor's documentation to see what MIME types should be reported for different media types.
    Look in the IANA | MIME Media Types registry which contains all registered MIME types.
    If the media type is displayed using a plug-in in Netscape Gecko, install the plug-in and then look in the Help->About Plug-ins Menu to see what MIME types are associated with the media type.
    Search for the file extension in FILExt or File extensions reference to see what MIME types are associated with that extension.
    How to set up your server to send the correct MIME types
    If you're using the Apache web server, simply copy this sample .htaccess file to the directory that contains the files that you want to send with the correct MIME types. If you have an entire subdirectory of files, just place the file in the parent directory; you need not place it in each subdirectory.
    If you're using Microsoft IIS, see this article at Microsoft TechNet.
    If you're using a server-side script to generate content, you can generally add one line near the top of your script. You can serve content other than HTML from Perl, PHP, ASP, or Java — just change the MIME type accordingly.
    For Perl CGI, you should have the line print "Content-Type: text/html\n\n"; before any other output lines. If you're using the CGI module, you can use the line print $cgi->header('text/html'); instead, where $cgi is your reference to the CGI instance.
    For PHP, you should have the line header('Content-Type: text/html'); before any other output lines.
    For ASP, you should have the line response.ContentType = "text/html"; before any other output lines.
    For a Java servlet, you should have the line response.setContentType("text/html"); at the top of your doGet or doPost method, where response is a reference to the HttpServletResponse.
    Related Links

    Incorrect MIME Type for CSS Files
    IANA | MIME Media Types
    Hypertext Transfer Protocol — HTTP/1.1
    Microsoft - 293336 - INFO: WebCast: MIME Type Handling in Microsoft Internet Explorer
    Microsoft - Appendix A: MIME Type Detection in Internet Explorer
    Microsoft - Security Update, March 29, 2001
    Microsoft - Security Update, December 13, 2001
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  6. Collapse Details
     
    #36
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    Quote Originally Posted by Lisa View Post
    DING DING DING DONG

    Winner
    FUCKING WRONG AGAIN YOU STUPID BITHC
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  7. Collapse Details
     
    #37
    Lisa
    king steveyos
    Quote Originally Posted by Autistic Spectrum View Post
    FUCKING WRONG AGAIN YOU STUPID BITHC
    You've been ding donged out sorry
    Reply With Quote
     

  8. Collapse Details
     
    #38
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  9. Collapse Details
     
    #39
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    i have fiddler and a debugger set to ingore mime types so i see it jsut fine
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  10. Collapse Details
     
    #40
    Lisa
    king steveyos
    Lol wtf are you doing you ding dong
    Reply With Quote
     

  11. Collapse Details
     
    #41
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    i honestly don't aruge with you when it comes time to talk about the proper way to suck a clowns penis or fuck a child lisa , so don't aruge with me about mime types you stupid cunt
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  12. Collapse Details
     
    #42
    Lisa
    king steveyos
    Tard
    Reply With Quote
     

  13. Collapse Details
     
    #43
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    Quote Originally Posted by Autistic Spectrum View Post
    this is hosted on imgur,, can you guys see it OK???
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  14. Collapse Details
     
    #44
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    you fucking postimg.org pleb fags just stop
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  15. Collapse Details
     
    #45
    Lisa
    king steveyos
    DING DONG
    Reply With Quote
     

  16. Collapse Details
     
    #46
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    ya post tard and ding dong and get confused and not know how to do something as basic as post an img on a web fourm you fucking retard
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  17. Collapse Details
     
    #47
    Lisa
    king steveyos
    I can post images and I use a better image hoster than you do
    Reply With Quote
     

  18. Collapse Details
     
    #48
    Lisa
    king steveyos
    lol look at him go
    Reply With Quote
     

  19. Collapse Details
     
    #49
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    Quote Originally Posted by Lisa View Post
    I can post images and I use a better image hoster than you do
    do you really want me to bump the thread where you could not take a simple screen shot for 9 pages lisa
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  20. Collapse Details
     
    #50
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    Quote Originally Posted by StompleB View Post
    that's because it's drawing from your cache dumbass
    http://s22.postimg.org/z8v89soi8/201...3_23_19_09.jpg

    that's the img he posted go ahead click it you retarded faggot, go on,, tell me what you see
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  21. Collapse Details
     
    #51
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    are you looking at his cache stompleb
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  22. Collapse Details
     
    #52
    Lisa
    king steveyos
    Quote Originally Posted by Autistic Spectrum View Post
    do you really want me to bump the thread where you could not take a simple screen shot for 9 pages lisa
    Yes, yes I do. I really want you to do that. I think it's important for the forum.

    You have to push both off buttons to take a screen shot with your iPad.
    Reply With Quote
     

  23. Collapse Details
     
    #53
    Lisa
    king steveyos
    Look at DP lol
    Reply With Quote
     

  24. Collapse Details
     
    #54
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    basic computer skilsl i all i ask lisa
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  25. Collapse Details
     
    #55
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    i'm not asking you fucking retards to do math or anything
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  26. Collapse Details
     
    #56
    Lisa
    king steveyos
    Quote Originally Posted by Autistic Spectrum View Post
    basic computer skilsl i all i ask lisa
    Basic skills like typing first please
    Reply With Quote
     

  27. Collapse Details
     
    #57
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    i type 300000 tiems afaster that you
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  28. Collapse Details
     
    #58
    Lisa
    king steveyos
    Quote Originally Posted by Autistic Spectrum View Post
    i type 300000 tiems afaster that you
    No you don't and you can't even type
    Reply With Quote
     

  29. Collapse Details
     
    #59
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    let's have a type off you retard
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

  30. Collapse Details
     
    #60
    ส็็็็็็็็็็็็ส็็็็็็ ็็็็็ Autistic Spectrum's Avatar
    Join Date
    Dec 1969
    Location
    ส็็็็็็็็็็็็ส&#
    Posts
    50,841
    i'll start

    i don't even know how i ended up in this fourm
    I am the owner of http://www.ezmangaforum.com
    Reply With Quote
     

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •