Moderators: enjay, williamconley, Staydog, mflorell, MJCoate, mcargile, Kumba
mflorell wrote:Go to the "Reports" web page, then in the SERVERS table at the bottom of the page click on the plus sign "+" next to "SERVERS", and post the times that show up for each line in that table.
Kumba wrote:Also there might be some lingering PHP7 issues with ViciDial. We've already gone through and fixed some things. What SVN code base are you running against?
kashinc wrote:I changed the time zone in both php.ini's on my webserver and rebooted it.. seems like it fixed it
kashinc wrote:seems that whitelist/blacklist dynaportal also is throwing an error. it lets me add the IP into the portal but does not whitelist anything.
[Tue Aug 27 20:13:46.212555 2019] [php7:error] [pid 16232] [client 174.72.XXX.XXX:57430] PHP Fatal error: Uncaught Error: Call to a member function bind_param() on bool in /srv/www/vhosts/dynportal/inc/functions.inc.php:65\nStack trace:\n#0 /srv/www/vhosts/dynportal/valid8.php(125): getphonelogin('z1025')\n#1 {main}\n thrown in /srv/www/vhosts/dynportal/inc/functions.inc.php on line 65, referer: https://server.com:446/valid8.php
function getphonelogin($user) {
global $dbVICI;
$phonelogin='';
$phonepass='';
$sql_ending='limit 1;'; # Default non-case sensitive sql ending
if ($PORTAL_casesensitive>=2) { $sql_ending='limit 1 COLLATE utf8_bin';}
$phonestmt = $dbVICI->prepare("select phone_login, phone_pass, $PORTAL_adminfield from vicidial_users where user=? $sql_ending;");
$phonestmt->bind_param('s', $user);
$phonestmt->execute();
$phonestmt->bind_result($phonelogin, $phonepass, $adminfield);
$phonestmt->fetch();
$phonestmt->close();
return array($phonelogin, $phonepass, $adminfield);
}
Return to ViciBox Server Install and Demo
Users browsing this forum: No registered users and 18 guests