Programé un reproductor de audio en HTML5, el cuál lee archivos .mp3 y alternativamente en .ogg
En mi ordenador (localhost) utilizando el kit de EasyPHP me funciona a la perfección, sin embargo, al subir el sitio el reproductor no responde.
Cuando lo intento abrir directamente (el archivo .ogg) me sale el siguiente mensaje:
Cita:
Mi proveedor de hosting no me da acceso a la configuración de Apache, entonces intenté ligar el reproductor a un archivo .php y no directamente al .oggHTTP Error 404.3 - Not Found
The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.
The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.
En el archivo php tengo el siguiente código:
Código PHP:
<?php
header('Content-type: audio/ogg');
include('http://musasycitaras.com/musica/track_careless.ogg');
?>
Alguien sabe qué puedo hacer ?
Muchas gracias... ;D