I have successfully installed sentora in my VPS,
PHP error message is not showing,
for example:
<?php
echo 'hello world';
require_once('invalid_file.php');
?>
here the php engine should print the 'hello world' first, then it should throw an fatal error msg. but it's doing nothing! :O
doing the same in case of
even in case of simple error like undefined variable,
<?
//$var1='print this out';
echo $var1
?>
it's doing nothing! :'(
PHP error message is not showing,
for example:
<?php
echo 'hello world';
require_once('invalid_file.php');
?>
here the php engine should print the 'hello world' first, then it should throw an fatal error msg. but it's doing nothing! :O
doing the same in case of
even in case of simple error like undefined variable,
<?
//$var1='print this out';
echo $var1
?>
it's doing nothing! :'(