Well, looking at this error , this seems to be the problem.
, :
srand(Configure::read('Security.cipherSeed'));
, ? rand() . , . , , PHP rand(), php_rand:
PHPAPI long php_rand(TSRMLS_D)
{
long ret;
if (!BG(rand_is_seeded)) {
php_srand(GENERATE_SEED() TSRMLS_CC);
}
, , ( suhosin, reseed , , ).
#ifdef ZTS
ret = php_rand_r(&BG(rand_seed));
#else
# if defined(HAVE_RANDOM)
ret = random();
# elif defined(HAVE_LRAND48)
ret = lrand48();
# else
ret = rand();
# endif
#endif
, , ? 4 (rand(), random(), lrand48() php_rand_r)! .
, MCrypt GPG.
: .