PDA

View Full Version : import.php tips


blank
10-26-2006, 04:51 PM
Only download the last 50 instead of everything!
open up admincp/import.php and find:

$url = 'http://www.fastfreemedia.com/export_full.php';



Simply change it to

$url = 'http://www.fastfreemedia.com/export.php';



That is the export that only has the last 50 ;) export_full.php pulls everything in a random order. As our DB grows export_full.php will take longer to build on our end, download and process on your end so only using export_full.php the first time and about once a week or so to make sure you didn't miss anything is suggested.

blank
10-26-2006, 04:52 PM
This post reservered for filter help

We have some lines commented inside of import.php if you want to either ONLY import certain categories or only block certain categories.

Scroll down to just below this line:
foreach($xmlParser->document->game as $game)

Commented out lines are the ones that have // some are code and some are actual comments that tell you what the line below it does.

blank
10-26-2006, 04:52 PM
This one reserved for somehting else ;)