我通过我的 php 脚本生成了一个 ics 文件,它允许我在 Safari (6.0.2) 中下载一个 .ics 文件,但在 Chrome (23.0.1271.101) 和 Firefox (17.0.1) 中,我得到一个错误信息:
Error 6 (net::ERR_FILE_NOT_FOUND): The file or directory could not be found.
.ics 文件有效(通过两个不同的来源进行了检查),我可以在 iCal 中打开它。我在这个论坛和许多其他论坛上都遵循了脚本和提示。
这是生成 .ics 文件的代码:
$tz_sthlm = new DateTimeZone( 'Europe/Stockholm' );
$tz_utc = new DateTimeZone('UTC');
$dateEvent = new DateTime( $event->datetime, $tz_sthlm );
$dateEvent->setTimezone( $tz_utc );
$filename = str_replace('/', '-', $event->webblink);
$output = '';
$output .= 'BEGIN:VCALENDAR' . "\r\n";
$output .= 'VERSION:2.0' . "\r\n";
$output .= 'PRODID:-//Medicinska Foreningen Orebro//Biljettbokning//SV-SE' . "\r\n";
$output .= 'METHOD:PUBLISH' . "\r\n";
$output .= 'BEGIN:VEVENT' . "\r\n";
$output .= 'CLASS:PUBLIC' . "\r\n";
$output .= 'CREATED:' . date('Ymd\THis') . "\r\n";
$description = strip_tags( htmlspecialchars_decode( $event->description ) );
$description = str_replace(array( "\n", ';' ), array( '\n', '\;' ), $description);
$output .= 'DESCRIPTION:' . $description . "\r\n";
$output .= 'DTSTART:' . $dateEvent->format('Ymd\THis\Z') . "\r\n";
$dateEvent->modify('+4 hour');
$output .= 'DTEND:' . $dateEvent->format( 'Ymd\THis\Z' ) . "\r\n";
$output .= 'DTSTAMP:' . $dateEvent->format('Ymd\THis\Z') . "\r\n";
$output .= 'LAST-MODIFIED:' . date('Ymd\THis') . "\r\n";
$output .= 'LOCATION:' . $event->location . "\r\n";
$output .= 'UID:' . $dateEvent->format('Ymd\THis') . '-' . md5( $event->title ) . '@' . $_SERVER['SERVER_NAME'] . "\r\n";
$output .= 'END:VEVENT' . "\r\n";
$output .= 'END:VCALENDAR';
header("Content-Type: text/Calendar;charset=utf-8");
header('Content-Disposition: inline; filename="' . $filename . '.ics"');
/* header('Content-Transfer-Encoding: binary');
header('Expires: -1');
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header('Pragma: public');
header('Content-Length: ' . mb_strlen( $output, '8bit' ) );
*/
echo $output;
exit;
这是输出
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//My Company//SV-SE
METHOD:PUBLISH
BEGIN:VEVENT
CLASS:PUBLIC
CREATED:20130105T000547
DESCRIPTION:This is my description.
DTSTART:20130124T170000Z
DTEND:20130124T210000Z
DTSTAMP:20130124T210000Z
LAST-MODIFIED:20130105T000547
LOCATION:Top secret
UID:20130124T210000-c88f2fb3f033284ec886aa15acb9eaee@example.com
END:VEVENT
END:VCALENDAR
对于我在 Chrome 和 Firefox 中收到错误消息的原因有什么想法吗?
提前致谢
最佳答案
由于文件正在发送 404 header 状态,请尝试放置此 header :
header('HTTP/1.0 200 OK', true, 200);
关于php - 无法在 Chrome 或 Firefox 中下载生成的 .ics 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14167090/
我有一个Ruby程序,它使用rubyzip压缩XML文件的目录树。gem。我的问题是文件开始变得很重,我想提高压缩级别,因为压缩时间不是问题。我在rubyzipdocumentation中找不到一种为创建的ZIP文件指定压缩级别的方法。有人知道如何更改此设置吗?是否有另一个允许指定压缩级别的Ruby库? 最佳答案 这是我通过查看rubyzip内部创建的代码。level=Zlib::BEST_COMPRESSIONZip::ZipOutputStream.open(zip_file)do|zip|Dir.glob("**/*")d
我试图在一个项目中使用rake,如果我把所有东西都放到Rakefile中,它会很大并且很难读取/找到东西,所以我试着将每个命名空间放在lib/rake中它自己的文件中,我添加了这个到我的rake文件的顶部:Dir['#{File.dirname(__FILE__)}/lib/rake/*.rake'].map{|f|requiref}它加载文件没问题,但没有任务。我现在只有一个.rake文件作为测试,名为“servers.rake”,它看起来像这样:namespace:serverdotask:testdoputs"test"endend所以当我运行rakeserver:testid时
我的目标是转换表单输入,例如“100兆字节”或“1GB”,并将其转换为我可以存储在数据库中的文件大小(以千字节为单位)。目前,我有这个:defquota_convert@regex=/([0-9]+)(.*)s/@sizes=%w{kilobytemegabytegigabyte}m=self.quota.match(@regex)if@sizes.include?m[2]eval("self.quota=#{m[1]}.#{m[2]}")endend这有效,但前提是输入是倍数(“gigabytes”,而不是“gigabyte”)并且由于使用了eval看起来疯狂不安全。所以,功能正常,
我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-
Rails2.3可以选择随时使用RouteSet#add_configuration_file添加更多路由。是否可以在Rails3项目中做同样的事情? 最佳答案 在config/application.rb中:config.paths.config.routes在Rails3.2(也可能是Rails3.1)中,使用:config.paths["config/routes"] 关于ruby-on-rails-Rails3中的多个路由文件,我们在StackOverflow上找到一个类似的问题
对于具有离线功能的智能手机应用程序,我正在为Xml文件创建单向文本同步。我希望我的服务器将增量/差异(例如GNU差异补丁)发送到目标设备。这是计划:Time=0Server:hasversion_1ofXmlfile(~800kiB)Client:hasversion_1ofXmlfile(~800kiB)Time=1Server:hasversion_1andversion_2ofXmlfile(each~800kiB)computesdeltaoftheseversions(=patch)(~10kiB)sendspatchtoClient(~10kiBtransferred)Cl
我正在寻找执行以下操作的正确语法(在Perl、Shell或Ruby中):#variabletoaccessthedatalinesappendedasafileEND_OF_SCRIPT_MARKERrawdatastartshereanditcontinues. 最佳答案 Perl用__DATA__做这个:#!/usr/bin/perlusestrict;usewarnings;while(){print;}__DATA__Texttoprintgoeshere 关于ruby-如何将脚
使用带有Rails插件的vim,您可以创建一个迁移文件,然后一次性打开该文件吗?textmate也可以这样吗? 最佳答案 你可以使用rails.vim然后做类似的事情::Rgeneratemigratonadd_foo_to_bar插件将打开迁移生成的文件,这正是您想要的。我不能代表textmate。 关于ruby-使用VimRails,您可以创建一个新的迁移文件并一次性打开它吗?,我们在StackOverflow上找到一个类似的问题: https://sta
我对最新版本的Rails有疑问。我创建了一个新应用程序(railsnewMyProject),但我没有脚本/生成,只有脚本/rails,当我输入ruby./script/railsgeneratepluginmy_plugin"Couldnotfindgeneratorplugin.".你知道如何生成插件模板吗?没有这个命令可以创建插件吗?PS:我正在使用Rails3.2.1和ruby1.8.7[universal-darwin11.0] 最佳答案 随着Rails3.2.0的发布,插件生成器已经被移除。查看变更日志here.现在
我尝试运行2.x应用程序。我使用rvm并为此应用程序设置其他版本的ruby:$rvmuseree-1.8.7-head我尝试运行服务器,然后出现很多错误:$script/serverNOTE:Gem.source_indexisdeprecated,useSpecification.Itwillberemovedonorafter2011-11-01.Gem.source_indexcalledfrom/Users/serg/rails_projects_terminal/work_proj/spohelp/config/../vendor/rails/railties/lib/r