Questions tagged as 'zend'

0
answers

Error Hosting - Zend Framework 2

I am hosting a system created in Zend 2 on a dedicated server with Windows Server 2008, Apache 2.4, PHP 7.1.5. The user who is running apache is already fully allowed in the files, but I am getting the following error:    Fatal error: requ...
asked by 26.07.2017 / 13:58
1
answer

Implement Dependent Select with AJAX and JQuery on Zend

I'm new to programming and I'm setting up a small system for a specific collection control. But I need to fill some fields without reloading the page (AJAX) and others when select is set, but I'm not sure how to do this. I'm posting th...
asked by 23.06.2015 / 21:42
0
answers

Zend Framework and symfony [closed]

I started studying Symfony 2 and realized that it is very productive for systems development, but there are people who say that Zend Framework 2 is the best framework in PHP. I would like to know what are the main differences between Symfony...
asked by 13.03.2015 / 18:34
2
answers

ZF1 resulting from the controller in the view

I do not understand how in this case to play the values in the project view, it follows the code: public function indexAction() { $actor = new Application_Model_Actor(); $resultadoActores = $actor->listarAtor(); foreach($result...
asked by 28.05.2014 / 19:20
2
answers

Handling dates for searching the bank

I am performing the following capture of a date: $dtInicial = $this->_getParam('dataInicial'); // Padrão dd/mm/aaaa To search the precise database, leave it in the yyyy / mm / dd pattern: $dt1 = date('Y-m-d', strtotime($dtInicial));...
asked by 12.12.2014 / 14:57
1
answer

Zend Framework - Where are query queries?

I have an application using Zend Framework, in structure MVC, I want to know where the query queries are made to the bank, I'm a little lost because I've never worked with Zend. In my model I instantiate, for example: class Cursos extends Zend...
asked by 31.10.2016 / 01:29
1
answer

Cookie between controllers

I created the following cookie in the controller Location: $cookie = new \Zend\Http\Header\SetCookie('localidade_id', $localidade->getIdentificador(), time() + 3600); However, when trying to access it in the controller Contact:...
asked by 17.03.2015 / 13:54
1
answer

$ this-_forward () and Zend Framework

Sirs, Using $this->_forward() in Zend Framework 1 we redirect to controller and action we want. In my case this is not working well in the following situation. I made a query, I want it after deletar a reco...
asked by 12.02.2015 / 18:00
1
answer

ErrorController for each module in ZF1

I have a project that uses Zend Framework 1. It has 2 modules: default and admin . When an error occurs or exception , Zend directs to the ErrorController. The problem is this: When an error occurs within the " default " module, it po...
asked by 18.02.2015 / 20:20
1
answer

Autoloader Zend Framework 1.12

I'm starting (studying) project with zf where I'm not yet using modules. I have initially the following file ... / projectzend / application / models / Dbtable / Actor.php <?php class Application_Model_Actor extends Zend_Db_Table_Abstrac...
asked by 26.05.2014 / 17:21