Hey all,
Please look at this as it won't execute right. If I have it write to a file, the command looks fine, and if I have it output the full command, it's right. If I run the command with the command it structures for me, it works.
function get($url) { //internal function, do not use
$this->out = ("/usr/bin/wget --quiet --delete-after 'http://" . $this->username . ":" . $this->password . "@" . $this->host . ":2082/frontend/" . $this->skin . "/" . $url . "'");
shell_exec($this->out);
echo $this->out;
$this->incstat();
}