Hey modpluz, I still can not manage to get xbilling to work properly including the cron job.
Was playing around with it today and did some snooping and found this error by using a print_r() in account_jobs.php:
Code snippet of the location (Line ~231):
https://www.mach-hosting.com/signup/cron...s_jobs.php
Was playing around with it today and did some snooping and found this error by using a print_r() in account_jobs.php:
Code:
Array ( [0] =>
Fatal error: Call to a member function GetControllerRequest() on a non-object in /etc/sentora/panel/dryden/ctrl/auth.class.php on line 190
)
Array ( [0] => 1101 )
Array ( [0] => 1101 )
Array ( [0] => 1101 )
Code snippet of the location (Line ~231):
PHP Code:
static function XMLDataToArray($contents, $get_attributes = 1, $priority = 'tag') {
print_r(func_get_args()); // debugging
echo('<br><br>'); // debugging
if (!function_exists('xml_parser_create')) {
return array();
}
$parser = xml_parser_create('');
xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, "UTF-8");
xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);
xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1);
xml_parse_into_struct($parser, trim($contents), $xml_values);
xml_parser_free($parser);