New Post: Problem with save file on server
Hi, I have a problem with saving an excel file on the server I try to modify the 01simple.php example :<?php /** * PHPExcel * * Copyright (C) 2006 - 2011 PHPExcel * * This library is free software;...
View ArticleNew Post: Getting Error "Excel cannot open the file '....xlsx' because the...
The normal circumstance is that your code is echoing something to php://output (whitespace, BOM header, or error messages being the most common) that can be seen in a text editor; especially if save to...
View ArticleNew Post: Lost all formulas in the excel sheet while saving
That narrows down to the one key question: What are the formulas?
View ArticleNew Post: Getting Error "Excel cannot open the file '....xlsx' because the...
Yes, I was able to locate error messages using the text editor and made sure those were all handled. The last download I tried to create looks like it has white space at the beginning and end. How do I...
View ArticleNew Post: Problem setCellValueExplicit with PHPExcel_Cell_DataType::TYPE_STRING
Hello, I've tried to use the Testfiles like 01simple-download-xlsx there is the same problem that the file can't open -> directly or after saving. The error message fileformat or file extension not...
View ArticleNew Post: Problem setCellValueExplicit with PHPExcel_Cell_DataType::TYPE_STRING
First off, have you opened any of these files in a text editor? If so, was there anything at all in the file? If the standard test examples don't work, then please provide full details of your...
View ArticleNew Post: Problem setCellValueExplicit with PHPExcel_Cell_DataType::TYPE_STRING
Hello Mark, 1.) Yes I've opened with a text editor the 01simple-download-xlsx and my own file there was some hieroglyphs in. 2.) Please explain exactly what kind of informations do you need.
View ArticleNew Post: Getting Error "Excel cannot open the file '....xlsx' because the...
If there's any open/close PHP tags such as <?php and ?> within your script, they can give whitespace; Your IDE/Editor will normally allow you to save a file as UTF-8 with or without BOM markers,...
View ArticleNew Post: Problem setCellValueExplicit with PHPExcel_Cell_DataType::TYPE_STRING
Output from phpinfo() would be a useful start. It's clearly creating some output, but incorrect output; and I have no idea what could be causing that... I've just rerun those test scripts successfully...
View ArticleNew Post: How can I get the chart like images?
How can I get the chart like this images?
View ArticleNew Post: How can I get the only chart ?
MarkBaker wrote: What do you mean by "Want to get"? Do you want to read the structure of the chart? Do you want to render it as an image? yeah, I want to render it as an image
View ArticleNew Post: How can I get the only chart ?
Take a look at example 35chartrender.php in the /Tests directory
View ArticleNew Post: How can I get the chart like images?
Take a look at example 35chartrender.php in the /Tests directory
View ArticleNew Post: Problem setCellValueExplicit with PHPExcel_Cell_DataType::TYPE_STRING
Hello Mark, I think I've found the failure. 1.) I've deleted and reinstall the PHPExcel Class and now the the script is running but I've still the problem that I need in the whole column B a String...
View ArticleNew Post: Problem setCellValueExplicit with PHPExcel_Cell_DataType::TYPE_STRING
Without knowing the actual string value, probably not... all string values should be converted to UTF-8 before saving them, though this shouldn't matter for a real numeric value which would normally be...
View ArticleNew Post: Problem setCellValueExplicit with PHPExcel_Cell_DataType::TYPE_STRING
Possible values are for example: DV201030 00060601 CH123456 156782222ANE VN9721782A 0000567844B N.A. TBD .... .... .... is there a possibility to show the leading zeros with this kind of values FYI The...
View ArticleNew Post: Problem setCellValueExplicit with PHPExcel_Cell_DataType::TYPE_STRING
Hello Mark, now I've just solved the problem it was the column "comment" there was the problem with to much datas in. The leading zeros are now also solved with...
View ArticleNew Post: Getting Error "Excel cannot open the file '....xlsx' because the...
All I have are the open and close tags at the beginning and end of the file. I'm not sure I understand what you're saying about the IDE/Editor saving "the file as UTF-8 with or without BOM markers."...
View ArticleNew Post: Getting Error "Excel cannot open the file '....xlsx' because the...
I am saying exactly that. Anything that is output by the script to a browser (ie to php://output), other than the actual output generated by executing the save() will corrupt the file because it will...
View Article