New Post: Image distortion/print area error
Hello minitank, Have you been able to get it to work by resetting the print area once you have drawn the images?
View ArticleNew Post: Reading xlsx with bar and line graph
Hi, Iv been trying to read a template xlsx file and load data in. Just as a test I tried to read it in and then save it under a different name. This is mostly working except for one the line series...
View ArticleNew Post: How to detect and remove hidden columns
I am using PHPExcel version 1.8 and uploading Excel files using the Excel5 reader object. The Excel files that get uploaded are somewhat inconsistent and one in particular will come in with a column...
View ArticleNew Post: Memory leak
<?php error_reporting(E_ALL); ini_set('display_errors', 1); ini_set('memory_limit', '1024M'); ini_set('include_path', ini_get('include_path').';./Classes/'); include 'PHPExcel.php'; include...
View ArticleNew Post: Joomla & PHPExcel > 1.7.2 Issue
How to know that PHPExcel autoload confict with joomla or any other application? I run the PHPExcel library and testing it under root directory of magento.
View ArticleNew Post: Fatal error: Class ' PHPExcel_IOFactory' not found in ...
Hello, on PHP Version 5.5.9-1ubuntu4.3, i want to declare a Reader with no type precision, like Documentation/Examples/Reader/exampleReader4.php the include_path is in the php.ini the include command...
View ArticleNew Post: Grouping by row
Here's an example of what I would like to create via excel. A 10 A 34 A 10 A (Total) 54 B 10 B 10 B 10 B (Total) 30 GrandTotal 84 Here's my code so far......
View ArticleNew Post: Fatal error: Class ' PHPExcel_IOFactory' not found in ...
With another example , more detailled ... <?php define (br,"<br />"); $FichierExcel = 'example1.xls'; list($Classeur,$Message) = OuvrirLecture($FichierExcel); echo $Message.br; #...
View ArticleNew Post: How to detect and remove hidden columns
Well, I ended up finding my own solution. For those of you who have the same question, see below for the work around. I know what the highest column should be, so this is why this works, otherwise if...
View ArticleNew Post: Can't read excel file
I create a cronjob to read a excel file, that I receive everyday by FTP on my server. I implemeneted this code: $fileName = $_SERVER["DOCUMENT_ROOT"]./searchresults.xls; $fileType =...
View ArticleNew Post: Can't read excel file
From the error message, your Excel file isn't an Excel file, it's simply HTML markup. You can check this by opening the file in a text editor: if it looks like HTML, then it is HTML. To fix this error...
View ArticleNew Post: Best Practice for PHPExcel
Hi I would like to know if the following excel sheet is possible via PHP/MySQL using PHPExcel 1.7.9 . I have been struggling for days to try and get this design but it doesn't seem possible where...
View ArticleNew Post: PHPExcel Rendering Corrupt Excels
There are no possible white spaces when the file is being rendered.<?php $objPHPExcel = new PHPExcel(); $objPHPExcel->setActiveSheetIndex(0); //Functions for rendering data header('Content-Type:...
View ArticleNew Post: PHPExcel Rendering Corrupt Excels
As always, open the file in a text editor and look for any leading/trailing whitespace characters, any BOM header in the first 3 bytes of the file, or any obvious plaintext error messages
View ArticleNew Post: PHPExcel Rendering Corrupt Excels
Yes, I have checked everything, There are absolutely no leading or trailing whitespace characters. And no BOM header and error messages.
View ArticleNew Post: PHPExcel Rendering Corrupt Excels
Have you tried writing to a file on the server, then doing a manual file transfer to your local PC to see if that will load in MS Excel correctly?
View ArticleNew Post: reading the exact time from excel using php
I made a php script that parses xls file. It works well but the only problem is that when php read the cell it only reads 7/21/2014 0:43 also when i go to the xls and click the cell it shows the right...
View ArticleNew Post: PHPExcel Rendering Corrupt Excels
Yes , i tried that. It is rendering a blank excel file.
View ArticleNew Post: String data type lost when using insertNewRowBefore
Hello everyone, I'm developping he website of our sportsclub, and i want to let the members register to the club via the website. I'm trying to use phpexcel to store the members information in an xlsx...
View Article