Friday, July 30, 2010

getmypid() has been disabled for security reasons

On many free host this function is disabled, how can I workaround on
this issue?
It seems that this is used just to random genereation of uuid. The
funciton is called uuid() and line intersted is the line 89 in CORE/
cake/libs/string.php:

if (function_exists('zend_thread_id')) {
$pid = zend_thread_id();
} else {
$pid = getmypid();
}

Any ideas??? simple mt_rand()?

Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions.

You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en

No comments: