drastic
Well-known member
Recently moved to a new VPS and my callback doesn't seem to work anymore.
Here's how it's setup:
I have this in my /library/TE3/tracking/index.php file
The code has to be above the </head tag on every page, so I have the code below in the PAGE_CONTAINER tempate above </head
It used to work perfectly, but hasn't worked since moving to new VPS. Any changes I could make?
Thanks.
Here's how it's setup:
I have this in my /library/TE3/tracking/index.php file
Code:
<?php
class TE3_tracking_index
{
public static function getHtml()
{
include("/home/mypath/public_html/mydomain.com/trades/in.php");
}
}
?>
The code has to be above the </head tag on every page, so I have the code below in the PAGE_CONTAINER tempate above </head
Code:
<xen:callback class="TE3_tracking_index" method="getHtml"></xen:callback>
It used to work perfectly, but hasn't worked since moving to new VPS. Any changes I could make?
Thanks.