I just have a box setup today and notice that the new Cpanel installation have Zend Opt 3.0.0 selected which causes the Apache to not able to start up. No error is thrown in the apache error_log.
After changing the my $ver to 2.6.2 in /scripts/installzendopt and reinstall the Zend Opt, things are getting back to normal now:
After changing the my $ver to 2.6.2 in /scripts/installzendopt and reinstall the Zend Opt, things are getting back to normal now:
#my $ver = '3.0.0';
my $ver = '2.6.2';
my %urls = (
'Linux' => 'http://downloads.zend.com/optimizer/' . $ver . '/ZendOptimizer-' . $ver . '-linux-glibc21-i386.tar.gz',
'Linux64' => 'http://downloads.zend.com/optimizer/' . $ver . '/ZendOptimizer-' . $ver . '-linux-glibc23-x86_64.tar.gz',
'FreeBSD 6.x' => 'http://downloads.zend.com/optimizer/' . $ver . '/ZendOptimizer-' . $ver . '-freebsd6.0-i386.tar.gz',
'FreeBSD 5.x' => 'http://downloads.zend.com/optimizer/' . $ver . '/ZendOptimizer-' . $ver . '-freebsd5.4-i386.tar.gz',
'FreeBSD 4.x' => 'http://downloads.zend.com/optimizer/2.6.0/ZendOptimizer-2.6.0-freebsd4.3-i386.tar.gz'
);