Re: [fw-general] Session Files

2008-10-10 Thread oetting
session.gc_probability=0 (well; there's your problem) I thought that paying for a managed server meant that i did not have to worry about these things my self... :( Thank you for the hint. Jacob Oettinger Matthew Weier O'Phinney-3 wrote: > > -- oetting <[EMAIL PROT

[fw-general] Session Files

2008-10-10 Thread oetting
Hello All, We are using Zend_Session for our session handling needs. We are using Zend_Session with its default settings, including the file save handler. We seem to have some problems with the system leaking session files. There is currently almost 1 mio session files in the tmp dir, and we do n

Re: [fw-general] noob problem - ZF works on localhost but not on webserver

2008-05-16 Thread oetting
re_once('Banner.php'); > if(Banner::update()) and then works :) > So i am so confused and dont have any clues about all this :) > Thank you one more time, > Vladimir > > > oetting wrote: >> >> Hi and welcome :) >> >> You will have to supply

Re: [fw-general] noob problem - ZF works on localhost but not on webserver

2008-05-16 Thread oetting
Hi and welcome :) You will have to supply more details about your problem for anyone to be able to help. For instance what kind of error messages do you get? Jacob Oettinger vladimirn wrote: > > First of all i would like to say hello to all in here Tho, if i missed a > topic, please move it

Re: [fw-general] The same code can run on Windows but not Linux

2008-04-08 Thread oetting
Hi, Remember that linux is case sensitive. So make sure you use upper and lower case in filenames as dictated by the documentation. Jacob xing93111 wrote: > > I develop a bunch of code using ZF under XP. On Linux machine, the code > cannot find the requested controller and action, but on Wind

Re: [fw-general] Code freeze for 1.5.0RC2

2008-03-03 Thread oetting
Hi, Is Zend_Build going to make it into 1.5? There has not been much activity on the list about Zend_Build/_Console lately. /Jacob Oettinger -- View this message in context: http://www.nabble.com/Code-freeze-for-1.5.0RC2-tp15814739s16154p15821789.html Sent from the Zend Framework mailing list a

Re: [fw-general] file manager

2007-11-26 Thread oetting
Action. > > Thanks, > Jess > > > oetting wrote: >> >> Hi, >> You will have to clearify "how" it does not work. ZF should not stop a >> completely external script from working. Is the problem that you want to >> use it within a Actio

Re: [fw-general] file manager

2007-11-23 Thread oetting
Hi, You will have to clearify "how" it does not work. ZF should not stop a completely external script from working. Is the problem that you want to use it within a Action Controller? Jacob Waigani wrote: > > Hi, > > Has anyone gotten file thingie (http://www.solitude.dk/filethingie) to > work

Re: [fw-general] Pasword for todays webinar?

2007-09-05 Thread oetting
It is because I am to late to regieter. Shame. Does anyone know a way to get in anyway? Thanks again, Jacob -- View this message in context: http://www.nabble.com/Pasword-for-todays-webinar--tf4386577s16154.html#a12506107 Sent from the Zend Framework mailing list archive at Nabble.com.

[fw-general] Pasword for todays webinar?

2007-09-05 Thread oetting
After a little searching i found the registration page for todays webinar. It is not 123456 like the last time i joined, but i can't seem to find a password. Is it not open to all? (Am I to late?) Thanks, Jacob -- View this message in context: http://www.nabble.com/Pasword-for-todays-webinar--t

[fw-general] Wiki down again

2007-08-23 Thread oetting
:) -- View this message in context: http://www.nabble.com/Wiki-down-again-tf4315971s16154.html#a12289053 Sent from the Zend Framework mailing list archive at Nabble.com.

Re: [fw-general] Status on Zend_Form proposals

2007-08-17 Thread oetting
Matthew Weier O'Phinney-3 wrote: > > -- oetting <[EMAIL PROTECTED]> wrote > (on Thursday, 16 August 2007, 02:19 PM -0700): >> Has there been chosen a target release(if any) for including a form >> abstraction in the framework? > > I'm the Zend lias

[fw-general] Status on Zend_Form proposals

2007-08-16 Thread oetting
Hi, Has there been chosen a target release(if any) for including a form abstraction in the framework? The two proposals both look good, but none of them are in the "ready for review" area. What is the reason for this, proposers? Can I/we contribute in any way to help the process along? More pr

Re: [fw-general] debugging database queries

2007-08-12 Thread oetting
This functionality is provided by the Zend_Db_Profiler class. The manual shows you how to use it: http://framework.zend.com/manual/en/zend.db.profiler.html Jacob -- View this message in context: http://www.nabble.com/debugging-database-queries-tf4255953s16154.html#a12112325 Sent from the Zend

Re: [fw-general] Idea: Zend_Debug::dump $label default to __FILE__

2007-06-16 Thread oetting
I think it is a good idea though. It would be possible to achieve this by popping somthing out of debug_backtrace() within the dump function. Jacob Nick Lo-2 wrote: > > On 13/06/2007, at 1:43 PM, Matthew Weier O'Phinney wrote: > >> -- Nick Lo <[EMAIL PROTECTED]> wrote >> (on Wednesday, 13 Ju

Re: [fw-general] Deployment tool?

2007-06-10 Thread oetting
rade3.sql >>> staging/ >>> database2/ >>> upgrade1.sql >>> >>> The dbupgrade script looks for subdirectories of sql that match the >>> database_name. It applies all upgrade scripts named > >>> _version.version. >>>

Re: [fw-general] Deployment tool?

2007-06-07 Thread oetting
> I dont know if a deployment binary is needed as SVN hooks already do this > very well. You can have a SVN post-commit hook as simple as all commits > show > up on a beta.example.com url to complex scenarios like checking branches > etc. This is really a server admin/svnadmin preference. I ha

Re: [fw-general] Deployment tool?

2007-06-07 Thread oetting
> This is something which RubyOnRails nicely manages with "migrations". > Each change to the database is versioned in a separate file which is > basically some ruby code to be executed. It knows about hooks like "up" > and "down" and within this hooks it e.g. creates the new columns with > default

Re: [fw-general] Deployment tool?

2007-06-07 Thread oetting
> I am really curious as to why no one has mentioned Capistrano... I did. I know this would be kind of a clone. And that is one of the questions: Is it important to have a system that is purely php-based? I can't really make up my mind, and am looking for other peoples opinion. Jacob -- View t

[fw-general] Deployment tool?

2007-06-07 Thread oetting
Hi all, I have been thinking about creating a system for deploying php applications. When i say deploy i mean updating php files on a server, not deployment as in distribution. The goal would be to accomplish something like what is possible with Capistrano. First question: Is deployment the corr

[fw-general] Zend_Filter_Input

2007-05-17 Thread oetting
Hi, I am trying this: $filters = array( 'from'=>'digits' ); $validators = array( 'from'=>'digits' ); $input = new Zend_Filter_Input($filters,$validators,array()); $input->process(); This gives me three notices about 'from' not being set. I can see that this is corr

[fw-general] Proposal Zend_Profiler?

2006-11-22 Thread oetting
Hi, I am thinking of proposing a class for measuring how much time different parts of scripts take. This would ofcourse be based on the microtime() function. The class could look somthing like this: Profiler.php class Zend_Profiler { private $_points = array(); privat