Quote:
Originally Posted by imported_silkroad
Thanks.
It works for us, not sure why it does not work for you.
Anyway, if you get it to work for you, please post back your working wget code. Thanks for posting.
Cheers.
|
I will, surely would be easier that way.
******************
Typo in language= vbseo sitemap mod:
Quote:
//additional code
$alanguages = array ('af','sq','ar','be','bg','ca','zh-CN','hr','cs','da','nl','en','et','tl','fi','fr',' gl','de','el','iw','hi','hu','is','id','ga','it',' ja','ko','lv','lt','mk','ms','mt','no','fa','pl',' pt','ro','ru','sr','sk','sl','es','sw','sv','zh-TW','th','tr','uk','vi','cy','yi');
if(!$archived)
foreach($alanguages as $language) {
$vbseo_stat['t']++;
vbseo_add_url(vbseo_url_thread($threadrow, $p, $archived).'?language='.$language, $prior, $threadrow['lastpost'], $freq);
}
//end additional code
|
should be & instead of ? like this:
Quote:
$archived).'&language='.$language
|
|