I want to save a HTML file from a Web site. I've 2 questions about it
1. I use LWP::Simple as below
$url = "$file = "/path/test.html";
$response = getstore($url, $file);
I have already changed mode of path to 777 (this path is outside my web directory) but test.html isn't saved back at all. I don't know what's wrong or anything about the permission problem??
2. if that web page is a frame (2 parts inside), which file will be saved back. HTML of the frame or all HTML files ??
Thanks
1. I use LWP::Simple as below
$url = "$file = "/path/test.html";
$response = getstore($url, $file);
I have already changed mode of path to 777 (this path is outside my web directory) but test.html isn't saved back at all. I don't know what's wrong or anything about the permission problem??
2. if that web page is a frame (2 parts inside), which file will be saved back. HTML of the frame or all HTML files ??
Thanks