一般来说,下载txt会直接打开,把下面的代码放入到下载页面中,就提示下载并可以进度保存了!文件位置(\e\DownSys\class\DownSysFun.php)找到如下代码(帝国CMS7.5 大概203行左右)//下载 Header("Content-type: application/octet-stream"); //Header("Accept-Ranges: bytes"); //Header("Accept-Length: ".$filesize); Header("Content-Disposition: attachment; filename=".$filename); echo ReadFiletext($file);
1 2 3 4 5 6 7 8 9 10 11 12 13 | 改成如下代码:(注意UTF8编码请用编辑器打开修改) //下载 $filesize = filesize ( $file ); Header( 'Pragma:public' ); Header( 'Last-Modified:' . gmdate ( 'D,dMYH:i:s' ). 'GMT' ); Header( 'Cache-Control:no-store,no-cache,must-revalidate' ); Header( 'Cache-Control:pre-check=0,post-check=0,max-age=0' ); Header( 'Content-Transfer-Encoding:binary' ); Header( 'Content-Encoding:none' ); Header( "Content-type:application/octet-stream" ); Header( "Content-Disposition:attachment;filename=" . $filename ); Header( 'Content-length:' . $filesize ); echoReadFile( $file ); |
以上就是帝国CMS强制下载txt文件浏览器带下载进度显示。人生好比爬山,人生这座山,只是有的人才刚爬到半山腰就放弃了,看到的只是身边小片的风景;只有下来的“会当凌绝顶”的人,才能“一览终山小”,收获大片大片美丽的风景。当人生遇到时,只有坚持,才能使我们走向。更多关于帝国CMS强制下载txt文件浏览器带下载进度显示请关注haodaima.com其它相关文章!