zend-server

Zend Server Community Edition .htaccess issue

浪子不回头ぞ 提交于 2020-01-05 04:50:30
问题 I am a new user of Zend Server. For some reason Apache is not reading my htaccess file in the project folder. please check my settings: Document root:C:\Program Files\Zend\Apache2\htdocs\ project folder: C:\Program Files\Zend\Apache2\htdocs\project1\website\ htaccess path: C:\Program Files\Zend\Apache2\htdocs\project1\website.htaccess Example to of rewrite rule in htaccess: RewriteRule ^([a-zA-Z0-9\-]*)-([0-9]*)-([0-9]*)\.php$ /project1/website/index.php?cat=$2&page=$3 [L] changes in httpd

Zend_Tool problem

老子叫甜甜 提交于 2019-12-25 01:49:26
问题 This is the third time I'm installing zend studio and zend server now these two are installed succesfully (after half a day). But when I'm trying to create a new project I always get this zf error... ` * ** * ** * ** * ** * ** ZF ERROR * ** * ** * ** * ** * ** * In order to run the zf command, you need to ensure that Zend Framework is inside your include_path. There are a variety of ways that you can ensure that this zf command line tool knows where the Zend Framework library is on your

Alternative for Zend Job Queue

扶醉桌前 提交于 2019-12-24 17:44:10
问题 Is it alternative solution for Zend Job Queue what could be used without Zend Server ? My application need to accept quick request and provide quick response (receipt) and limit this part to database entry. After this additional process should be executed in background to analyze this request (generate PDF file, send emails with PDF, send text message, etc) I do not want to initial request to wait for all those actions to finish - just provide receipt and let server do it a few seconds later.

ZF 2: tutorial application, 'Config being merged must be an array […]'

 ̄綄美尐妖づ 提交于 2019-12-23 21:28:00
问题 My Enviroment (Zend Server): PHP Version 5.4.11 Zend Server Version: 6.0.1 Zend Framework: 1.12.3, 2.1.4 Zend Server Gateway: 0.9.0.201301302347 Build: 69400 So I tried to write my first application in ZF2 form official tutorial. ZF version in skeleton application: 2.2 This is link to my project, if someone wants to look at it closer. config/module.config.php <?php return array( 'controllers' => array( 'invokables' => array( 'Album\Controller\Album' => 'Album\Controller\AlbumController', ), )

zeromq php extension for windows

眉间皱痕 提交于 2019-12-21 21:29:04
问题 I am using Zend server configured with IIS 7.5. I searched for edit: zeromq php extension, I found these http://valokuva.org/builds/ and http://snapshot.zero.mq/ I have tried to add extension in php.ini and when I enable it form zend admin it shows an error "The system could not load this extension" and in logs "PHP Startup: Unable to load dynamic library 'C:\Program Files\Zend\ZendServer\lib\phpext\php_zmq.dll' - The specified module could not be found. in Unknown on line 0". I have tried to

How do I upgrade APC on Zend Community Server (needed for Symfony2)?

白昼怎懂夜的黑 提交于 2019-12-18 04:12:28
问题 I am running latest Zend Community Server and want to learn Symfony2 but the config.php gives me an error that my APC (alternative php cache) is deprecated and I have to upgrade it. I'm running OS X Lion and already found the zend folder in: /usr/local/zend/ I also downloaded the source package (3.1.9 stable) from http://pecl.php.net but have no idea how to compile it or where to put it. 回答1: Ok, so I probably found best solution - Zend Server has build-in Zend Optimizer+, which is ~1.8 times

How do I upgrade APC on Zend Community Server (needed for Symfony2)?

﹥>﹥吖頭↗ 提交于 2019-12-18 04:12:07
问题 I am running latest Zend Community Server and want to learn Symfony2 but the config.php gives me an error that my APC (alternative php cache) is deprecated and I have to upgrade it. I'm running OS X Lion and already found the zend folder in: /usr/local/zend/ I also downloaded the source package (3.1.9 stable) from http://pecl.php.net but have no idea how to compile it or where to put it. 回答1: Ok, so I probably found best solution - Zend Server has build-in Zend Optimizer+, which is ~1.8 times

Optimising the Zend Framework

天涯浪子 提交于 2019-12-17 17:46:36
问题 I'm trying to get as much performance as I can out of my application, which uses the Zend Framework. I'm considering using the Zend Server, with APC enabled. However, I need to know a few things first. Is there any benefit of using Zend Server + Zend Framework, or should I just use any ordinary system to host this? Shamil 回答1: My tips for faster ZF (try from top to bottom): Optimize include path zend path first models next rest at the end Use PHP 5.5 with OPCache enabled [NEW] I can't stress

what is oradiag_<user> folder?

坚强是说给别人听的谎言 提交于 2019-12-14 04:16:16
问题 I see these in the my Linux folder hierarchy after installing the Zend Framework. /oradiag_root/ /user/myuser/oradiag_myuser/ /user/myuser/oradiag_root/ This name reminds me of Oracle. But I did not find any official documentation about this. I didn't install any Oracle server. What's going on here? 回答1: I never installed Oracle on my system and don't know why these directories kept being created, but I finally managed to stop them from reappearing. Here's how it's done. First, head over to:

mod_rewrite Zend Server

你离开我真会死。 提交于 2019-12-13 06:35:13
问题 Can not get my mod_rewrite to work with Zend Server My urls are giving the following error Not Found The requested URL /forums/main-forum.2/ was not found on this server. http://pastebin.com/nki3uh8X this is my http.conf Cheers 回答1: You should change: AllowOverride None to: AllowOverride All in your http.conf . 回答2: Zend Server CE has a section on it's httpd.conf setting AllowOverride for the default www directory to None. On my Zend httpd.conf this is between lines 195 and 220. You must set