Crashing almost every minute

I have no idea why it’s crashing. But here is some of my error log: [Thu Dec 29 03:23:45 2011] [error] [client 94.142.134.238] File does not exist: /var/www/phpMyAdmin [Thu Dec 29 03:24:38 2011] [error] [client 96.240.84.138] File does not exist: /var/www/crossdomain.xml, referer: http://s.nsdsvc.com/App/DddWrapper.swf?c=4 [Thu Dec 29 03:36:19 2011] [error] [client 68.0.155.173] File does not exist: … Read more

Is it possible to have both ion cube and zend loaders running on the same server?

For ion cube I need this line zend_extension = /usr/lib/php5/20060613+lfs/ioncube_loader_lin_5.2.so while for zend I need this one zend_extension = /etc/php5/ZendOptimizer.so Are these loaders mutually exclusive and if no, what line do I need to have them both running? Answer Just the two lines together (in this order) seem to work fine zend_extension = /usr/lib/php5/20060613+lfs/ioncube_loader_lin_5.2.so zend_extension … Read more

Qmail / Zend Mail – RFC 5322 compliant

My company is getting spammed by itself, or rather by it’s Qmail, we’ve got a few automated processes sending out e-mails with Qmail and Zend Mail. I’m not a expert in either of these, (I know literally nothing about them), and the ‘spam e-mails’ are Qmail telling us that a series of e-mails being sent … Read more

PHP5-FPM on Nginx crash Zend/zend_language_scanner.c: no such file or directory

Our current configuration: Debian 8.6 Nginx web server PHP5-FPM v5.6.27-0+deb8u1 Zend Engine v2.6.0 with Zend OPcache v7.0.6-dev We use Phalcon framework v2.0.11 (and v2.0.13 on test environment, where we experience the same errors). In order to work, Phalcon needs to be compiled and then it becomes a PHP pre-loaded module (phalcon.so). During compilation, it invokes … Read more

Strange issue with Pthreads – Why is there a delay in each new Thread Submit when opcache.enable_cli is disabled?

So for context, I am running PHP-FPM 7.4 on Ubuntu and I compiled it with ZTS. Then added the extensions Pthreads and ZSTD . I am running a few hundred tasks and I need them to spawn new php processes as fast as possible, but after multiple tests I realized although my script was running … Read more

MySQL connecting issue with Zend App

I’ve set up a VirtualHost on my local machine (Windows XP with XAMP installed) and installed Zend there as well, now I’m trying to connect to the MySQL database and I get the following error message: Message: SQLSTATE[HY000] [2003] Can’t connect to MySQL server on ”myhost.com” (10060) All the tips I’ve found via Google haven’t … Read more

PHP ZendOptimizer on Red Hat Enterprise Linux

I would like to install FlashMoto and the requirements are not unreasonable: PHP 5.2.1 or higher, Zend Optimizer 3.3 or higher. However my RHEL 5.4 provides me with PHP 5.1.6. So I tried the remi repository http://rpms.famillecollet.com/ but it gave me PHP 5.3.1 and Zend Optimizer from zend.com does not support anything higher than 5.2.x. … Read more

Zend Server + Daemontools

Is anyone running Zend Server under Daemontools? I know I can use -D NO_DETACH to run apache under daemontools. But, I’m not sure if the other Zend Server components (monitor, lighthttpd, scd, jobqueue) have similar options. (The end goal is “run Zend Server with service supervision”, so upstart would be fine too. For reference, my … Read more