HELP NEEDED: Proxy Script!
Hello all,
I have a proxy site (ProxyMe.cc) that I got from a friend, Ive done everything the readme says but when i try to browse a page with it i get this error:
This is a part of the code
Lines 107-124:
To anyone who helps me with this I would be very apprichiate and if you want would give you a copy of the script.
Thanks, Declan.
Hello all,
I have a proxy site (ProxyMe.cc) that I got from a friend, Ive done everything the readme says but when i try to browse a page with it i get this error:
Code:
Fatal error: Cannot instantiate non-existent class: domdocument in /home/admin/domains/proxyme.cc/public_html/php/classes/proxy.class.php on line 107
This is a part of the code
Lines 107-124:
PHP:
$this->dom = new domDocument;
@$this->dom->loadHTML($this->data);
foreach ($this->dom->getElementsByTagName('body') as $node) {
$this->parseNode($node, $exclude);
$object = $this->dom->createElement('div');
ob_start();
include 'php/includes/urlForm.inc.php';
$content = ob_get_clean();
$object->nodeValue = '{URL_FORM}';
$references = $node->getElementsByTagName('*');
$i = 0;
foreach ($references as $reference) {
if (!$i) {
$node->insertBefore($object, $reference);
}
$i++;
}
}
To anyone who helps me with this I would be very apprichiate and if you want would give you a copy of the script.
Thanks, Declan.









