Announcement

Collapse
No announcement yet.

Errors on exporting a snapshot

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Errors on exporting a snapshot

    Hello Everyone!

    I have the following errors when exporting my snapshot:

    Warning: The HTML templates specify source files (with "SRC=" commands) that reside in directories other than the acatalog directory on the web site. Actinic can not handle these files and they are being omitted from the list of files to upload.

    No source files in the templates should have a path. Store them in the site specific directory locally, and they will be uploaded to the Actinic web directory.


    This is the first error that comes up. I have checked and double checked my template file which I created in Dreamweaver and also my attached css file and there are no src commands in either. The background images of my css file are also encased in ' ' . I done a search on this site for this error and didn't come up with anything that helped me out, apart from a reference to including a base href which is already in the actinic generated code.
    Code:
    <actinic:variable name="BaseHref" />
    The following 2 errors occur after the export has completed:

    Errors
    (File ExportFiles.cpp, Line 456) - The file C:\Program Files\Actinic v8\Sites\Site1\paycash1.htm was not found System error 2 - The system cannot find the file specified.


    - Don't have a clue about this one!

    (File ExportFiles.cpp, Line 456) - The file C:\Program Files\Actinic v8\Sites\Site1\theme.css was not found System error 2 - The system cannot find the file specified.

    - I was thinking about just creating an empty theme.css file to keep actinic happy about this, not too sure if this is the right approach though!!!

    Any help will be very much appreciated!

    Cammy.

    #2
    The first warning is because Actinic cannot include files in a snapshot that are:

    a) referenced on the website. i.e. such as static links on a page to a file (html or image files are typical examples).

    b) images (for example) that are stored on the PC but aren't within the site1 (or whatever it's named) folder. AFAIK this is because there is no guarantee that the directory will exist when the file is imported.

    The second warning is known about and a search of the forum would have brought up this thread with a fix: http://community.actinic.com/showthread.php?t=24257

    The third one I haven't looked for but these are rarely first time occurences.

    Mike
    -----------------------------------------

    First Tackle - Fly Fishing and Game Angling

    -----------------------------------------

    Comment


      #3
      Thanks very much for your reply! Have now fixed the second issue by using the fix on the link you posted, and the third on just by copying the theme.css file to my site1 folder.

      Still stuck on the first issue. Here is the code from my the template which I made in dreamweaver and stored in the actinic folder. I can see nothing in it that could be causing this problem, but perhaps I am missing something?

      Code:
      <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
      <html>
      <head>
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
      <title>My Site</title>
      
      
      <actinic:variable name="BaseHref" />
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
      <meta http-equiv="MSThemeCompatible" content="yes" />
      <actinic:block if="%28%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Section%22%29%20AND%20%28%3cactinic%3avariable%20name%3d%22GlbMetaKeywords%22%20%2f%3e%20%21%3d%20%22%22%29" >
      <meta name="keywords" content="<actinic:variable name="GlbMetaKeywords" />
      " />
      </actinic:block>
      <actinic:block if="%28%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Section%22%29%20AND%20%28%3cactinic%3avariable%20name%3d%22GlbMetaDescription%22%20%2f%3e%20%21%3d%20%22%22%29" >
      <meta name="description" content="<actinic:variable name="GlbMetaDescription" />
      " />
      </actinic:block>
      <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Section%22" >
      <actinic:block if="%3cactinic%3avariable%20name%3d%22MetaKeywords%22%20%2f%3e%20%21%3d%20%22%22">
      <meta name="keywords" content="<actinic:variable name="MetaKeywords" />
      " />
      </actinic:block>
      </actinic:block>
      <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Section%22" >
      <actinic:block if="%3cactinic%3avariable%20name%3d%22MetaDescription%22%20%2f%3e%20%21%3d%20%22%22">
      <meta name="description" content="<actinic:variable name="MetaDescription" />
      " />
      </actinic:block>
      </actinic:block>
      <actinic:block if="%3cactinic%3avariable%20name%3d%22IsP3PPolicyUsed%22%20%2f%3e">
      <link rel="P3Pv1" href="<actinic:variable name="P3PFullPolicyLink" />
      ">
      </actinic:block>
      <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Contact%20Us%22" >
        <actinic:variable value="Script for Blocking Unregistered Customers" name="UnregCustomerMessage" if="%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e%20%3d%3d%20FALSE" />
      </actinic:block>
      <link href="actinic.css" rel="stylesheet" type="text/css" />
      <script language="javascript" type="text/javascript" src="actiniccore.js"></script>
      <script language="javascript" type="text/javascript" src="actinicextras.js"></script>
      <!-- Placeholder of cookie checking javascript code. Do not remove it! -->
      <Actinic:COOKIECHECK />
      <script language="javascript" type="text/javascript">
      <!-- 
        saveReferrer();
      // -->
      </script>
      <link href="customStyles.css" rel="stylesheet" type="text/css">
      </head>
      
      <body><center><div id="container">
      <table width="800" align="center" cellpadding="0" cellspacing="0" id="topMenu">
        <tr>
          <td align="center"><actinic:variable name="BrochureNavBar" />&nbsp;
         <a href="<actinic:variable name="SendMailPageURL" />">Contact</a>&nbsp;|&nbsp;
         
      <a href="<actinic:variable name="SiteMapLinkText" />">Site Map</a>
      </td>
        </tr>
      </table>
      <table width="800" cellpadding="0" cellspacing="0" id="header">
        <tr>
          <td>
            <Actinic:Variable Name="CompanyLogoImage"/></td>
        </tr>
      </table>
      <table width="800" cellpadding="0" cellspacing="0" id="horizontalNav">
        <tr>
          <td id="searchTD">
          <Actinic:Variable Name="QuickSearchBar"/></td>
          <td>
            <table align="right" cellpadding="0" cellspacing="0" id="navigationBar">
              <tr>
                <td><Actinic:Variable Name="NavigationBar"/></td>
                <td class="summary">
                  <Actinic:Variable Name="ShoppingCartSummary"/></td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
      <table width="800" cellpadding="0" cellspacing="0" id="mainBody">
        <tr>
          <td valign="top" id="leftMenu">
      	<p><span class="style1">Browse</span> Store:</p>
          <ul>
          <li><a href="<actinic:variable name="BrochureCatLinkURL" />">Main Store</a></li>
          <Actinic:Variable Name="TopLevelSectionList"/></ul>
      	<div class="leftBox"> Click below if you are in a non-European country and wish to buy in US dollars:<br>
      	  <br>
      	  
      	</div>
      	<p><span class="style1">Best</span> Sellers:</p>
      	<ul>
      	<actinic:variable name="BestSellerListSidebar" /></ul>
      	
      	<div class="leftBox">We accept all major credit cards:<br>
      	  <br>
      	    </div>
      	</td>
          <td valign="top" id="innerLayout">
            <Actinic:Variable Name="INNERLAYOUT"/></td>
        </tr>
        
      </table>
      <table width="800" cellpadding="0" cellspacing="0" id="footer">
        <tr>
          <td><div align="left">Site by Cammy</div></td>
        </tr>
      </table></div></center>
      </body>
      </html>
      Are there other templates in Actinic that I should check for errors?

      Many thanks for your help.

      Cammmy.

      Comment


        #4
        the link to an external src could be anywhere, ie within a product description, section, fragment....

        Comment


          #5
          Hello Thanks for your reply!

          I have now upgraded to v8.51. I think the problem is still there but the warning mesage that comes up is different. It basically says that it can include links to outside websites, rather than src links. This explains the issue as there are no external src links within the whole site as far as I can see.

          Thanks!

          Comment

          Working...
          X