我正在尝试使用maatwebsite / Excel软件包从laravel导出Excel文件,并且在本地一切正常,但是当我想将其放在IIS服务器上时,出现此错误:
以下是负责我的控制器中错误的代码:
$date = Carbon::now()->format("d-m-y-h-m-s");
$data1= json_decode( json_encode($data), true);
$export = new ExcelExport((array) $data1);
$file= Excel::store($export,storage_path('app')."\jobshistorie".$date.".xlsx", "local");
我将整个项目目录的权限授予了服务器。 我在公共目录中也有web.config文件:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Rule 1" stopProcessing="true">
<match url="^(.*)/$" ignoreCase="false" />
<action type="Redirect" redirectType="Permanent" url="/{R:1}" />
</rule>
<rule name="Rule 2" stopProcessing="true">
<match url="^" ignoreCase="false" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
我会尽我所能获得所有帮助,谢谢!
答案 0 :(得分:0)
我想我来晚了,但是您可以尝试清除缓存,如下所示: php artisan config:cache 要么 php artisan config:clear
希望这会有所帮助。