Re: [fw-general] Double Layout (layout in layout)

2010-02-04 Thread Vadim Gabriel
Just make a helper out ofit. On Thu, Feb 4, 2010 at 5:16 PM, Andrei Iarus poni1...@yahoo.com wrote: Hello to all, I have no idea about how to make a module to have a sublayout. Having an application layout, one of my modules needs to add insinde that layout always some (dynamic) content,

Re: [fw-general] Zend_Date first day of the week

2009-12-06 Thread Vadim Gabriel
Hi, Try: date_default_timezone_set('Europe/Berlin'); $date = new Zend_Date(); // Output of the current timestamp print $date; print br /; print $date-get(Zend_Date::WEEKDAY); On Mon, Dec 7, 2009 at 9:15 AM, takeshin admi...@gmail.com wrote: Is it

Re: [fw-general] getActionName() in bootstrap

2009-10-09 Thread Vadim Gabriel
i don't think they exits there yet. Those values are being set after the bootstrap and the dispatch process. On Fri, Oct 9, 2009 at 2:35 PM, scs sasc...@gmail.com wrote: Hi, I need to get the requested module, controller and action name in a function of bootstrap file. Is there any easy way

Re: [fw-general] framework.zend.com down??

2009-08-12 Thread Vadim Gabriel
No problems here. On Wed, Aug 12, 2009 at 2:17 PM, Carlos Medina deve...@simply-networks.dewrote: keith Pope schrieb: Seems to be down for me I can not access to Jira or the subdomain from Zend Framework. Are problems there? Regards Carlos -- Vincent Gabriel. Lead

Re: [fw-general] Getting rid of Index.php in urls

2009-06-22 Thread Vadim Gabriel
Make sure the apache module mod_rewrite is installed and turned on. On Mon, Jun 22, 2009 at 1:07 PM, neozf neomakan-z...@yahoo.com wrote: Hi I am new to zend I have downloaded the community server with the framework ... I have created a new project for the quick start on my C drive

Re: [fw-general] Getting rid of Index.php in urls

2009-06-22 Thread Vadim Gabriel
run apache_get_modules() in any php script and see if it's there. On Mon, Jun 22, 2009 at 2:31 PM, neozf neomakan-z...@yahoo.com wrote: I had the .so file in the modules dir and I have this in my httpd.conf.. file LoadModule rewrite_module modules/mod_rewrite.so its not commented out by

Re: [fw-general] function to render a view script by passing a full path to it's location

2009-06-21 Thread Vadim Gabriel
something? Thanks. On Sun, Jun 21, 2009 at 3:55 PM, Matthew Weier O'Phinney matt...@zend.comwrote: -- Vadim Gabriel vadim...@gmail.com wrote (on Saturday, 20 June 2009, 06:26 PM +0300): This is my function public function indexAction() { $this-view-render('C:/wamp/www/77workshop

Re: [fw-general] function to render a view script by passing a full path to it's location

2009-06-20 Thread Vadim Gabriel
, Jun 19, 2009 at 11:14 PM, Vadim Gabriel vadim...@gmail.com wrote: Well it doesn't work. if i pass a full path and the file exists for some reason it searches it in the default views/scripts/ directory which i don't have. And then an exception is raised that the view was not found. Although i

[fw-general] function to render a view script by passing a full path to it's location

2009-06-19 Thread Vadim Gabriel
function to render a view script by passing a full path to it's location, Does something like this exists? -- Vincent Gabriel. Lead Developer, Senior Support. Zend Certified Engineer. Zend Framework Certified Engineer. -- http://www.vadimg.co.il/

Re: [fw-general] function to render a view script by passing a full path to it's location

2009-06-19 Thread Vadim Gabriel
O'Phinney matt...@zend.comwrote: -- Vadim Gabriel vadim...@gmail.com wrote (on Friday, 19 June 2009, 10:30 PM +0300): function to render a view script by passing a full path to it's location, Does something like this exists? You can pass a full path to render() already... -- Matthew

[fw-general] Cannot locate the right script

2009-06-17 Thread Vadim Gabriel
I am probably missing something but i am getting the following error: *Fatal error*: Uncaught exception 'Zend_View_Exception' with message 'script 'login.phtml' not found in path

Re: [fw-general] Putting Zend Framework application online

2009-06-16 Thread Vadim Gabriel
This will work only on Linux hosts where the mod_rewrite is enabled. Wouldn't it be better to add another index.php file inside the root folder that will include the index.php file from the public folder? What happens to members using windows? On Tue, Jun 16, 2009 at 3:07 PM, Ben Scholzen

Re: [fw-general] Security - Preventing SQL Injections, XSS etc

2009-06-06 Thread Vadim Gabriel
You could use $this-view-escape On Sun, Jun 7, 2009 at 6:51 AM, iceangel89 comet2...@gmail.com wrote: Matthew Weier O'Phinney-3 wrote: (In 2.0, we will make escaping the default within Zend_View, and require you to explicitly ask for raw data if you don't want escaping.) that will

