Zend Framework is an open source, object-oriented web application framework implemented in PHP 5 and licensed under the New BSD License.
learn more… | top users | synonyms (2) | zend framework jobs
0
votes
0answers
2 views
ZF2 child route
I've created the following route code to create a url structure for my sitemap as follow.
http://site.com/en/sitemap/a/ (a overview e.g. ab, ac, ad, etc.).
http://site.com/en/sitemap/a/aa (here ...
-1
votes
0answers
7 views
Fatal error: Interface 'Zend\Mvc\ApplicationInterface'
Why does that happen? I was having that issue some days ago but after installing from a Zend skeleton I was able to make it work.
However now I'm in a situation where I just checked out someone ...
1
vote
0answers
12 views
What are the advantages of ember data and how I can used
I noticed a new feature in ember.js since RC version. I've been reading about it and I know it now can populate data into a model. But what are the advantages and disadvantages of this? Why should I ...
0
votes
0answers
5 views
IIS and Zend url rewrite
I am having issues with IIS. I can't seem to access www.site.com/controller/method
In my Zend project folder I have:
-public
-application
-...
-web.config
web.config content (to point to the ...
0
votes
0answers
5 views
Doctrine Datetime and where condition
I am writing a Doctrine 2.3 Query and I am facing some issues:
The SQL Query which I am reflecting was:
SELECT *
FROM `entry`
WHERE `plate` LIKE '%'
AND `recognition_datetime` BETWEEN ...
0
votes
1answer
16 views
Upgrade PHP 5.2.x to PHP 5.4.15 - Zend Framework
I know that there are some problems when upgrading to a new Zend Framework Version in combination with PHP Version. Like Zend Framework 2 needs PHP 5.3.
But does someone knows about problems with ...
0
votes
1answer
8 views
Zend 1.12 Form w File Upload is Invalid
I ran into a roadblock with Zend 1.12.3 while submitting a form with file upload input. All seems to be looking just fine, but for some reason the form does not validate. However, when running ...
1
vote
0answers
12 views
Page refresh issue in Zend
I am using Zend framework version 1.11.3 and jquery mobile version 1.3.0-beta.1. My functionalities of login,resgistration,swipe do not work unless I refresh the pages.Where am I going wrong? Any ...
-1
votes
0answers
10 views
Getting header information in the webservice
I have a webservice for the server validation of itunes inapp purchase. I want to provide much more security for my webservice.Now i ve implemented the webservice using zend_json_server with encoding ...
-1
votes
0answers
29 views
Using anchor in URL for SEO and best practice [closed]
my SEO counsellor asked me to use a # symbol in the url of the search engine of the website to avoid duplicate content.
The url looks like
...
0
votes
1answer
21 views
invoking an action helper
I have a directory structure such that I have three directories inside my root directory, namely application, public and library.
Now, inside the library directory, I made a directory Custom, inside ...
0
votes
1answer
13 views
PHP Zend test dump need help understanding
How many elements does the $matches array contain after the following function call is
performed?
this('/^(\d{1,2}([a-z]+))(?:\s*)\S+ (?=200[0-9])/', '21st March
2006', $matches);
A.
1
B.
2
C.
3
...
0
votes
0answers
14 views
Zend Framework 2 with cakephp 2.3
I am building an application in cakePHP and wanted to use Zend Framework 2 with it. 2 compoments which I specifically want to use are captcha and lucene (I know it is maintained separately)
I have ...
0
votes
1answer
6 views
Zend_PDF template Zend_Pdf::load
I am trying to create a PDF with a template using Zend_Framework.
$pdf = Zend_Pdf::load('/..../pdf-template.pdf');
This creates the following error:
Fatal error: Call to undefined method ...
-1
votes
0answers
11 views
Zend Framework 2 Select where with NOW() statement [closed]
how can I select a date in the past / future / today ?
I tried something like this:
public function getDateFuture()
{
$select = new Select();
...