我从服务器上下载时遇到了麻烦。如果我输入http://mypage.com,则无法下载一些.zip文件。但是,如果我进入页面的IP,我会下载文件。
与Godaddy有关的其他类似问题,即使我使用IP或域访问,也无法下载我的邮件。
这是生成XML和ZIP的代码的一部分:
**xmlzip.php**
$xmlfile = $rfc.$year.$month.'BN.xml';
$xml->formatOutput = true;
$el_xml = $xml->saveXML();
$xml->save($xmlfile);
$filename = $rfc.$year.$month.'BN';
shell_exec('zip ../'.$filename.' '.$xmlfile);
try {
$date= date('Ymd_Hi');
$data = '{
"filename":"xml'.$date.'.zip",
"filename2":"'.$filename.'.zip"
}';
echo '{"success":1,"message":"ok","data":['.$data.']}';
} catch (Exception $e) {
$data = '';
echo '{"error":1,"message":"error","data":['.$data.']}';
die();
}
然后我在ExtJS上创建了Messagebox.wait:
**downloadzip button**
msg = Ext.MessageBox.wait('Generating XML ...', '');
Ext.Ajax.request({
url: 'cakephp/app/webroot/xml.php?',
params:{
rfc: rfc,
month: month,
year: year
},
method : "POST",
headers: {
'Content-Type': 'application/json'
},
jsonData: true,
timeout: 1000000,
withCredentials: true,
success : function(response) {
var jsonResponse = JSON.parse(response.responseText);
filename = jsonResponse.data[0].filename;
filename2 = jsonResponse.data[0].filename2;
if(jsonResponse.success === 1) {
msg.hide();
Ext.getCmp("winFormXML_XMLpanel").setHtml(
'<iframe id="" name=""'+
' src="cakephp/app/webroot/download_xml.php?filename='+
filename+'&filename2='+filename2+'" width="100%" height="100%"></iframe>');
Ext.getCmp('winFormXML').destroy();
} else {
msg.hide();
Ext.Msg.alert("ERROR","Error generating XML.");
}
},
failure : function(response) {
msg.hide();
var respObj = Ext.JSON.decode(response.responseText);
console.log(respObj);
Ext.Msg.alert("ERROR", respObj.status.statusMessage);
}
});
用这个我下载生成的文件:
**downloadzip.php**
try {
$filename = $_REQUEST['filename'];
$filename2 = $_REQUEST['filename2'];
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename='.$filename2);
header('Content-Length: ' . filesize($filename2));
readfile($filename2);
} catch(Exception $ex) {
echo $ex-getMessage();
}
就像我上面提到的那样,我知道它有效,因为我可以从其他计算机上下载,但是通过IP,而不是从域中下载。
修改
似乎行Ext.getCmp('winFormXML').destroy();
在生成时遇到了麻烦。删除该行使其有效!
答案 0 :(得分:1)
&#34;的升级不安全-要求:1 强>&#34;表示您的浏览器要求您的服务器将URL(http)转换为安全URL(https)。
为了你的逻辑的最佳路径,创建一个小的cakeph插件(可能是插件exist)或只是使用一个控制器(如pagesController或专用的),并在此控制器内创建一个动作(函数),将完成您需要的所有工作(对xml文件,zip和下载采取行动)
像这样你可以添加一个安全层(例如只让经过身份验证的用户下载你的文件),你也可以添加一些统计数据(在数据库中保存下载的计数器)
我不确定使用shell_exec是一个好习惯,而是尝试 ziparchive 有用的cakephp zip helper示例 或者像这样
<?php
...
$filename2 = 'xml.zip';
$zip = new ZipArchive;
if ($zip->open($filename2, ZipArchive::CREATE)!==TRUE)
{
die("zip creation failed!");
} else {
$zip->addFile($xmlfile);
$zip->close();
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename='.$filename2);
header('Content-Length: ' . filesize($filename2));
readfile($filename2);
unlink($filename2);
}
?>
如果您在使用IP地址时没有获得升级 - 不安全请求消息,那么最后会解决您的问题,这意味着问题来自您的浏览器。尝试使用不实现此安全级别的浏览器(如chrome或firefox),或者只是将您的网站配置为使用https协议: - &GT;你的.htaccess中重定向(在你的cakephp根目录里面)
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/(s|g)etcmd?(.+)$
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R=301,L]
RewriteCond %{QUERY_STRING} ^(.*)http(\:|\%3A)(.*)$
ReWriteRule .* - [F]
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>
- &GT;你虚拟主机中的一些配置在端口443上侦听(在/ etc / apache2 / site-available中,如果你的下面是* nix)
# with the automatic HTTPS redirection you are not supposed to configure HTTP part (port 80)
<VirtualHost *:80>
ServerAdmin admin@mypage.com
ServerName mypage.com
ServerAlias mypage.com
DocumentRoot /var/www/mypage
<Directory /var/www/mypage/>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
Order Allow,Deny
Allow from All
</Directory>
ServerSignature Off
ErrorLog /var/log/apache2/error.log
</VirtualHost>
<VirtualHost *:443>
ServerAdmin admin@mypage.com
ServerName mypage.com
ServerAlias mypage.com
DocumentRoot /var/www/mypage
<Directory /var/www/mypage/>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
Order Allow,Deny
Allow from All
</Directory>
ServerSignature Off
SSLEngine on
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
# If you have secure certificate
SSLCertificateFile /etc/apache2/certificats/YOURCRTFILE.crt
SSLCertificateKeyFile /etc/apache2/certificats/YOURPEMFILE.pem
SSLCertificateChainFile /etc/apache2/certificats/YOURPEMFILE.pem
SSLCACertificatePath /etc/ssl/certs/
SSLCACertificateFile /etc/apache2/certificats/YOURCRTFILE.crt
ErrorLog /var/log/apache2/error.log
</VirtualHost>
希望有所帮助