Hello friends
I tried metagoofil on some domain and i always got similar messages
1. error downloading files.
2. tuples out of range
Any help
Thanks
Hello friends
I tried metagoofil on some domain and i always got similar messages
1. error downloading files.
2. tuples out of range
Any help
Thanks
I managed to fix this by passing in the -n option (for ex "-n 1000")
I also noticed it pulls links from google with some extra params that need to be stripped out. It seems google changed how they link to files like PDFs and DOC.
For example, it has
/url?q=http://YOURDOMAIN.com/document.pdf&sa=U&ei=7asadsddsapUK_uDo3Qqw G19YGgAQ&ved=309BgQFjAC&usg=AFQjCNH2OiklnA vR8Zp11ESHs0KzMsd9Mg
So in downloader.py I modified the "downloader.py" file, line 4 from:
toCode:self.url=url
Code:self.url=url.replace("/url?q=", "", 1).split("&")[0]
Thank u so much man .
Now downloading is working but only one error still there i.e " Error in metadata Creator "
Anyway thanks again
This worked -- thanks!
Last edited by overfl0w; 01-09-2013 at 09:31 AM. Reason: fixed