We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi everyone
I recently bought a PFace202 Device. My old device - MultiBio700 - it was working with "php_zklib" But i had a problem with my new device
My problem is solved when I edited current code to this:
Best Regards
$zk = new ZKLib("192.168.10.201", 4370); $ret = $zk->connect(); sleep(1); //if ( $ret ): //REMOVE IT!!! $zk->disableDevice(); . . . //endif //REMOVE IT!!!
The text was updated successfully, but these errors were encountered:
AND in zkattendance.php replce
$id = intval( str_replace("\0", '', hex2bin( substr($u[1], 6, 8) ) ) ); with $id = intval( preg_replace("/[^A-Za-z0-9 ]/", '', hex2bin( substr($u[1], 6, 8) ) ) );
$id = intval( str_replace("\0", '', hex2bin( substr($u[1], 6, 8) ) ) );
$id = intval( preg_replace("/[^A-Za-z0-9 ]/", '', hex2bin( substr($u[1], 6, 8) ) ) );
Sorry, something went wrong.
No branches or pull requests
Hi everyone
I recently bought a PFace202 Device.
My old device - MultiBio700 - it was working with "php_zklib"
But i had a problem with my new device
My problem is solved when I edited current code to this:
Best Regards
The text was updated successfully, but these errors were encountered: