New Post: phpexcel not only crashing apache, but also deleting httpd.exe
I've downloaded the 1.8 version of phpexcel and sometimes, when i'm testing the "01simple.php" sample (native), apache crashes and also removes the httpd.exe file. I had to create a backup of httpd.exe...
View ArticleNew Post: phpexcel not only crashing apache, but also deleting httpd.exe
I find this incredibly hard to believe: there is nothing in PHPExcel that could delete your httpd.exe (it's open source, so you can check for yourself).... I can't even believe that simply running...
View ArticleNew Post: PHPExcel Rendering Corrupt Excels
when i remove header('Content-Type: application/vnd.ms-excel'); header('Content-Disposition: attachment;filename="SeedApplicants.xlsx"'); and change $objWriter =...
View ArticleNew Post: Write new excel file without protection?
Hi Guys, I need to write excel file without protection (Read-Only), I need to create new excel file which allow other use can edit it, I tried several ways but still no luck, I always got Read-Only on...
View ArticleNew Post: PHPExcel Rendering Corrupt Excels
So if, instead of using the IO factory, you did $objWriter = new PHPExcel_Writer_Excel5($objPHPExcel); $objWriter->save(str_replace('.php', '.xls', FILE)); does it work?
View ArticleNew Post: Write new excel file without protection?
If the file is being downloaded to a client PC from the internet (whether generated by PHPExcel, or from any server on the internet), then you will get this with more recent versions of MS Excel, and...
View ArticleNew Post: PHPExcel Rendering Corrupt Excels
Thats right, the file saved on my local machine and worked fine. But since i want the client to be able to download it for himself, i add the headers and everything goes wrong.
View ArticleNew Post: PHPExcel Rendering Corrupt Excels
So the PHPExcel save() works without problem for both Excel and Excel2007: which narrows it down to something in the IOFactory, or in your script: If you try doing $objWriter =...
View ArticleNew Post: Write new excel file without protection?
MarkBaker wrote: If the file is being downloaded to a client PC from the internet (whether generated by PHPExcel, or from any server on the internet), then you will get this with more recent versions...
View ArticleNew Post: Write new excel file without protection?
PHP runs on the server, and PHPExcel runs on the server; the file is then downloaded from the server to the client.
View ArticleNew Post: Load one template on several sheet
Hi, I am trying to load a template and copy or load the same template on several sheet, i have been able to load it on the first sheet but the second sheet loads without the template, can anyone assist...
View ArticleNew Post: Load one template on several sheet
You might want to try cloning the sheet before you populate it $clonedSheet = clone $objPHPExcel->getActiveSheet();then use $objPHPExcel->addSheet($clonedSheet);instead of...
View ArticleNew Post: Load one template on several sheet
Thanks for your reply, but I have used the clone sheet function that works well, but I would still like to kno just incase I have a case wherein I would like to have one excel file with different...
View ArticleNew Post: Load one template on several sheet
If you're working with different templates; then you also have the option of the addExternalSheet() method.
View ArticleNew Post: Best Practice for PHPExcel
The problem doesn't lie with PHPExcel, it's perfectly capable of creating a spreadsheet that looks like this. The problem lies in how you generate the data from your database.
View ArticleNew Post: PHPExcel Rendering Corrupt Excels
No file is created when i use the IOFactory.
View ArticleNew Post: 36chartreadwriteHTML.php can't view charts???
$rendererName = PHPExcel_Settings::CHART_RENDERER_JPGRAPH; $rendererLibrary = 'jpgraph3.5.0b1/src'; $rendererLibraryPath = 'C:/development/workspace/' . $rendererLibrary; I was doing a project in...
View ArticleNew Post: 36chartreadwriteHTML.php can't view charts???
The reason is that the chart lies below the range of actual data, and there's a fault in the logic that extends generating the table to encompass the chart as well as the data. I was looking at it just...
View ArticleNew Post: 36chartreadwriteHTML.php can't view charts???
Thank you very much, I'm looking forward to it!
View Article