Re: [fw-general] - Using router

2009-06-05 Thread Vadim Gabriel
You will need to register the router stuff earlier then in the init function since the request object was initiated already. On Fri, Jun 5, 2009 at 1:42 PM, Vibhor Singh vib...@pivisions.net wrote: Hi all, I have a modular ZF application. I am trying to use the Standard Router to rewrite

Re: [fw-general] How to remove layouts?

2009-06-04 Thread Vadim Gabriel
Zend_Layout::startMvc('/layouts/scripts' ); On Thu, Jun 4, 2009 at 6:42 PM, Jalil F. jalil.feg...@gmail.com wrote: It is not my code and I am new to Zend and have not been able to find where it is initiated. I don't see a startMvc call. Is there another way to initiate it? Thanks for the

Re: [fw-general] Do I have to use Zend_Registry, Zend_Locale and Zend_Config if I use ZF?

2009-06-03 Thread Vadim Gabriel
ZF components are dependent on each other, Some have more dependencies then others. There is a section in the manual that describes those dependencies on a component bases. On Wed, Jun 3, 2009 at 9:49 AM, Mary Nicole Hicks webmas...@marynicolehicks.com wrote: I like Zf, but I would like to

Re: [fw-general] How to remove layouts?

2009-06-03 Thread Vadim Gabriel
Then just don't initiate it. How do you initiate your layout? By using the Zend_Layout::startMvc instance? On Thu, Jun 4, 2009 at 12:56 AM, Jalil F. jalil.feg...@gmail.com wrote: I installed some example code which is using layouts but like to remove the layout for now. I did some search

Re: [fw-general] Zend Fremework and Job

2009-06-03 Thread Vadim Gabriel
Hi, If you join the zend framework developers group (or the zend framework engineers group if you are ZF ZCE) on linkedin you will see some job opertunities posted occasionally. On Wed, Jun 3, 2009 at 11:39 PM, Sergio Rinaudo kaiohken1...@hotmail.comwrote: Hi, this is not a very technical

Re: [fw-general] DB Exceptions - shld include whole SQL

2009-06-02 Thread Vadim Gabriel
First you can profile everything using the DB profiler. Second you can look in the stack trace for the parameters if you have: pre?php var_dump($this-request-getParams()) ?/pre in your error view script you will see the Query that failed. On Tue, Jun 2, 2009 at 3:18 PM, iceangel89

Re: [fw-general] struggling to get modules working

2009-06-01 Thread Vadim Gabriel
Hi, To be honest i use ZF 1.8 with the old way of loading modules. I just edited the autoloader to reflect the new autoloader and added some custom module autoloaders which works just as good as the bootstrap classes without the hassle of updating the code. I can then just go in any place and do

Re: [fw-general] How to get Config options?

2009-06-01 Thread Vadim Gabriel
Hi, Another way will be storing the config in the registry then you could access it anywhere. On Mon, Jun 1, 2009 at 7:20 PM, dmitrybelyakov dmitrybelya...@yandex.ruwrote: Hello, I am a little frustrated as I cannot access my application configuration options. I do not load my config

Re: [fw-general] Duplicate HTML Tags

2009-05-31 Thread Vadim Gabriel
Hi, This is what i have in place in my layout ?php echo $this-doctype() . \n; ? html xmlns=http://www.w3.org/1999/xhtml; head ?php echo $this-HeadMeta() . \n; ? ?php echo $this-HeadLink() . \n; ? ?php echo $this-HeadScript(). \n; ? ?php echo $this-HeadTitle() . \n; ? ?php

Re: [fw-general] Re: ZF 1.8.2 no more ../../../ in my views!

2009-05-29 Thread Vadim Gabriel
No he can't Take a look at : http://zendframework.com/manual/en/zend.view.migration.html so unless he explicitly specify the lfi protection to false the ../../../ method will not work on 1.8 and it's no recommended anyways. On Thu, May 28, 2009 at 11:11 PM, Colin Guthrie

Re: [fw-general] Common form for multiple controllers [Plugin??]

2009-05-29 Thread Vadim Gabriel
better ideas??? Best regards, On Thu, May 28, 2009 at 10:08 PM, Vadim Gabriel vadim...@gmail.comwrote: Hi, First you might want to check Matthews blog, He wrote a few posts about forms and decorators. http://weierophinney.net Second, As a ZF developer i hardly use the Zend_Form

Re: [fw-general] Some help needed (Validation)

2009-05-29 Thread Vadim Gabriel
, Vadim Gabriel vadim...@gmail.com wrote: Yes you can, You will just need to take a look at the dependencies that component has and make sure you have just those and your good to go. Take a look at http://framework.zend.com/manual/en/requirements.html#requirements.dependencies http

Re: [fw-general] Where is the api doc link for 1.8.2

