i came across this error:
Call to undefined function posix_getuid()
which was solved by these commands:
yum -y install php-process
service httpd restart
(PHP 4, PHP 5, PHP 7, PHP 8)
posix_getgid — Çalışan sürecin gerçek grup kimliğini döndürür
Bu işlevin bağımsız değişkeni yoktur.
Gerçek grup kimliği bir tamsayı olarak döner.
Örnek 1 - posix_getgid() örneği
Örnekte etkin grup kimliği değişmeden ve değiştikten sonra gerçek grup kimliği gösterilmektedir.
<?php
echo 'Gerçek grup kimliğim: '.posix_getgid(); //20
posix_setegid(40);
echo 'Gerçek grup kimliğim: '.posix_getgid(); //20
echo 'Etkin grup kimliğim: '.posix_getegid(); //40
?>
i came across this error:
Call to undefined function posix_getuid()
which was solved by these commands:
yum -y install php-process
service httpd restart