Directadmin layout broken / bugged

paisley

Verified User
Joined
Aug 17, 2013
Messages
60
6DFm0.png
Look here, it is a clean install, but after 1 day is shows this.

php.ini had zend.multibyte after deleted line everything was ok.
 
Last edited:
Hello,

Check the /usr/local/bin/php binary.. as that's what DA uses for output.
It if gives you any headers, that's the issue.. as it shouldn't have anything but the php output.

Sample valid output:
Code:
[root@server ~]# php<?php
echo "test\n";
?>
test


[root@server ~]#
Sample invalid output:
Code:
[root@server ~]# php
<?php
echo "test\n";
?>
X-php-header: something


test


[root@server ~]#
Use ctrl-d to end your input (press twice, if one has no effect).

John
 
Back
Top