Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-27 Thread DEEPAK BHATIA
Could you get the file in /tmp ? On Tue, Apr 27, 2010 at 4:37 PM, safa boubekri wrote: > hello > > :(  the file reports.xsl    is not generate   change  '/var/tmp/  to  /tmp > because i have wamp/tmp > thank you > > -- > If you want to report a vulnerability issue on symfony, please send it to >

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-27 Thread safa boubekri
hello :( the file reports.xslis not generate change '/var/tmp/ to /tmp because i have wamp/tmp thank you -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Gr

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-26 Thread DEEPAK BHATIA
Are you able to create an instance of the as given in example01. The resulting file with === $objPHPExcel = new sfPhpExcel(); // Set properties $objPHPExcel->getProperties()->setCreator("Maarten Balliauw"); $objPHPExcel->getProperties()

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-26 Thread Stéphane
Try simply creating an empty xls document at first ? Before Printing, Think about Your Environmental Responsibility! Avant d'Imprimer, Pensez à Votre Responsabilitée Environnementale! On Mon, Apr 26, 2010 at 1:23 PM, safa boubekri wrote: > > > $objPHPExcel->getProperties()->setCreator("Maarten

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-26 Thread safa boubekri
$objPHPExcel->getProperties()->setCreator("Maarten Balliauw"); $objPHPExcel->getProperties()->setLastModifiedBy("Maarten Balliauw"); $objPHPExcel->getProperties()->setTitle("Office 2007 XLSX Test Document"); $objPHPExcel->getProperties()->setSubject("Office 2007 XLSX Test Document");

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-26 Thread Stéphane
Why do you say it doesnt work because you have office 2003 ? Have you seen such a thing somewhere ? Before Printing, Think about Your Environmental Responsibility! Avant d'Imprimer, Pensez à Votre Responsabilitée Environnementale! On Mon, Apr 26, 2010 at 1:16 PM, safa boubekri wrote: > hello >

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-26 Thread safa boubekri
hello so sir i put this code but i dont get the file xsl i thik because i have office2003 please help me -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-20 Thread Stéphane
Hi, I think you simply cannot use this plugin outside symfony. This means you cannot instantiate this object outside a symfony action for example (just like what did Deepak). If you don't understand actions, you should consider reading more on symfony ;-) Cheers, Before Printing, Think about

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-20 Thread safa boubekri
thank you but should you explain more -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-users@

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-20 Thread Stéphane
Hi, I think this plugin needs to be ran inside a symfony "thing" (task or action or whatever 'till sfConfig is loaded). This to say that you can't run it outside a symfony execution scope. >From what you are saying, you have two problems: the php_zip library wich isn't loaded (but declared so ph

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-20 Thread safa boubekri
so i load the php_zip.dll but i have the same message :php statup: unable to load dynamic library C:\wamp\bin\php\php5.3.0\ext\ php_zip when i executed the command *$>php plugins/sfPhpExcelPlugin/examples_1_2/01simple.php * after Create new PHPExcel object Fatal error: Class 'sfCon

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-19 Thread DEEPAK BHATIA
Hi, I am saying use the code in the action of a module. Please let me know if you understand action of a module. public function executeFiledownload($request) { // Create new PHPExcel object $objPHPExcel = new sfPhpExcel(); // Set active sheet index to the first sheet, so Excel op

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-19 Thread safa boubekri
i do it symfony cc but the same msg -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-users@

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-19 Thread DEEPAK BHATIA
Hi, Use the same example in an action of a module. It will work perfectly. But prior to that do php symfony cc to autoload the sfPhpExcel Plugin. Regards Deepak Bhatia On Mon, Apr 19, 2010 at 5:12 PM, safa boubekri wrote: > hi, > i have installed sfPhpexcel Plugin and set the default properti

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-19 Thread safa boubekri
yes because i developped projet with symfony1.3.3 i think thak i have problèmwith php_zip.dlland php_xml.dll it is not full i have this messag php statup: unable to load dynamic library C:\wamp\bin\php\php5.3.0\ext\ php_zip because theRequirements to use this plugin is that Requiremen

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-19 Thread Gábor Fási
You're supposed to use it via symfony, not standalone. On Mon, Apr 19, 2010 at 13:42, safa boubekri wrote: > hi, > i have installed sfPhpexcel Plugin and set the default properties in > config/phpexcel.yml, i got an error like this when i executed the command > $>php plugins/sfPhpExcelPlugin/exam