Weird looking path...
but one thing I noticed is that your missing a closing tag which may or may not be the problem.
Try changing
PHP Code:
<?php
$v="2 r16 17.03.2005";
include('include/version.inc.php');
require_once( 'include/Config.class.php');
<?php
require_once('/customers/swalus-productions.be/swalus-productions.be/httpd.www/login_inc.php');
?>
to
PHP Code:
<?php
$v="2 r16 17.03.2005";
include('include/version.inc.php');
require_once( 'include/Config.class.php');
?>
<?php
require_once('/customers/swalus-productions.be/swalus-productions.be/httpd.www/login_inc.php');
?>