Make WordPress Core

Changes between Version 1 and Version 2 of Ticket #45670, comment 1


Ignore:
Timestamp:
12/17/2018 11:35:17 AM (6 years ago)
Author:
Mahesh901122
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #45670, comment 1

    v1 v2  
    44
    55All other related to MIME - https://bugs.php.net/search.php?cmd=display&search_for=mime&x=0&y=0
     6
     7Testing PHP Code:
     8{{{
     9echo 'PHP Version: ' . phpversion() . "<br/><br/>";
     10echo 'file.vtt | ' . mime_content_type( ASTRA_SITES_DIR . 'file.vtt') . "<br/>";
     11echo 'file.xml | ' . mime_content_type( ASTRA_SITES_DIR . 'file.xml') . "<br/>";
     12}}}
     13
     14On Localhost:
     15
     16{{{
     17PHP Version: 7.2.4
     18file.vtt | text/plain
     19file.xml | text/xml
     20}}}
     21
     22On Live
     23{{{
     24PHP Version: 7.0.32-4+ubuntu16.04.1+deb.sury.org+1
     25file.vtt | text/plain
     26file.xml | application/xml
     27}}}