Open GoogleCodeExporter opened 9 years ago
temporaly fix... find and delete: $nob = rand(1000000000,9999999999);
in Proquiz.class.php
use
$nob = rand(1000000000,2099999999);
instead.
Original comment by mallikar...@rightturn.co.in
on 17 Nov 2012 at 7:36
The number 2147483647 is the maximum value for a 32-bit signed integer in
computing. Because 'instid' is of type INT, the above number is the maximum
value you can have. Use BIGINT to go past this limitation (or use the temp fix)
Original comment by brasco...@gmail.com
on 27 Feb 2014 at 9:17
Oh, forgot to mention: in 'install/pq.sql', change
`instid` int(10) DEFAULT NULL,
into
`instid` bigint(10) DEFAULT NULL,
before installing Proquiz2
Original comment by brasco...@gmail.com
on 27 Feb 2014 at 9:24
Original issue reported on code.google.com by
chris.j....@gmail.com
on 3 Nov 2012 at 3:57