2009-05-29 Thread Vadim Gabriel
http://framework.zend.com/download/latest# You will find it under Documentation - Download On Thu, May 28, 2009 at 11:12 PM, mbneto mbn...@gmail.com wrote: Hi, I am looking for the link for the API DOC (download version) for 1.8.2. Where can I find it? Thanks. -- Vincent Gabriel.

Re: [fw-general] Ajax Forms

2009-05-29 Thread Vadim Gabriel
Hi, Not sure if i follow your problem. But why won't you use Dojo? or Jquery which are included. On Thu, May 28, 2009 at 11:48 PM, 411161 411...@fedex.com wrote: I am not using Zend_Form, bu if I have to I will. I basically have a page that is a form. When a user selects certain options from

Re: [fw-general] Zend_Form setValue

2009-05-29 Thread Vadim Gabriel
Hi, I did not understand where you place the null value in the code above, But if you do this: $last_name-setAttrib('disable', null); this will unset the 'disable' element from the form. It doesn't accept null values. On Fri, May 29, 2009 at 1:07 AM, samuel verdier

[fw-general] New .Htaccess file rules suggestion

2009-05-29 Thread Vadim Gabriel
Hi, I am pretty sure every ZF developer wondered about the reason why there are multiple requests made to the MVC when there was only one made by you. The reason (that the ZF leaders are aware of) is because of the new Apache rewrite rules. The old rewrite rules were If it's a resource file

Re: [fw-general] Zend_Form setValue

2009-05-29 Thread Vadim Gabriel
Hi, I hope i am understanding you right but if you take a look at Zend/Form/Element.php You will find this: /** * Set element attribute * * @param string $name * @param mixed $value * @return Zend_Form_Element * @throws Zend_Form_Exception for invalid $name

Re: [fw-general] ZF 1.8.2 no more ../../../ in my views!

2009-05-29 Thread Vadim Gabriel
This is how i set up my view: # Set layout and views directories Zend_Layout::startMvc( MODULE_PATH .'/layouts/scripts' ); # Init views object $this-view = Zend_Layout::getMvcInstance()-getView(); $this-view-doctype( 'XHTML1_STRICT' );

Re: [fw-general] Zend_Cache performance

2009-05-29 Thread Vadim Gabriel
And besides the manual says that using the file cache is only recommended when you know you won't have that amount of cached files in the cache directory. Since in that point the bottleneck will be the cache. On Fri, May 29, 2009 at 12:37 PM, enportugal bo...@sapo.pt wrote: HI, I'm using

Re: [fw-general] Creating a dynamic database based Zend_Navigation item?

2009-05-29 Thread Vadim Gabriel
Hi, What's the problem with retreving the enteries from the DB, Assigning them into a multi dimensional array and passing it into the zend_nagivation? On Fri, May 29, 2009 at 1:20 PM, Mary Nicole Hicks webmas...@marynicolehicks.com wrote: Can anyone give me any example on how I could get

Re: [fw-general] How to get row ID back when using Save

2009-05-29 Thread Vadim Gabriel
Hi, Did you try $new_id = $t-lastInsertId(); On Fri, May 29, 2009 at 7:24 PM, Jalil F. jalil.feg...@gmail.com wrote: I am very new to Zend. I have a Books model object that extends Zend_Db_Table. In my controller, I create a new row like this: $t = new Books();

Re: [fw-general] How to get list of all selected CheckBoxes

2009-05-29 Thread Vadim Gabriel
Do you want to do it on the client side (JS) or server side? On Fri, May 29, 2009 at 7:32 PM, Jalil F. jalil.feg...@gmail.com wrote: I have a form using Zend_Form and want to create several Zend_Form_Element_Checkbox elements on this form that are created dynamically. I like to get an

Re: [fw-general] How to get list of all selected CheckBoxes

2009-05-29 Thread Vadim Gabriel
:34 AM, Vadim Gabriel vadim...@gmail.com wrote: Do you want to do it on the client side (JS) or server side? On Fri, May 29, 2009 at 7:32 PM, Jalil F. jalil.feg...@gmail.com wrote: I have a form using Zend_Form and want to create several Zend_Form_Element_Checkbox elements on this form

Re: [fw-general] Common form for multiple controllers [Plugin??]

2009-05-28 Thread Vadim Gabriel
Hi, First you might want to check Matthews blog, He wrote a few posts about forms and decorators. http://weierophinney.net Second, As a ZF developer i hardly use the Zend_Form to generate my forms. I usually do that myself using HTML. From various reason both performance and usability. But one

Re: [fw-general] ZF 1.8.2 no more ../../../ in my views!

2009-05-28 Thread Vadim Gabriel
Personally i usually have inside the application directory a few others directory which are not necessarily modules. I have a helpers directory which contains of view helpers that used across all modules. If you need to have a view that will be shared across modules then just create a directory

Re: [fw-general] Some help needed (Validation)

2009-05-28 Thread Vadim Gabriel
Yes you can, You will just need to take a look at the dependencies that component has and make sure you have just those and your good to go. Take a look at http://framework.zend.com/manual/en/requirements.html#requirements.dependencies On Thu, May 28, 2009 at 8:25 PM, lightflowmark

Re: [fw-general] Some help needed (Validation)

2009-05-28 Thread Vadim Gabriel
with all required dependancies. I have link but not to hand, I can post later if you like, or alternatively google: zend framework packagizer, you may find it that way. On May 28, 2009, at 18:40, Vadim Gabriel vadim...@gmail.com wrote: Yes you can, You will just need to take a look

Re: [fw-general] Zend_CodeGenerator arrays as property

2009-05-26 Thread Vadim Gabriel
First what your trying to do is invalid this protected $_primary = 'array('id')'; will cause a syntax error. second why would you want to have a default value for a property to be a string that consists of an array? this will fail it you try to run it as if it was an array. What are you trying

Re: [fw-general] ZF1.8 problem in getting modular structure work

2009-05-08 Thread Vadim Gabriel
Hey, There are several threads about it already. There is a lot of confusion going on regarding the modules and bootstrapping them which i hope will be solved by someone creating some good documentation about it. On Fri, May 8, 2009 at 5:37 AM, vinodp vpfor...@gmail.com wrote: hi all, is

Re: [fw-general] ZF1.8 Switching layouts between modules.

2009-05-08 Thread Vadim Gabriel
I use a the layouts directory inside every module. If you have for example a different skin for each module you will need to have sub directories inside the layouts directory in each module as well as the views directory and the public directory. On Fri, May 8, 2009 at 2:58 PM, Sergio Rinaudo

Re: [fw-general] Bootstrapping modules

2009-05-07 Thread Vadim Gabriel
, Vadim Gabriel vadim...@gmail.com wrote: P.S I do not use the Zend_Tool yet since it doesn't support modules...Yet (as far as i know) On Wed, May 6, 2009 at 6:23 PM, Vadim Gabriel vadim...@gmail.com wrote: Thanks everyone, I think since there are so many people wondering about it, A blog post

[fw-general] Modules using zend_application

2009-05-07 Thread Vadim Gabriel
I was struggling with this, This entire morning with no luck at trying to figure out how to setup a moduler structure and using zend_application and bootstrapping. I have gone to a point where he scans the modules directory, Does not load the bootstrap files located under each module directory

Re: [fw-general] Bootstrapping modules

2009-05-07 Thread Vadim Gabriel
Vadim Gabriel vadim...@gmail.com: OK i have added a bootsrap.php file for each module in the module root directory. For some reason it won't load that bootstrap file. For example my default module directory is as follows: -default --bootsrap.php --controllers --layouts --views my

Re: [fw-general] Modules using zend_application

2009-05-07 Thread Vadim Gabriel
$_pluginResources = array( 'modules' = array() ); } About the workshop controller problem, that's probably a rewrite issue or a wrong base url setting. -- Mon On Thu, May 7, 2009 at 3:59 PM, Vadim Gabriel vadim...@gmail.com wrote: I was struggling with this, This entire

Re: [fw-general] Modules using zend_application

2009-05-07 Thread Vadim Gabriel
/helpers/layouts/views/translate/etc.. ?? Thanks again. On Thu, May 7, 2009 at 12:20 PM, Karl k...@wedgeonline.co.za wrote: Hi Vincent - See response to your questions below. This is what I understand from the modular structure. From: Vadim Gabriel [mailto:vadim

Re: [fw-general] Modules using zend_application

2009-05-07 Thread Vadim Gabriel
have examples for you. Regards, Karl -- *From:* Vadim Gabriel [mailto:vadim...@gmail.com] *Sent:* 07 May 2009 11:28 AM *To:* Karl *Cc:* Zend Framework - General *Subject:* Re: [fw-general] Modules using zend_application Hey, Thanks for the answers. Could

Re: [fw-general] Modules using zend_application

2009-05-07 Thread Vadim Gabriel
I did the same thing and have the same problem. On Thu, May 7, 2009 at 2:11 PM, Erwin Toze tozer...@gmail.com wrote: 2009/5/7 Karl k...@wedgeonline.co.za Hi, I am still trying to figure out how to have different layouts per module without overriding my main applications layout, so I

Re: FW: [fw-general] Modules using zend_application

2009-05-07 Thread Vadim Gabriel
How about those who do not use ini file as there config file? and yet we can't add a whole bunch of code for every module. What about when someone adds a new module he needs to start adding code blocks into X amount of places to configure that right. That's not the approach i am searching for.

Re: [fw-general] Modules using zend_application

2009-05-07 Thread Vadim Gabriel
It would have been possible if we'd know what module was called inside the bootstrap class. But the bootstrap class is being called before the dispatcher (i think) and therefor we don't know at that point which module is being called. On Thu, May 7, 2009 at 2:27 PM, Karl k...@wedgeonline.co.za

Re: [fw-general] use part of framework only (zend rest)

2009-05-07 Thread Vadim Gabriel
Just read about the REST classes dependencies and only those you will need to include in order to use the REST classes. More info http://framework.zend.com/manual/en/requirements.html#requirements.dependencies On Thu, May 7, 2009 at 2:42 PM, ziadmannan ziad_man...@hotmail.com wrote: Hi, I am

[fw-general] Config file resource routes scan directory

2009-05-06 Thread Vadim Gabriel
Currently in the config file you can do this: 'resources' = array( 'frontController' = array( 'moduleDirectory' = APPLICATION_PATH . '/modules' ), 'router' = array( 'routes' = include dirname(__FILE__) . '/routes.config.php' ),

Re: [fw-general] Bootstrapping modules

2009-05-06 Thread Vadim Gabriel
. regards, Karl _ From: Jurian Sluiman [mailto:subscr...@juriansluiman.nl] Sent: 06 May 2009 04:03 PM To: fw-general@lists.zend.com Subject: Re: [fw-general] Bootstrapping modules Op Wednesday 06 May 2009 14:57:00 schreef Vadim Gabriel: Hey, Are there any tutorials/guides

Re: [fw-general] Bootstrapping modules

2009-05-06 Thread Vadim Gabriel
P.S I do not use the Zend_Tool yet since it doesn't support modules...Yet (as far as i know) On Wed, May 6, 2009 at 6:23 PM, Vadim Gabriel vadim...@gmail.com wrote: Thanks everyone, I think since there are so many people wondering about it, A blog post/tutorial will be a good idea *hint

[fw-general] Re: [zf-contributors] http://www.vadimg.co.il/2009/05/06/zendframework-18-manual-chm-file/

2009-05-06 Thread Vadim Gabriel
Hey, Wow that looks very nice. Thanks for the share. I wish stuff like that were posted somewhere it would have saved me time. And i am sure others could use this too. Thanks again. Vince. On Wed, May 6, 2009 at 8:31 PM, mikaelkael perraud.mick...@orange.frwrote: Vadim Gabriel a écrit

Re: [fw-general] Zend_Loader_Autoloader match Zend_Loader functionality

2009-05-05 Thread Vadim Gabriel
Hey, According to the code it requires both parameters to be set. Other wise it throws an exception. $namespace = $this-getNamespace(); if ((null === $namespace) || (null === $this-getBasePath()) ) { require_once 'Zend/Loader/Exception.php';

Re: [fw-general] Dollar character in Zend_Config key

2009-05-04 Thread Vadim Gabriel
Hey, No, You can't use HTML characters inside the ini file. Use HTML Entities instead. Yes you can use $config-param1-param2 etc.. take a look at http://framework.zend.com/manual/en/zend.config.adapters.ini.html on how to use it. Vince. On Mon, May 4, 2009 at 12:03 PM, admirau

Re: [fw-general] Zend_Payment Paypal, MoneyBookers, Tranzila. Looking for review

2009-05-04 Thread Vadim Gabriel
... Anything will bring us one step forward on having a base class for a complete component. you can checkout the current code from the svn http://code.google.com/p/zendpayment/ Thanks. On Thu, Apr 30, 2009 at 10:26 AM, Vadim Gabriel vadim...@gmail.com wrote: Hey, I have updated the classes

Re: [fw-general] Confused with classes, helpers and html tables

2009-05-04 Thread Vadim Gabriel
Hey, Could you share the code with us? Thanks. On Mon, May 4, 2009 at 8:15 PM, elminster dun...@elminster.com wrote: Hi. I wanted to use a class to generate an html table object before finally outputting this object in the view. I used to do this in non ZF OO PHP by creating my table

Re: [fw-general] Survey: Development environment for PHP/ZFW

2009-05-02 Thread Vadim Gabriel
Hey, 1. Windows 2. local 3. Zend Studio 4. SVN, subversion 5. PHPUnit On Sat, May 2, 2009 at 8:14 PM, howard chen howac...@gmail.com wrote: Please feel free to answer: 1. What OS you are using during development? Windows? Mac? Linux? 2. Do you edit source code on localhost or remote? i.e.

Re: [fw-general] Zend_Payment Paypal, MoneyBookers, Tranzila. Looking for review

2009-04-30 Thread Vadim Gabriel
:03 PM, till klimp...@gmail.com wrote: On Wed, Apr 29, 2009 at 7:57 PM, Vadim Gabriel vadim...@gmail.com wrote: On Tue, Apr 28, 2009 at 8:33 PM, till klimp...@gmail.com wrote: On Tue, Apr 28, 2009 at 6:48 PM, Vadim Gabriel vadim...@gmail.com wrote: (...) 6) I was thinking about

Re: [fw-general] Re: Zend_Payment feedback

2009-04-30 Thread Vadim Gabriel
I should really read about that 3-D secure support. I might have used it before and just didn't noticed or didn't know it's that. On Thu, Apr 30, 2009 at 6:03 PM, Colin Guthrie gm...@colin.guthr.ie wrote: 'Twas brillig, and Tim Fountain at 23/04/09 16:03 did gyre and gimble: I would also

Re: [fw-general] Zend_Payment Paypal, MoneyBookers, Tranzila. Looking for review

2009-04-29 Thread Vadim Gabriel
On Tue, Apr 28, 2009 at 8:33 PM, till klimp...@gmail.com wrote: On Tue, Apr 28, 2009 at 6:48 PM, Vadim Gabriel vadim...@gmail.com wrote: Hey, Wow. Talking about feedback. Those are some great pointers you have right there. I will tackle them starting tomorrow to make it as much

Re: [fw-general] Is Zend_Tool_Project usable atm?

2009-04-29 Thread Vadim Gabriel
Hey, Usually the docs refer to the latest version. 1.8 is currently the latest so you need to assume that it refers to that version. *That's what i do. Vince. On Wed, Apr 29, 2009 at 9:08 PM, Eric Butera eric.but...@gmail.com wrote: On Wed, Apr 29, 2009 at 8:09 AM, Matthew Weier O'Phinney

[fw-general] Zend_Payment Paypal, MoneyBookers, Tranzila. Looking for review

2009-04-28 Thread Vadim Gabriel
Hey, I have just finished writing down 3 blog posts regarding the usage of each of the current supported gateways by Zend_Payment. All of them were tested already (Paypal was tested as much as i could test it). Since there are lots of text written and the code examples are fairly long i decided

Re: [fw-general] Zend_Payment Paypal, MoneyBookers, Tranzila. Looking for review

2009-04-28 Thread Vadim Gabriel
Thanks. I just copy pasted it. It's just a draft. Vince. On Tue, Apr 28, 2009 at 1:26 PM, Cem Derin c...@wysiwyg.de wrote: Zend_Payment_Gateway_Tranzila - http://www.vadimg.co.il/2009/04/28/zend_payment-using-tranzila-as-the-gateway/ Zend_Payment_Gateway_MoneyBookers -

Re: [fw-general] Zend_Payment Paypal, MoneyBookers, Tranzila. Looking for review

2009-04-28 Thread Vadim Gabriel
, but it's hard to do that on your blog entry... On Tue, Apr 28, 2009 at 12:29 PM, Vadim Gabriel vadim...@gmail.com wrote: Thanks. I just copy pasted it. It's just a draft. Vince. On Tue, Apr 28, 2009 at 1:26 PM, Cem Derin c...@wysiwyg.de wrote: Zend_Payment_Gateway_Tranzila - http

Re: [fw-general] h1Zend_PDF support which PDF Versionh1

2009-04-28 Thread Vadim Gabriel
Hey, From what you can understand in the manual the component supports PDF files v 1.4 and up. So i think it should support 1.6 1.7. What's the problem your having? Vince. On Tue, Apr 28, 2009 at 4:12 PM, Kexiao Liao li...@ccf.org wrote: What is the PDF file format version Zend_PDF support

Re: [fw-general] Zend_Payment Paypal, MoneyBookers, Tranzila. Looking for review

2009-04-28 Thread Vadim Gabriel
Hey, Wow. Talking about feedback. Those are some great pointers you have right there. I will tackle them starting tomorrow to make it as much as developer friendly as possible. Now to your pointers About the first question you had with the notification upon payment or subscription. From what i

Re: [fw-general] how to know which controller and action is being called

2009-04-27 Thread Vadim Gabriel
Hey, That will not give him the ability to access the request object in his view script. Unless he would like to get the front controllers instance directly inside the view script file. Vince. On Mon, Apr 27, 2009 at 9:14 AM, Sudheer Satyanarayana sudhee...@binaryvibes.co.in wrote: prado

Re: [fw-general] how to know which controller and action is being called

2009-04-26 Thread Vadim Gabriel
Hey, You mean something like this: $controllername = $this-getRequest()-getControllerName(); $actionname = $this-getRequest()-getActionName(); Vince. On Mon, Apr 27, 2009 at 6:15 AM, prado prados...@hotmail.com wrote: Hi I need some tasks to be done based on which controller and action

Re: [fw-general] Zend_Search_Lucene and Hebrew

2009-04-24 Thread Vadim Gabriel
Hey, Great find. Bookmarked for future use. Vince. On Fri, Apr 24, 2009 at 2:12 PM, centralniak kilc...@gmail.com wrote: Ah, found the solutions here:

[fw-general] Zend_Xml_Parser Zend_Xml_Writer Proposal feedback

2009-04-24 Thread Vadim Gabriel
Hey, I was wondering if anyone willing to give some feedback about the proposal i made @link http://framework.zend.com/wiki/display/ZFPROP/Zend_Xml+-+Vadim+Gabriel I am not sure how often this is used by other developers but i use this very often. I am also not sure if this is something

Re: [fw-general] Zend_Xml_Parser Zend_Xml_Writer Proposal feedback

2009-04-24 Thread Vadim Gabriel
at it. Vince. On Fri, Apr 24, 2009 at 7:33 PM, Matthew Weier O'Phinney matt...@zend.comwrote: -- Vadim Gabriel vadim...@gmail.com wrote (on Friday, 24 April 2009, 06:25 PM +0300): I was wondering if anyone willing to give some feedback about the proposal i made @link http://framework.zend.com/wiki

[fw-general] Zend_Payment feedback

2009-04-23 Thread Vadim Gabriel
Hey, I have been working on a Zend_Payment component @link http://framework.zend.com/wiki/display/ZFPROP/Zend_Payment And there were a lot of good feedback, Since this is something that a lot will was wondering what you guys think about the following: 1. Should the gateways use the zend http

Re: [fw-general] Zend_Payment feedback

2009-04-23 Thread Vadim Gabriel
On Thu, Apr 23, 2009 at 6:03 PM, Tim Fountain t...@tfountain.co.uk wrote: On 23/04/2009, Vadim Gabriel vadim...@gmail.com wrote: 1. Should the gateways use the zend http component and it's adapters such as the Curl to process the payments or use the PHP Curl extension as is? Definitely

Re: [fw-general] Zend_Payment feedback

2009-04-23 Thread Vadim Gabriel
On Thu, Apr 23, 2009 at 6:07 PM, Matthew Weier O'Phinney matt...@zend.comwrote: -- Vadim Gabriel vadim...@gmail.com wrote (on Thursday, 23 April 2009, 05:45 PM +0300): I have been working on a Zend_Payment component @link http://framework.zend.com /wiki/display/ZFPROP/Zend_Payment

Re: [fw-general] Zend_Payment feedback

2009-04-23 Thread Vadim Gabriel
, 2009 at 6:47 PM, Matthew Weier O'Phinney matt...@zend.comwrote: -- Vadim Gabriel vadim...@gmail.com wrote (on Thursday, 23 April 2009, 06:24 PM +0300): On Thu, Apr 23, 2009 at 6:07 PM, Matthew Weier O'Phinney matt...@zend.com wrote: -- Vadim Gabriel vadim...@gmail.com wrote

Re: [fw-general] Zend_Payment feedback

2009-04-23 Thread Vadim Gabriel
that processes payments through tranzila. and i didn't ask for anything like that there. I will get into that in much detail once i do every gateway that requires it. Vince. On Thu, Apr 23, 2009 at 9:13 PM, Tim Fountain t...@tfountain.co.uk wrote: On 23/04/2009, Vadim Gabriel vadim...@gmail.com

[fw-general] New Proposal: Zend_Xml

2009-04-20 Thread Vadim Gabriel
but does the job very well. If anyone out there that works with a lot of data transfer trough XML documents this will be very helpfull. You can find more details here: http://framework.zend.com/wiki/display/ZFPROP/Zend_Xml+-+Vadim+Gabriel Vince. -- Vincent Gabriel. Lead Developer, Senior Support

Re: [fw-general] Sort Controllers in Folders

2009-04-20 Thread Vadim Gabriel
Hey, Not sure if you could without using modules. But did you take a look at the way you could use the modules http://framework.zend.com/manual/en/zend.controller.front.html#zend.controller.front.methods.primary.setcontrollerdirectory Vince. On Mon, Apr 20, 2009 at 11:05 AM, Stefan Sturm

Re: [fw-general] Question on RewriteRule

2009-04-20 Thread Vadim Gabriel
Hey, Please refer to the manual on the recommended rewrite rules to use, The one your using are from older versions. Vince. On Mon, Apr 20, 2009 at 11:22 PM, Jalil F. jalil.feg...@gmail.com wrote: Currently, I have: RewriteRule !\.(js|ico|gif|jpg|png|css|htm|html)$ index.php in my

[fw-general] Zend_Payment Component needs feedback

2009-04-19 Thread Vadim Gabriel
Hello Everyone, As some of you know that there were various discussion on creating a unified API for payment processing. Currently such component does not exists. I have taken the time to see the best way of doing this and i opened a proposal (@link

Re: [fw-general] Encoding issue UTF8

2009-04-19 Thread Vadim Gabriel
Hey, Could you share your code? On Sun, Apr 19, 2009 at 8:28 PM, debussy007 debussy...@gmail.com wrote: No one has any idea on how I couold even debug this ? Thank you for any help ... debussy007 wrote: Hi, When I try to fetch data with special characters from the DB and try to

Re: [fw-general] Session + fopen problem

2009-04-19 Thread Vadim Gabriel
Hey, Did you try using the Curl Adapter within the Zend_Http_Client component? I would try using a Curl to get the website content. By content you mean the source code, Right? Vince. 2009/4/20 José de Menezes Soares Neto z...@detetive.net Hello, I am trying to download an url content, but it

Re: [fw-general] Zend_Translate array adapter

2009-04-18 Thread Vadim Gabriel
Hey, Probably something you will only notice on a busy site and not using cache. Vince. On Sat, Apr 18, 2009 at 11:03 PM, J DeBord jasdeb...@gmail.com wrote: When using the array adapter for Zend Translate is there any decrease in performance or other negative affects when building your

Re: [fw-general] Zend controller redirect

2009-04-17 Thread Vadim Gabriel
Hey, It does by default. But you can override it by using $this-setExit(false); * using 1.8 On Fri, Apr 17, 2009 at 8:56 PM, Michael Tramontano mtramont...@efashionsolutions.com wrote: Before I go digging around the zend source, I was wondering if someone knows if the controller

Re: [fw-general] Zend Framework team reorganization

2009-04-14 Thread Vadim Gabriel
Great news. Congrats Matt on the new promotion i couldn't vote for someone who could do a better job then you. After having both certificates from Zend i can tell a single thing about Zend as a programmer, You guys certainly know how to address the market and decide on the right products line to

Re: [fw-general] What is this: ?= $this-layout()-sidebar ?

2009-04-13 Thread Vadim Gabriel
Hey, Or you could simply overload it. $layout-sidebar = something here; Vince. On Mon, Apr 13, 2009 at 1:31 PM, lightflowmark 1...@lightflowinterrupted.comwrote: They are placeholders for content to be later inserted into. Typically, I think, you would have actions called e.g.

Re: [fw-general] JIRA Password reset

2009-04-11 Thread Vadim Gabriel
Oh, Damn. Wish i knew that before. Problem solved. Thanks Jan. And everyone else. Vince. On Sat, Apr 11, 2009 at 8:03 AM, Jan Pieper j-pie...@gmx.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Matthew will be taking care of this from now on. You should send a mail to him

[fw-general] JIRA Password reset

2009-04-10 Thread Vadim Gabriel
Hi, I was wondering if there was a way to reset my password in JIRA, I sent an email to Matthew and Wil but didn't got any reply yet. Thanks. -- Vincent Gabriel. Lead Developer, Senior Support. Zend Certified Engineer. Zend Framework Certified Engineer.

Re: [fw-general] Login with Auth and Cookies

2009-04-08 Thread Vadim Gabriel
You could store a cookie to reflect the members information. Session expires when the browser closes (usualy) On Wed, Apr 8, 2009 at 4:17 PM, PHPScriptor cont...@phpscriptor.com wrote: Hello, Is it possible to make a login with zend auth and cookies. Problem now: when the user close the

Re: [fw-general] new line character in textarea

2009-04-07 Thread Vadim Gabriel
Hey, I would assume this to be a standard feature. It trims empty spaces and lines. Why would you want to keep an extra empty line? For me for example this is the right way of doing this. And i don't see this as a bug. Vince. On Tue, Apr 7, 2009 at 12:23 PM, Aniketto

Re: [fw-general] new line character in textarea

2009-04-07 Thread Vadim Gabriel
to change filtering behavior. Actually... there are no default filters on any Zend_Form elements, much less a default filter of StringTrim. Most likely this is a browser behavior. Vadim Gabriel schreef: Hey, I would assume this to be a standard feature. It trims empty

Re: [fw-general] Zend_Search_Lucene and Hebrew

2009-04-07 Thread Vadim Gabriel
Hey, Unfortunately, I havn't used Lucene with Hebrew letters yet. But one thing i would like to be sure about. You said it returns an empty array, I took a look at this line from you code: $results = $phrase ? $index-find($phrase) : array(); I assume $phrase is the user submitted search phrase,

Re: [fw-general] Zend_Config_Ini and

2009-04-06 Thread Vadim Gabriel
Hey, Use the HTML Entity which is amp; On Mon, Apr 6, 2009 at 11:18 AM, PHPScriptor cont...@phpscriptor.comwrote: Hey, I'm using the Zend_Config_Ini for loading my config file. $config = new Zend_Config_Ini('etc/config.ini', $environment); When I add a somewhere in my config.ini file,

Re: [fw-general] MVC - Model in View

2009-04-06 Thread Vadim Gabriel
Hey, Was that a question? Cause i didn't quite get what your asking/saying. Vince. On Mon, Apr 6, 2009 at 11:43 AM, Marko Korhonen marko.korho...@datafisher.com wrote: ps. I use Zend_Application and module bootstraps so auto loader finds those models nicely =) Marko -- View this

Re: [fw-general] Zend_Config_Ini and

2009-04-06 Thread Vadim Gabriel
Hey, I am not sure the config_ini parser allows those kind of characters. Try using an XML parser or an array one instead and maybe that will work. Beside you can always overload the config value trough your script somewhere in the constructor. Vince. On Mon, Apr 6, 2009 at 11:51 AM,

  1   2   >