PDA

View Full Version : Site Import 3 - Failed to produce web pages


telstarinc412713
08-11-2010, 11:05 AM
telstarinc@telstarinc.net - Jose Maria Telleria - Cell 208-850-9995
Good Day - We installed the Site Import 3 product as directed. We launched Dreamweaver,
click on “File”,
click on “site Import”,
click on Site Import-GO,
entered Main web site (URL): http://www.telstarinc.net;
entered Local folder path: C:\SiteImport3,
Generate Report?: Checked,
Open generated report?: checked,
click “NEXT”,
Links to follow: entire site,
Maximum pages: 100,
Follow dynamic links: checked;
Ignore URL parameters: Login Logout
Clicked on Next
Clicked on Next for Pages, Media, Templates
Clicked on Next of Category and Enabled: Checked
Clicked Finished
Received message “Site import complete.”
Clicked “OK”
Loaded file “WAImportLog.txt” (See below)
If I have done the wrong process, what is the process?
----------------------------------------------------------------------------------------
Importing URL: http://www.telstarinc.net
--- pg: 1 -------------------------
Starting Page Import: http://www.telstarinc.net Root
--- pg: 2 -------------------------
Starting Page Import: http://www.telstarinc.net/App_Themes/Public/Default.css linked from C:\SiteImport3\index.htm
Error downloading file... error: 404 file: http://www.telstarinc.net/Images/CategoryBackground.gif
--- pg: 2 -------------------------
Starting Page Import: http://www.telstarinc.net/js/iepngfix_tilebg.js linked from C:\SiteImport3\index.htm
--- pg: 2 -------------------------
Starting Page Import: http://www.telstarinc.net/tree2/style/Slide/obout_treeview2.css linked from C:\SiteImport3\index.htm
Error downloading file... error: 404 file: http://www.telstarinc.net/images/sky.gif
--- pg: 2 -------------------------
Starting Page Import: http://www.telstarinc.net/tree2/script/ob_tree_2039.js linked from C:\SiteImport3\index.htm
Error downloading file... error: 404 file: http://www.telstarinc.net/tree2/script/minus_l.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/tree2/script/hr_l.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/tree2/script/minus.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/tree2/script/usik.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/tree2/script/ik_l.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/tree2/script/ik_r.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/tree2/script/inus.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/tree2/script/us_l.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/tree2/script/us_r.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/plusik.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/plusik_l.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/plusik_r.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/minus.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/minus_l.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/minus_r.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/tree2/script/_l.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/vertical.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/tree2/script/plusik_l.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/hr.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/hr_l.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/tree2/script/Folder.gif
Error downloading file... error: 404 file: http://www.telstarinc.net/tree2/script/Folder_o.gif
--- pg: 2 -------------------------
Starting Page Import: http://www.telstarinc.net/tree2/script/ob_events_2039.js linked from C:\SiteImport3\index.htm
--- pg: 2 -------------------------
Starting Page Import: http://www.telstarinc.net/tree2/icons/ linked from C:\SiteImport3\index.htm
Error during download... error: 403 retrying page: http://www.telstarinc.net/tree2/icons/
--- pg: 2 -------------------------
Starting Page Import: http://www.telstarinc.net/tree2/icons/ linked from C:\SiteImport3\index.htm
Error during download... error: 403 retrying page: http://www.telstarinc.net/tree2/icons/
--- pg: 2 -------------------------
Starting Page Import: http://www.telstarinc.net/tree2/icons/ linked from C:\SiteImport3\index.htm
Error during download... error: 403 retrying page: http://www.telstarinc.net/tree2/icons/
--- pg: 2 -------------------------
Starting Page Import: http://www.telstarinc.net/tree2/icons/ linked from C:\SiteImport3\index.htm
Error during download... error: 403 retrying page: http://www.telstarinc.net/tree2/icons/
--- pg: 2 -------------------------
Starting Page Import: http://www.telstarinc.net/tree2/icons/ linked from C:\SiteImport3\index.htm
Error during download... error: 403 page: http://www.telstarinc.net/tree2/icons/

End of file

Jason Byrnes
08-11-2010, 01:21 PM
the errors reported in the error log are a result of errors in coding the page.

For example, the css file at:
http://www.telstarinc.net/App_Themes/Public/Default.css


is pointing to image files that do not exist:

.CatalogItemDelimiter
{
height: 10px;
background: url('../../Images/CategoryBackground.gif');
background-repeat: repeat-x;
background-position: bottom;
}



points to the following location which gives a 404 page not found error:
http://www.telstarinc.net/Images/CategoryBackground.gif


there are a few other images in the css giving 404 errors as well.


this script file:
http://www.telstarinc.net/tree2/script/ob_tree_2039.js

has incorrect references to images files too.



also in the index page, there is the following image tag:
<img alt="" src="/tree2/icons/" />

trying to resolve to:
http://www.telstarinc.net/tree2/icons/

this is giving the 403 error.