Changes between Version 1 and Version 2 of Ticket #45670, comment 1
- Timestamp:
- 12/17/2018 11:35:17 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #45670, comment 1
v1 v2 4 4 5 5 All other related to MIME - https://bugs.php.net/search.php?cmd=display&search_for=mime&x=0&y=0 6 7 Testing PHP Code: 8 {{{ 9 echo 'PHP Version: ' . phpversion() . "<br/><br/>"; 10 echo 'file.vtt | ' . mime_content_type( ASTRA_SITES_DIR . 'file.vtt') . "<br/>"; 11 echo 'file.xml | ' . mime_content_type( ASTRA_SITES_DIR . 'file.xml') . "<br/>"; 12 }}} 13 14 On Localhost: 15 16 {{{ 17 PHP Version: 7.2.4 18 file.vtt | text/plain 19 file.xml | text/xml 20 }}} 21 22 On Live 23 {{{ 24 PHP Version: 7.0.32-4+ubuntu16.04.1+deb.sury.org+1 25 file.vtt | text/plain 26 file.xml | application/xml 27 }}}