Zend Framework 2 is a PHP 5.3+ MVC framework and component library.
0
votes
0answers
8 views
Validate importing csv file in Zend Framework 2
I am uploading .csv file which contains 4 columns (codeid, codename, codeper, staecode )
.csv
Example data:
6,uyt,34,UPa
4,uyt,34,Ap
how to check uploading file fields are correct datatypes or ...
0
votes
0answers
13 views
Zend Framework 2 - DateSelect Empty Option
The following works, it sets the select list to today's date on page load. However, on submit, does not update to the selected date. How is it possible to select today's date on page load, however, ...
0
votes
0answers
14 views
how to insert a new row
create action in Controller
public function createAction()
{
$builder = new AnnotationBuilder($this->getEntityManager());
$timelog = new Timelog();
$form = ...
1
vote
2answers
31 views
Zend search integration in native PHP project
I would like to integrate zend search into a native PHP project. I am getting all kinds of include errors.
I have done some research and it seems that there are a lot old articles about it written ...
0
votes
1answer
21 views
access contoller action variables to zf2 layout
I have created two layouts: one for the login page and another for the rest of the site. After login I want to pass variables from login controller to zf2 layout, but not able to access.
How can i ...
0
votes
0answers
16 views
ZF2 Doctrine2 Entity Cache
Does somebody know how to cache doctrine2 entities in a zf2 project. I cant find a tutorial or website where this is explained. I cant find any information to start with defining a entity filecache.
...
1
vote
0answers
27 views
Zend 2: how much can I expose to a Router?
I have a best practices question relating to building a custom router in Zend 2. I would like to use the service manager to get something in my router which would allow me to connect to an arbitrary ...
0
votes
1answer
17 views
zend framework2 How to echo out multiple checkbox separately
I am using Zend MultiCheckbox form element
$this->add(array(
'type' => 'Zend\Form\Element\MultiCheckbox',
'name' => 'conferenceoption',
'options' => array(
...
-1
votes
0answers
31 views
What is the best way to force SSL on admin page with Zend Framework 2? [closed]
I am building a PHP application with Zend Framework 2. I've created an "Admin" module, and this Module should redirect a user to HTTPS if accessed via HTTP. I've added a method to check scheme, and ...
0
votes
0answers
22 views
ZF2 Dependency Injection (DI) case with Doctrine
I would like my controllers to be instantiated with DI, ideally through configuration. Most of them make use of a class called ModelInput\Engine wrapping some Doctrine Functionality. The ...
0
votes
1answer
33 views
Invalid Parameter Number
What am I missing with this SUPER simple example where the code has initially been generated by Zend 2 SQL\Update however I've grabbed the SQL to process the error manually:
$data = array(
...
0
votes
0answers
14 views
DQL INNER JOIN with Zend Framework 2 / Doctrine 2
With this SQL-Statement, i can fetch the latest messages from all users:
SELECT m1.*
FROM message AS m1
INNER JOIN user
AS u1
ON m1.sender_id = u1.user_id
INNER JOIN (
SELECT ...
1
vote
1answer
23 views
Is SSH required to use the Zend framework skeleton in the “Getting Started” guide?
I have installed the Zend framework using the application contained within my shared hosting account. The problem appears to be that the shared hosting does not allow SSH which leads me to think that ...
2
votes
1answer
23 views
How to use multiple on clause in joining in zend framework 2
I am doing like this sql into zend framework sql pattern.
SELECT
jobs . *,
c.id AS cid,
c.name AS name,
c.companyImage AS companyImage,
c.logo AS logo,
count(app.userId) AS ...
-4
votes
0answers
28 views
OAuth 2.0 Login implementation in zend Framework [closed]
I am new in both OAuth2.0 and zend fraework. I want to implement a login page that check user info with mysql database and gives permission to login by using OAuth 2.0 and zendframwork.
1
vote
0answers
36 views
How to present actions from multiple modules on one page in ZF2?
I'm rewriting an app to ZF2 and I got stuck on problem of aggregating views from many modules on one page. What I want to achieve is to separate functionalities into modules, but still be able to ...
0
votes
1answer
38 views
ZF2 - show jQuery Ui Dialog
I want to pop-up a jQuery Ui Dialog, but it doesnt work. Instead of dialog, i get a new page opened. My code is next:
Controller's action:
public function diaAction()
{
$viewModel = new ...
0
votes
1answer
23 views
Is there a way to create a combobox in Zend2
I'm using Zend2 and I need a select that allows for input of arbitrary text if none of the selectable items is appropriate. Zend2 doesn't seem to have a combobox element. Ideas?
0
votes
1answer
31 views
Zend Framework 2 Routing Error
I am trying to create a custom user module in Zend 2, but I am having a problem in routing in "Segment" and "Literal".
I have googled a lot without finding a solution. My module is "User":
I am ...
0
votes
4answers
45 views
PHP retrieving array values using dash arrow “->”
I've been using PHP quite a while now, but never been an advanced programmer. I feel like this is dumb question but never understood why some array values can be retrieved using different methods:
...
3
votes
0answers
55 views
zend framework 2 + phpunit + multiple modules + continuous integration
Thanks in advance for any comments. I have just started to switch from Zend Framework 1 to ZF2 and after running through the quick start and several other tutorials I noticed that there is a short ...
-3
votes
1answer
51 views
Get user role in my actions [closed]
I am using zf2 with this two module
-zfc-user
-bjyauthorize
And i want to get the user role from my actions to specify the return view
0
votes
0answers
26 views
Zend Framework 2 accents using formRow view helper
I have a class which contains all traduced strings of my page.
All strings have its accents with its respective &xacute; code.
When I render my page, the labels rendered with formLabel view helper ...
0
votes
1answer
29 views
Doctrine 2 memory hogging
I'm using Doctrine 2 with my ZF2 project, but i'm getting some weird problem with my server CPU and memory. And my server simply crashes.
I'm getting a lot of sleep state querys and they seem not to ...
2
votes
1answer
37 views
ZF2 - Injecting pages to navigation before controller is called
I'm creating a dynamic Application in which the content is added through a CMS. Inside the CMS, I'm setting a db entry which states what module to use for each content page.
NodeId,
ParentNodeId,
...
1
vote
1answer
54 views
Writing a PHP API and an Android app
I have a shop project written with Zend Framework 2 and now I want to write an app for this project. I'm new to this whole Android thing (I wrote a few test apps, but no big project like this). So at ...
2
votes
1answer
21 views
Translation of database with poedit and zend translate
Poedit does not automatically recognise the content of a table in a database.
What is the best way to get the content of a table recognized by poedit for its translation in zend. I would like it to be ...
0
votes
0answers
46 views
How to “Split” Zend Framework 2 MVC application to different servers?
Is it possible to split an ZF2 MVC application to different servers? I to put the controller an model on a "backend" server an keep the view on a public webserver.
Does anybody has some experience or ...
0
votes
3answers
28 views
how to set logger objecte to any module controller in ZF2?
how to configure and use logger in ZEND-framework 2 ?
is it good way to create logger object in application bootstrap ?
0
votes
0answers
23 views
ZF2 Doctrine2 Pagination Cache
Does anybody of you know how to configure cache for zf2 pagination using doctrine2?
The way i dot it:
$cache = \Zend\Cache\StorageFactory::factory (
...
0
votes
1answer
38 views
ZF2 Event Trigger
I'm having an issue getting an event to trigger. Here is my code...
controller.php
function get($id)
{
$this->getEventManager()->trigger('hmac.check');
}
When this trigger is ran it ...
1
vote
0answers
30 views
ZF2 user remember me not working
I am trying to implement rememberme functionality for my ZF2 v2.2 site.
So here is what i have done so far :
I created a service for session manager to write the session to db :
'session' => ...
2
votes
1answer
37 views
How to use InputFilterManager to construct custom InputFilters in Zf2
ZF2 documentation says following on defult services documentation;
InputFilterManager, mapping to Zend\Mvc\Service\InputFilterManagerFactory. This creates and returns
an instance of ...
1
vote
1answer
50 views
zf2 - Zend\Db - What do Model, Entity, Hydrator, Mapper, TableGateway do and how it all links together?
Please explain what
Model
Entity
TableGateway
Mapper
Hydrator
do and how it all works together in zf2 application.
please don't give links to blogs articles. I need simple big picture ...
1
vote
0answers
29 views
zend framework 2 plugin predispatch
In ZF 1 we created a predispatch function in a controller plugin class
such as
public function preDispatch(Zend_Controller_Request_Abstract $request) {
Can we create the same predispatch function in ...
-3
votes
0answers
23 views
Do I need Zend Server to Run a Zend Rest API
Do I need Zend Server to Run a Zend Rest API
I am working with Zend Framework 2, and I have created an Restful API, however my company decided not to use Zend server. Now I want to use red had ...
0
votes
0answers
32 views
Combining Module Configurations in Zend Framework 2
First, thanks for reading.
I'd like to have Modules that have a particular configuration key in their local configs (an array of strings to be simplistic), contribute these strings to the Application ...
2
votes
1answer
43 views
Convert Zend\Db\ResultSet\HydratingResultSet to Array of Objects
In my Mapper class I'm extending AbstractDbMapper from ZfcBase to fetch rows from the database. A simple example would be code like this:
public function fetchById($id) {
$select = ...
0
votes
1answer
37 views
ZF2 Fatal error: Class 'Locale' not found
I am using ZF2 2.1.5 and trying to use the Alnum filter Zend\I18n\Filter\Alnum.
I have the php_intl extention enabled in my local wamp server but still getting the error :
Fatal error: Class ...
4
votes
0answers
37 views
Nesting Fieldsets under Radio or Checkbox items: Zend Framework 2
I would like to create a fieldset under each radio/checkbox item.
e.g
Which animals do you like
[x] Cats
[Fieldset of cat related questions]
[ ] Dogs
[Fieldset of dog related questions]
...
0
votes
1answer
30 views
Adding route as child of route from another module
In ZF2, how can I add a route as a child of a route from another module? I'm assuming there's a way to hook into a event somewhere?
E.g. Module A defines a route for /foo. In Module B, I would like ...
0
votes
1answer
24 views
BjyAuthorize denies access when application runs from a subdirectory
I have a problem with BjyAuthorize. I can access to the routes defined in guards parameter without problem when the application is in the root folder of my virtualhost, but I get an access denied ...
0
votes
1answer
23 views
Zend Authentication 'Zend\Authentication\Adapter\DbTable' gives error while authenticating
I used a simple instruction from
http://framework.zend.com/manual/2.0/en/modules/zend.authentication.adapter.dbtable.html#advanced-usage-by-example for Zend Authentication.
Here is my code:
$adapter ...
0
votes
1answer
26 views
Zend Framework 2: Getting an ordered SQL call
I've been trying to get an order ASC/DESC call for a field (let's say craeted), and I can't seem to figure out how to do it in ZF2.
Where am I going wrong..?
namespace Todo\Model;
class TodoTable ...
0
votes
1answer
33 views
Doctrine 2 Entities Relations Remove
I have an owning entity that has the following relation to an "attribute" entity:
/**
* @ORM\OneToMany(targetEntity="Attribute", mappedBy="entity", cascade={"persist", "remove", "merge"})
**/
...
0
votes
1answer
22 views
Zend framework 2 translation using getttext in jquery
I have a web page made with ZF2 and have translated all strings of my controllers, views and fieldsets using the translate method offered by the framework in the php code.
But what about the jquery ...
3
votes
0answers
34 views
Zend 2 CSV Action
I have created the following action, which successfully returns a CSV. however it still returns the layout within the response. From what i have read the layout is not supposed to be returned. aAnyone ...
1
vote
1answer
33 views
Zend\Session\SessionManager and cookie_lifetime
I'm seeing some odd and frustrating behavior with ZF2 sessions and timeouts.
Here's the code I use to set up the session:
$sessionConfig = new \Zend\Session\Config\StandardConfig();
...
0
votes
1answer
45 views
Zend Framework 2: Debugging Plugin
Relying on PHP's error reporting and backtracing is quite a pain and messages are hard to read at times. Before, I had no choice but to bear with it. Not until I found this ...
2
votes
1answer
43 views
In Zend Framework 2, how do you use a controller plugin outside the controller
Specifically, I'm trying to use the FlashMessenger plugin form within my Module.php file.
Right now the method inside my Application/Module.php file looks like this:
public function ...




