So I've uploaded all the new files (missed that some were unwritable on the server), and now it just prints about 10000 copies of my header. Also dumps this at the bottom:
HomeNewsForumFeatureRacingGalleryReviewsSTOREBuy & SellLinks
<!-- function createXMLHttpRequest() { var ua; if(window.XMLHttpRequest) { try { ua = new XMLHttpRequest(); } catch(e) { ua = false; } } else if(window.ActiveXObject) { try { ua = new ActiveXObject("Microsoft.XMLHTTP"); } catch(e) { ua = false; } } return ua; } var req = createXMLHttpRequest(); function sendProductReq(product,cat,orig,limit,sortby,sortdir,sorttime,ppuser) { req.open('get', 'http://www.dropmachine.com/buynsell/showframe.php?action=thumbs&product='+product+'&cat='+cat+'&orig='+orig+'&limit='+limit+'&sortby='+sortby+'&sortdir='+sortdir+'&sorttime='+sorttime+'&ppuser='+ppuser); req.onreadystatechange = handleResponse; req.send(null); } function sendFeatReq(feature,ispal,cat) { req.open('get', 'http://www.dropmachine.com/buynsell/showframe.php?action=feature&feature='+feature+'&ispal='+ispal+'&cat='+cat); req.onreadystatechange = handleResponse; req.send(null); } function sendCalReq(month,year) { req.open('get', 'http://www.dropmachine.com/buynsell/showframe.php?action=cal&month='+month+'&year='+year); req.onreadystatechange = handleResponse; req.send(null); } function sendInfoReq(what,product) { req.open('get', 'http://www.dropmachine.com/buynsell/showframe.php?action='+what+'&product='+product); req.onreadystatechange = handleResponse; req.send(null); } function handleResponse() { if(req.readyState == 4){ var response = req.responseText; var update = new Array(); if(response.indexOf('||' != -1)) { update = response.split('||'); document.getElementById(update[0]).innerHTML = update[1]; } }
See for yourself.
http://www.dropmachine.com/buynsell/
Warning. Lots of headers.