Apache httpd 2.4.1 Released

Those are just telling you that you shutdown apache. As long as its running now, you can ignore those messages.
I assume they only happened once or twice, are they constantly repeating?

Thanks, all ok

use ioncube_loader_lin_5.3_ts.so instead of ioncube_loader_lin_5.3.so
i unpacked it manually to /usr/local/lib,
edited /usr/local/lib/php.ini line where it says

zend_extension=/usr/local/lib/ioncube_loader_lin_5.3.so
to
zend_extension=/usr/local/lib/ioncube_loader_lin_5.3_ts.so

then restart apache:
service httpd restart

edit:
i ran into some issues later on caused by /usr/local/installatron/etc/php.ini changed
zend_extension_ts = "/usr/local/installatron/etc/ioncube_loader_lin_5.3_ts.so"
to
zend_extension=/usr/local/lib/ioncube_loader_lin_5.3_ts.so

Thanks, works fine
 
use ioncube_loader_lin_5.3_ts.so instead of ioncube_loader_lin_5.3.so
i unpacked it manually to /usr/local/lib,
edited /usr/local/lib/php.ini line where it says

zend_extension=/usr/local/lib/ioncube_loader_lin_5.3.so
to
zend_extension=/usr/local/lib/ioncube_loader_lin_5.3_ts.so

then restart apache:
service httpd restart

edit:
i ran into some issues later on caused by /usr/local/installatron/etc/php.ini changed
zend_extension_ts = "/usr/local/installatron/etc/ioncube_loader_lin_5.3_ts.so"
to
zend_extension=/usr/local/lib/ioncube_loader_lin_5.3_ts.so

Thanks, will try it later today ;)
 
That worked, thanks :)
Might want to note that Options +FollowSymLinks in .htaccess throws a 500 error.
 
Hello

We have installed any way that we have not run into problems with various error
Do you support the Direct Admin control panel is consistent with httpd 2.4.1?
I think the problem is Direct Admin is a powerfulle support in httpd 2.4.1
Direct Admin as default and support you can provide me with httpd 2.4.1 The control panel?
Thanks
 
One question though.
My sites sometimes show a 404 but after refreshing the page a couple of times, it's online.
It does this randomly especially on Wordpress blogs.
 
Just tried to update, but it isn't working.

Version: 1.1.37

Latest version of Apache: 2.4.1
Installed version of Apache: 2.2.22

I ran update, update_script and update_data multiple times.

Error:
Code:
config.status: executing default commands
Done Configuration.
increasing FD_SETSIZE in os/tpf/os.h ..
Cannot find /usr/local/directadmin/custombuild/jail/ap2.4/suexec.c. Run './build update_data'

Does anybody know what to do? Thanks!
 
Change apache version in options.conf

options.conf already contains the following:
apache_ver=2.4

Changing it to 2.4.1 gives more errors, so I suppose this setting is right.

Is it possible to remove custombuild and 'install' it from scratch? Maybe I messed with some settings earlier and that's causing the trouble now.
 
mod_suphp 0.7.1 is not compatible with apache 2.4, but I made it compatible in CB 1.1.37 and 1.2.32. You may give it a try:
CB 1.1:...

I have received some information on email from terrye at apache dot org , he suggest the HTTP Server project take suPHP into its standard group of supported modules. However, the developer behind suPHP has not yet been available and has not yet responded.

Terry has this additional information about how to make suPHP compatible with Apache 2.4.1:

> This is configuration issue triggered as a consequence of the function
> AP_DECLARE(void) ap_log_rerror( ... ) in server/log.c being replaced by
> AP_DECLARE(void) ap_log_rerror_( ... ) plus the wrapper defines for
> ap_log_rerror in include/http_log.h. So tracking this down should be
> straight forward in principle.
 
Last edited:
Ah, it is, thanks.
Why is it still complaining about this?
Starting httpd: AH00526: Syntax error on line 3 of /etc/httpd/conf/extra/httpd-directories.conf:
Either all Options must start with + or -, or no Option may.
 
Ah, it is, thanks.
Why is it still complaining about this?

Please try:
Code:
./build update
./build rewrite_confs

Make sure you have no custom configs in directory "custom".
 
Stopping httpd: [FAILED]
Starting httpd: AH00526: Syntax error on line 28 of /etc/httpd/conf/httpd.conf:
Either all Options must start with + or -, or no Option may
 
Stopping httpd: [FAILED]
Starting httpd: AH00526: Syntax error on line 28 of /etc/httpd/conf/httpd.conf:
Either all Options must start with + or -, or no Option may

It seems you have custom httpd.conf (or a very old version), run the following to fix it:
Code:
cd /usr/local/directadmin/custombuild
./build update
mv custom/ap2/conf custom/ap2/conf_back
./build rewrite_confs
 
Back
Top