[fw-general] Re: Trying to add some data to database from a form

2010-03-19 Thread vb
- Well, check your modules\header.php, line 3, as the message states. Someone is outputting on line 3 or before. Maybe an include file. - Check that there are no spaces/anything before ?php in the php files. - Delete all closing ? in php files. Spaces after can/will cause outputting. - Check

[fw-general] Re: Trying to add some data to database from a form

2010-03-19 Thread vb
Hm, I wasn't looking careful enough your code. As I said in my first answer, index.php is not meant for any output. Thus, the code from index.php - require('modules/header.php'); - require('modules/menu.php'); should go to the same place where you have put titleEshop/title ... It doesn't

[fw-general] Re: Linux Server Giving Issues?

2010-03-01 Thread vb
Most (all) of the issues I encounter on uploading perfectly fine working app to Linux is the UpperLower case file names. Turn on exceptions and see which file might be missing i.e. can't be found. Permissions could be the second problem to check, but probably not on default/index controller. --

Re: [fw-general] Apache returning 404 instead of errorHandler page

2009-11-25 Thread vb
Hm, somehow, without any changes or reconfiguration, only several restarts in several days, it just started to work again. I see errorHandler pages again. So, maybe the solution is to let it rest for a while. ;-) -- View this message in context:

[fw-general] Apache returning 404 instead of errorHandler page

2009-11-21 Thread vb
This is a very strange problem. ZF application worked perfectly on intranet network with Zend Server 4.0.6. My perfect programing skills caused an infinite loop, so I had to manually kill php.exe process (XP 32-bit). After that, when I try to access some non-existing page (e.g.

[fw-general] Re: Zend Modules - Calling a Module from Controller

2009-11-21 Thread vb
Stephenalistoun wrote: Hey All, I'am trying to call a Module from the Controller and I'm keep on getting an error stated below: Class 'Default_Module_UsersTable' not found in C:\wamp\www\ZendCasts\application\controllers\IndexController.php on line 16 //***

[fw-general] Re: Howto have the default module controllers with module prefix

2009-11-21 Thread vb
Exception e wrote: Because the other sublists of zend-framework refuse to process my messages, I am forced to post it here. Maybe someone can explain why all messages keep pending? I hate this -( == Here is my question: I have a default module defined in application.ini

[fw-general] Re: How to test file uploads

2009-11-21 Thread vb
Abraham Block wrote: I'm overriding isValid in my form to add on a subform for any uploaded files that are coming in (because i'm allowing an arbitrary number of files, the amount which cannot be known before). I need to test that when a file is uploaded that a subform gets added. Since

[fw-general] Re: Zend Navigation and Router issue

2009-11-21 Thread vb
Fred Jiles wrote: Awesome you are the man. I figured it had to do something with the stack and how it was processed. It doesn't make sense the the default is null, why not make the default, default? This way you don't need to add the extra markup? On Fri, Nov 13, 2009 at 11:45 AM,

[fw-general] Re: Zend Navigation and Router issue

2009-11-21 Thread vb
EDIT: Forgot to say to setup plugin in _initRoutes in bootstrap: protected function _initRoutes() { $router = new My_Controller_Router_Rewrite(); Zend_Controller_Front::getInstance()-setRouter($router); -- View this message in context:

Re: [fw-general] Apache returning 404 instead of errorHandler page

2009-11-21 Thread vb
this directive. HTH, drm / Gerard vb wrote: This is a very strange problem. ZF application worked perfectly on intranet network with Zend Server 4.0.6. My perfect programing skills caused an infinite loop, so I had to manually kill php.exe process (XP 32-bit). After that, when I try to access