Search results

  1. D

    enable pcntl or something else!!

    I have this php code: foreach ($jobs as $job) { $pid = pcntl_fork(); if (! $pid) { $descriptorspec = array( 0 => array("pipe", "r"), 1 => array("pipe", "w"), 2 => array("pipe", "w") ); $process = proc_open($job['cmd']...
  2. D

    enable Pcntl and imap on centos 7

    Hi, I want to enable Pcntl functions on centos 7 (64-bit) and latest Directadmin installed on it. I think this is my answser, right? http://help.directadmin.com/item.php?id=252 but I don't know what to add in the last line that explained in that link: and Do I need to enable anything in...
Back
Top