Is there a way to execute UNXI commands like updating my etc/mail databases with virtmaps, etc. through a PHP script?
Hi,
yes you can in a variety of ways. you can use the ol' unix backticks ls -l or the php functions system(), exec(). With the backticks you do it like this:
ls -l
$somevar = ls -l;
Elfyn