Session simply means a particular interval of time. Session Tracking is a way to maintain state (data) of an user. It is also known as session management in servlet.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #http://stackoverflow.com/questions/6348289/download-a-working-local-copy-of-a-webpage | |
| #http://stackoverflow.com/questions/8755229/how-to-download-all-file-from-website-using-wget | |
| #http://stackoverflow.com/questions/4272770/wget-with-authentication?rq=1 | |
| #add browser headers: | |
| #--header="Accept: text/html" --user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/30.0" | |
| #add .htaccess authentication details: | |
| #--password=password --user=user | |
| wget -m -p -E -k -K -np http://site/path/ | |
| wget -p -k http://ExampleSite.com | |
| # and another via Quora https://www.quora.com/How-do-you-export-a-WordPress-site-to-a-static-HTML |