1
vote
0answers
3 views
new Zend_Loader_Autoloader not finding files
I just upgraded from ZF 1.7 to ZF 1.9, and almost everything works fine... except for Autoloader.
Old:
require_once('Zend/Loader.php');
Zend_Loader::registerAutoload();
New:
require_once …
0
votes
0answers
7 views
Zend Framework model not returning value
I feel like I'm overlooking something simple.
I have a save function in my model that takes a Customer object:
public function save(Default_Model_Customer $customer)
{
$data = array(
…
0
votes
0answers
4 views
Zend Layout - A “Smart” layout selector
I currently have Zend setup to look for a layout script in each module's view/scripts/layout.phtml file (ie: /application/modules/moduleName/scripts/layout.phtml). This is by setting layout[] to …
0
votes
2answers
12 views
Zend Framework: How to check an additional column while using DbTable Auth Adapter?
Currently, I'm getting a regular DbTable Auth Adapter:
protected function _getAuthAdapter($formData)
{
$dbAdapter = Zend_Db_Table::getDefaultAdapter();
$authAdapter = new …
2
votes
1answer
25 views
Zend Framework: How to retrieve the id of the last inserted row?
I'm inserting a new row into my database with this code:
$data = array(
'key' => 'value'
);
$this->getDbTable()->insert($data);
How can I get the row id of the this row that I just …
3
votes
1answer
43 views
Zend Framework: image upload
Hi,
I want to upload an image with Zend Framework version 1.9.6. The uploading itself works fine, but I want a couple of other things as well ... and I'm completely stuck.
Error messages for …
0
votes
2answers
12 views
Zend framework: how to migrate a site
I'm trying to copy a site built on ZF from production to a localhost environment. All files and db contents were copied but I just get a blank screen. No errors, nothing
Changes made in config.ini I …
2
votes
5answers
33 views
Zend framework techniques
I am trying to migrate to zend framework. Should each webpage be a Controller or an action.
What is the advantage of having multiple actions. Can they talk to each other? and whats the best use of …
1
vote
1answer
12 views
Zend_Input_Filter - how to add several validators to 1 data field
What is the right way to assign a few validators to the same data field when using Zend_Input_Filter.
E.g. my validators array is this and I need to validations on Field2:
$validators = array(
…
0
votes
1answer
16 views
Shared hosting error on my Zend based Application
I have just sucessfully tested my Zend based application on the localhost.When I deployed it on a shared hosting site I got the error below.It happens whenever I try navigate to protected pages of my …
0
votes
2answers
25 views
Zend Framework: How and where to create custom routes in a 1.8+ application?
I've never created a custom route before, but I finally have a need for one. My question is: How can I create a custom route, and where should I create it? I'm using Zend Framework 1.9.6.
0
votes
0answers
12 views
Zend Framework: XAMPP - Redirect/Rewrite
Hello,
I'm using Zend Framework but I have a little problem:
How could I redirect internal all requests from
localhost/zendframework/
to
localhost/zendframework/www/
What have to put …
0
votes
1answer
18 views
SMTP protocol issue with Zend_Mail
I'm trying to send some emails via GMail SMTP and the CC and BCC lines are not receiving the email. I've tested GMail SMTP with Evolution (Linux email client), which works fine, though I could not get …
0
votes
2answers
27 views
Zend: How to nest different controllers into one big?
What are (the best) approaches for the Zend Framework to nest different controllers actions into one big one?
And how would I solve the following situation:
A link in my main big view calls an other …
0
votes
1answer
31 views
Zend framework controller filenames containing “init” ?
Zend framework: what is the significance of controller filenames that have "init" in them? I have 3 files that seems to have exactly the same code, named:
TestController_init.php
…
