Search found 251 matches
- Wed Jun 15, 2011 2:06 pm
- Forum: Zend Server
- Topic: Zend Jobs Stauts
- Replies: 2
- Views: 1521
Re: Zend Jobs Stauts
It is possible that your jobs is terminated due to an execution time limit set either by PHP (max_execution_time) or by your web server. In such cases, the JQD timeout is not reached but the HTTP request is still terminated, and returns possibly with a 200 code (esp. if PHP is the one stopping the e...
- Thu May 05, 2011 12:01 pm
- Forum: Zend Server
- Topic: phpMyAdmin avec Zend Server CE
- Replies: 5
- Views: 3398
Re: phpMyAdmin avec Zend Server CE
Did you select to install phpMyAdmin? (it's an optional component)
Shahar
Shahar
- Thu May 05, 2011 7:31 am
- Forum: Zend Server
- Topic: phpMyAdmin avec Zend Server CE
- Replies: 5
- Views: 3398
Re: phpMyAdmin avec Zend Server CE
Hi, This is an English forum, so I apologize but I'll reply in English (I used Google to translate your message so I hope I'm getting it right). To access phpMyAdmin, open the Zend Server GUI and click on the phpMyAdmin link in the dashboard. Like most other MySQL installations, the admin user is 'r...
- Sun May 01, 2011 9:49 am
- Forum: Zend Server
- Topic: gnupg
- Replies: 2
- Views: 1996
Re: gnupg
Hi, Right now we do not include the GnuPG extension, and since there has been very low demand for it I do not think we are going to start shipping it. ] However, if you install the GnuPG libraries, you can easily add the PHP extension to Zend Server using pecl: # /usr/local/zend/bin/pecl install gnu...
- Thu Jan 27, 2011 4:09 pm
- Forum: Zend Server
- Topic: X-Powered-By Header
- Replies: 2
- Views: 1458
Re: X-Powered-By Header
Yes - in fact this is a PHP feature and there's a PHP directive to disable it. See http://php.net/manual/en/ini.core.php#ini.expose-php
You need to set the 'expose_php' directive to "Off" or 0.
You need to set the 'expose_php' directive to "Off" or 0.
- Thu Jan 13, 2011 5:29 pm
- Forum: Zend Server
- Topic: Error on /ZendServer after installation
- Replies: 25
- Views: 21525
Re: Error on /ZendServer after installation
Do you have the same bad characters in your XML as the previous posters or are you seeing the "500 error" symptom and assume it's the same problem? 500 errors can result from a very large number of reasons, and that problem should have been fixed a while ago.
- Wed Jan 12, 2011 4:22 pm
- Forum: Zend Server
- Topic: Archived versions of Zend Server CE
- Replies: 4
- Views: 1523
Re: Archived versions of Zend Server CE
For what operating system?
Shahar.
Shahar.
- Tue Jan 11, 2011 11:17 am
- Forum: Zend Server
- Topic: Import mysql database using terminal
- Replies: 8
- Views: 3485
Re: Import mysql database using terminal
Hi Nick, I meant that instead of running 'mysql', you need to run './mysql' (mind the dot slash). This will work if you cd into /usr/local/zend/mysql/bin first. Alternatively, you can just specify the command's full path: run '/usr/local/zend/mysql/bin/mysql' instead of just 'mysql'. BTW this is not...
- Tue Jan 11, 2011 10:43 am
- Forum: Zend Server
- Topic: After a crash Zend server CE will not let me stay logged in.
- Replies: 2
- Views: 977
Re: After a crash Zend server CE will not let me stay logged in.
Hi, Can you make sure your browser cache and cookies are cleared, and try again? If that does not help you can also try to delete /usr/local/zend/tmp/gui/*. I would also suggest trying a different browser to make sure the problem is not in your browser. You can try to reinstall Zend Server if you wa...
- Tue Jan 11, 2011 10:37 am
- Forum: Zend Server
- Topic: Import mysql database using terminal
- Replies: 8
- Views: 3485
Re: Import mysql database using terminal
Just to make sure there's no typo in your command, did you run 'mysql' or './mysql' ? There's a big difference in bash and most *NIX shells. The former expects 'mysql' to be in your PATH (which does not normally include /usr/local/zend/mysql/bin) while the latter means 'run the command which is in t...