Questions tagged [zend-framework]

Zend Framework (ZF) is an open source, object-oriented web application framework implemented in PHP 5.

Zend Framework features include:

  • All components are fully object-oriented PHP 5 and are E_STRICT compliant
  • Use-at-will architecture with loosely coupled components and minimal interdependencies
  • Extensible MVC implementation supporting layouts and PHP-based templates by default
  • Support for multiple database systems and vendors, including MariaDB, MySQL, Oracle, IBM DB2, Microsoft SQL Server, PostgreSQL, SQLite, and Informix Dynamic Server
  • Email composition and delivery, retrieval via mbox, Maildir, POP3 and IMAP4
  • Flexible caching sub-system with support for many types of backends, such as memory or a file system.

Source: wikipedia

72 questions
5
votes
1 answer

What do I download to get a Apache 2.0.x + PHP 4.4.x environment?

What do I download (on a windows box) to get a Apache 2.0.55 + PHP 4.4.7 environment? I am fine with newer versions of PHP and Apache, but if I want to emulate a environment on an old SunOS server that has older versions of Apache and PHP. Can…
djangofan
  • 4,172
  • 10
  • 45
  • 59
5
votes
1 answer

Advice for Debugging Apache with PHP Segmentation Faults

Every hour or so an Apache child process seg. faults on our web server. We are running a non-threaded PHP 5.2.17 Apache module with Apache prefork MPM. I have run httpd with a few core dumps, gdb and this .gdbinit file from php's github repo, typing…
4
votes
0 answers

Getting error “PHP Fatal error: Uncaught Zend\Uri\Exception\InvalidUriPartException” on AWS server

I am getting following error in error_log after moving the site (developed in Magento ver. 2.3.2) on new server (AWS Server): PHP Fatal error: Uncaught Zend\Uri\Exception\InvalidUriPartException: Host "[IP ADDRESS]" is not valid or is not…
2
votes
1 answer

Exim won't sign mail send by PHP through SMTP

I've been struggling to get Exim to sign my mails i'm sending with Zend2 Mailer class. The class has the option to send through SMTP; this is awesome since i have everything configured at MTA level. However. Sending mail from a client (Thunderbird)…
2
votes
1 answer

Zend 1 on Ubuntu with MSSQL not working

Does anyone know how to solve the following issue? If not, does anyone know how to setup Zend 1 on Linux to communicate with msSQL server? We get the following error in the nginx logs when trying to use freetds and the pdo_dblib adapter. We're…
user162321
  • 21
  • 2
2
votes
2 answers

Setting the timezone in MySQL on every connection using Zend PHP

My company just recent moved our MySQL database to and instance Aamazon Web Service's RDS. The problem is the application relies on time zone information and the timezone in MySQL (under RDS) is set to UTC and can't be changed. So I'm wondering how…
Philip Isaacs
  • 113
  • 1
  • 1
  • 9
2
votes
0 answers

Mod_pagespeed with Zend Framework gives 404

I am expiering some problems with the Google's Apache mod_pagespeed module to combine css, js, etc. During the last months I developed a new version of our software based on Zend Framework. I just installed mod_pagespeed and it doesn't seem to…
2
votes
4 answers

How to avoid index.php in Zend Framework route using Nginx rewrite

I am trying to get rid of index.php from the default Zend Framework route. I think it should be corrected at the server level and not on the application. (Correct me if I am wrong, but I think doing it on the server side is more efficient). I run…
Adam Benayoun
  • 1,138
  • 2
  • 14
  • 26
2
votes
1 answer

How do I avoid public folder name from zend framework project URL?

I am a newbie with Zend framework. How do I run the url of project without the public folder name.I am using a shared hosting server .Anyway to change this by using .htacces ?. I should have the url look like myzfproject.mydomain.com. Please advise…
Rinto George
  • 123
  • 1
  • 4
2
votes
2 answers

PHP fatal error on Zend when upload local site to live site

I used Zend Framwork with Digitalus CMS. I work with ubuntu for test/developping, the website work perfectly fine there. The problem is when I migrate the website to the IIS production server, I get those errors : PHP Fatal error: Uncaught exception…
Achu
  • 231
  • 1
  • 2
  • 11
2
votes
1 answer

How do I deploy two zend frame work based apps in apache2 like the one in tomcat

I have two Zend framework applications called finance and fleet. Both of them have the same .htaccess file as indicated below RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond…
jspeshu
  • 189
  • 1
  • 1
  • 9
2
votes
2 answers

How to remove require_once calls in a directory (Win)

This is a linux shell command which will comment all require_once calls from certain directory in php files: % cd path/to/ZendFramework/library % find . -name '*.php' -not -wholename '*/Loader/Autoloader.php' \ -not -wholename…
Richard Knop
  • 1,089
  • 2
  • 19
  • 33
2
votes
1 answer

How to use a different version of Zend Framework when using Zend Server

I've installed Zend Server and Zend Framework is bundled with it. I've noticed that my new application uses the Zend Server version of Zend Framework (1.10), not the one I've pointed the /library/Zend to (1.9.6). How can I override this default…
Shane Stillwell
  • 337
  • 1
  • 4
  • 11
1
vote
1 answer

Composer crashes

When I run composer update I get this error: PHP Fatal error: Uncaught TypeError: Argument 1 passed to Symfony\Component\Console\Question\Question::__construct() must be of the type string, array given, called in…
Boba Fit
  • 121
  • 6
1
vote
2 answers

NGINX: route to index.php within alias for specific path component with query string

This is legacy app (Zend framework 1), we are moving from apache to nginx. We have front controller which dispatches to specific controller/action based on request URI. Requirement 1. www.example.com --> /home/user/www/public/index.php 2.…
Venu
  • 215
  • 1
  • 7
1
2 3 4 5