liuggio / ExcelBundle

Excel integration in Symfony2 thanks to https://github.com/PHPOffice/PHPExcel library
www.welcometothebundle.com
MIT License
369 stars 142 forks source link

Problem with save #91

Closed titom59280 closed 8 years ago

titom59280 commented 8 years ago

Hello,

I tried to save a xls document in the folder C:windows\temp + some folder without success so far.

When I put a filename in parameter of the save function it works but when I tried to save the document in a specific path it does not work.

How can I handle this issue.

Thanks for your reply.

liuggio commented 8 years ago

I think you have a problem with the path name C:windows\temp? or check the permission :) can you paste che code maybe someone would help

titom59280 commented 8 years ago

I have a variable named $documentToEdit with the path and the document name like this : C:\Windows\TEMP/someUniqueFolder/Some document name.xls

then the code to save is this: $writer->save($documentToEdit);

But with this I received the following error : Warning: fopen(C:\Windows\TEMP/SomeUniqueFolder/Some document name.xls): failed to open stream: No such file or directory.

What I did and work so far is to write this : $writer->save('test.xls); who create and save a xls document in the web folder of my projet and then copy it with the filesystem of symfony in my unique folder on the temp folder of window and delete the test.xls document save with the $writer with the same filesystem.

liuggio commented 8 years ago

On windows you should use only "\" in the path

titom59280 commented 8 years ago

i tried with only "\" but the problem is still the same

liuggio commented 8 years ago

I closed this issue is not related to this bundle, the bundle is only a factory doesn't handle fs or path I suggest to use the sys_get_temp_dir