hola lista..mi problema es el siguiente:<br>
hice un script para desargar un archivo, que subo a traves de un formulario, lo &quot;hasheo&quot;, y lo dejo en un directorio..<br>
cual es mi inquietud?..el mismo programa esta en dos servidores..en uno
funciona y en otro los archivos office me los arroja con caracteres
raros..el script es mas menos el siguiente:<br>
<br>
....<br>
$dirname = 'archivos/';<br>
$file = $sql-&gt;getFile($fileId);<br>
$enlace = $dirname.basename($file['hash']);<br>
header (&quot;Cache-Control: cache, must-revalidate&quot;);<br>
header (&quot;Pragma: public&quot;);<br>
header (&quot;Content-Type: &quot;.$file['filetype']);<br>
header (&quot;Content-Type = application/download&quot;);<br>
header (&quot;Content-Disposition: attachment; filename=\&quot;&quot;.$file['filename'].&quot;\&quot;&quot;);<br>
header (&quot;Content-Length: &quot;.filesize($enlace));<br>
readfile($enlace);<br>
....<br>
<br>
puede ser a nivel de configuracion?<br>