Hello to all,
We are currently using version 2.00+ Build 130611 and we have a problem with the token generation. At first we imported 55.000 rows using 5 different .csv files but we ended up having a lot of duplicate tokens. We decided to delete the tokens by hand and then use the Generate Tokens functionality from the administrative interface, but only 32768 tokens were created and the rest were left NULL.
During all the above, we were using 15 characters length for the token size. We tried 16 (2048 tokens created), 17 (8192 tokens created), 7 (32768 tokens created) and a few others, but our top-limit has always been 32768 tokens. We also tested this on both 32bit and 64bit with the same behaviour. We also changed the php maximum_memory (in php.ini) from 128MB to 256MB, with no result.
Up until 1.92+ this was a known bug but it was fixed with a patch on that version. We also verified the patch is also implemented in the code of our version, as it should.
So, how can I create more that 32768 tokens from the administrative interface?
Is there a variable somewhere that enforces this limit? Can we override/change it?
Can I create them by hand using something like:
UPDATE lime_tokens_12345 SET token=UPPER(MD5(CONCAT(tid,firstname,lastname,email)));
or would it somehow influence tha funcionality of the survey (p.x. saving answers, printing them, and so on)?
Thank you in advance
We are currently using version 2.00+ Build 130611 and we have a problem with the token generation. At first we imported 55.000 rows using 5 different .csv files but we ended up having a lot of duplicate tokens. We decided to delete the tokens by hand and then use the Generate Tokens functionality from the administrative interface, but only 32768 tokens were created and the rest were left NULL.
During all the above, we were using 15 characters length for the token size. We tried 16 (2048 tokens created), 17 (8192 tokens created), 7 (32768 tokens created) and a few others, but our top-limit has always been 32768 tokens. We also tested this on both 32bit and 64bit with the same behaviour. We also changed the php maximum_memory (in php.ini) from 128MB to 256MB, with no result.
Up until 1.92+ this was a known bug but it was fixed with a patch on that version. We also verified the patch is also implemented in the code of our version, as it should.
So, how can I create more that 32768 tokens from the administrative interface?
Is there a variable somewhere that enforces this limit? Can we override/change it?
Can I create them by hand using something like:
UPDATE lime_tokens_12345 SET token=UPPER(MD5(CONCAT(tid,firstname,lastname,email)));
or would it somehow influence tha funcionality of the survey (p.x. saving answers, printing them, and so on)?
Thank you in advance