I want to mirror the following web site completely: http://tinaztitiz.com
I use the following wget command:
wget -m http://tinaztitiz.com
The web site is a custom CMS and contains lots of pages having the following form of urls:
http://tinaztitiz.com/yazi.php?id=943
http://tinaztitiz.com/yazi.php?id=762
Oddly, wget gets a few of these pages but not all of them. I wonder what might be the reason for this?
Note: There is no constraining due to robots.txt.
Update:
Looking at the source code of the web site, I noticed that the pages that are not detected and crawled by wget have a common property. Their anchor urls are written by the following javascript function:
function yazilar()
{
var ab = '</a><br class=\"hide\" />';
var aa = '<a class=' + '\"nav sub\" href=\"kategori.php?id=';
var ac = '';
var arr = new Array();
arr[0] = '12\">'+ac+' Belâgat';
arr[1] = '15\">'+ac+' Bilim ve Teknoloji';
//...
maxi = 14;
for(i=0;i<maxi;i++) {
a = aa + arr[i] + ab;
document.writeln(a);
}
}
So, it looks like wget cannot detect anchor tags that are generated dynamically.