admin
|
Re:modules not showing up - 2008/12/04 18:03
The component uses fsockopen() to fetch the content from the Mobilemoney servers. Some (free?) hosting providers block the use of this function. There are some untested features in the function retrieving the remote content. Try editing the file
../components/com_mobileentertainment/MobileMoneyFunctions.php
In the top of the file, uncomment the line $getURLtype = "file_get_contents"; and comment out $getURLtype = "fsocketopen";
The file should look similar to this:
$getURLtype = "file_get_contents"; //$getURLtype = "cURL"; //$getURLtype = "fsocketopen";
|