Failure to upload attachments to server

I recently had to move to a new machine with a much newer version of DW.  I brought along everything from the old machine to define the website.  Now when I attempt to upload attacments from the library (PDF or Word documents or images) the server gives me an error message and I can't upload these documents.  I do not have any issue uploading revised web pages.  I'm not sure if something happened on the server side or if I did something or failed to do something when I set up DW on the new machine.  Can you provide advice or help?

What error message exactly?
To help figure out if it's a DW issue or a server problem, download Filezilla and try uploading one of the files from there (free download, nice FTP program).
If it doesn't work from FZ, it's very likely a server/ftp credentials issue.
I've had it happen several times where my permissions got jumbled when my hosting company upgraded the server. I was able to read, write and delete but not re-write last time. It's an easy fix with a phone call if that's the issue.

Similar Messages

  • MobileMe: failure to upload attachments to emails. Safari works why not Firefox?

    L/Mouse on Slide Clip icon opens up Finder to select file to attach but the file does not upload. No "timer" icon appears on reload of email and no file is attached when email sent. Type and size of file makes no difference.

    JKELLETT, That initially happen to me also. When you go to dolinsky296's suggested website https://www.google.com/earth/explore/products/plugin.html I saw "Download plug-in" box in the middle of the globe. When I click it the download executed but the plug-in never got installed. Then I clicked on "Download Google Earth" in the ''upper right corner'' of the website and life was good. Google Earth now works in Firefox.

  • How to  delete email attachments from server

    Hi,
    I created an a CF template for sending e-mail which includes
    attachments. It has been tested on my dev box and is functioning
    fine as the attachment upload to a designated directory on the
    server. I would like the attachments to be purged once the e-mail
    has been forwarded to the recipent.
    In Macromedia's ColdFuision 7MX web application construction
    book page 913 "Interacting with Email" there is a CFC that will
    delete the file when the user ends their session.
    I am not sure how to write this to fit the code I am using.
    Here is the eMail form
    <!--- Mail_Form.cfm--->
    <html>
    <head>
    <title>Please enter your message</title>
    </head>
    <body>
    <form action="Send_Email.cfm" method="post"
    enctype="multipart/form-data">
    <table width="500" border="0" align="center">
    <tr>
    <td width = "500" colspan="2">Please enter your e-mail
    message:</td>
    </tr>
    <tr>
    <td width="250">To:</td>
    <td width="250"><input type="text" name="to_addr"
    value=""></td>
    </tr>
    <tr>
    <td>Subject:</td>
    <td><input type="text" name="subject"
    value=""></td>
    </tr>
    <tr>
    <td>Message:</td>
    <td><input textarea name="message" rows="5"
    cols="35"></textarea></td>
    </tr>
    <tr>
    <td width="250">Attachment #1:</td>
    <td width="250"><input type="file"
    name="attachment_1" value=""></td>
    </tr>
    <tr>
    <td width="250">Attachment #2:</td>
    <td width="250"><input type="file"
    name="attachment_2" value=""></td>
    </tr>
    <tr>
    <td width="250">Attachment #3:</td>
    <td width="250"><input type="file"
    name="attachment_3" value=""></td>
    </tr>
    <tr>
    <td width="250"> </td>
    <td width="250"><input type="submit"
    name="Send_Email" value="SendEmail"></td>
    </tr>
    </table>
    </form>
    Here is the form to send the attachment.
    <!--- Send_Email.cfm --->
    <!--- First make sure that the user uploaded attachments
    --->
    <cfif FORM.attachment_1 neq "">
    <!--- first actually upload the file --->
    <cffile action="upload"
    destination="D:\uploadsTEST\"
    filefield="attachment_1"
    nameconflict="makeunique">
    <!--- now create a temporary holder for the attachment
    later on --->
    <cfset attachment_local_file_1 =
    "d:\uploadsTEST\#file.serverfile#">
    </cfif>
    <!---Now repeat the process for the second and third
    attachment:--->
    <cfif FORM.attachment_2 neq "">
    <!--- first actually upload the file --->
    <cffile action="upload"
    destination="D:\uploadsTEST\"
    filefield="attachment_2"
    nameconflict="makeunique">
    <!--- now create a temporary holder for the attachment
    later on --->
    <cfset attachment_local_file_2 =
    "d\uploadsTEST\#file.serverfile#">
    </cfif>
    <cfif FORM.attachment_3 neq "">
    <!--- forst actually upload the file --->
    <cffile action="upload"
    destination="D:\uploadsTEST\"
    filefield="attachment_3"
    nameconflict="makeunique">
    <!--- now create a temporary holder for the attachment
    late on --->
    <cfset attachment_local_file_3 =
    "d:\uploadsTEST\#file.serverfile#">
    </cfif>
    <!---OK, you have now uploaded the file the server, now
    let's send
    out the email with the attachments:--->
    <cfmail FROM="[email protected]" to="#form.to_addr#"
    subject="#subject#"
    server="an001so-dby1c.pbi.global.pvt" port="25">
    #message#
    <cfsilent>
    <!--- <cfsilent> tag used to kill the white space
    in this area
    so your email is not cluttered with white space.--->
    <cfif FORM.attachment_1 neq "">
    <cfmailparam file="#attachment_local_file_1#">
    </cfif>
    <cfif FORM.attachment_2 neq "">
    <cfmailparam file="#attachment_local_file_2#">
    </cfif>
    <cfif FORM.attachment_3 neq "">
    <cfmailparam file="#attachment_local_file_3#">
    </cfif>
    </cfsilent>
    </cfmail>
    Here is the session application code to delete the file upon
    uploading
    <!---
    Filename: Application.cfc
    Executes for every page request
    --->
    <cfcomponent output="false">
    <!--- Name the application. --->
    <cfset this.name="attachmentPurge">
    <!--- Turn on session management. --->
    <cfset this.sessionManagement=true>
    <cfset this.clientMangment=true>
    <cffunction name="onSessionEnd" output="false"
    returnType="void">
    <!--- Look for attachments to delete --->
    <cfset var attachDir = expandPath("Attach")>
    <cfset var getFiles = "">
    <cfset var thisFile = "">
    <!--- Get a list of all files in the directory --->
    <cfdirectory directory="#attachDir#" name="getFiles">
    <!--- For each file in the directory --->
    <cfloop query="getFiles">
    <!--- If it's a file (rather than a directory) --->
    <cfif getFiles.type neq "Dir">
    <!--- Get full filename of this file --->
    <cfset thisFile =
    expandPath("Attach\#getFiles.Name#")>
    </cfif>
    </cfloop>
    </cffunction>
    </cfcomponent>
    The tutorial only explains how to delete the attachment when
    the recipient checks there mail
    in the POP server.
    Assuming that the sender is in a session would the code be
    written to delete the attached file from the directory on
    the server one the e-mail is sent.
    Can someone explain how to automatically delete email
    attachments from a designated directory or provide me with the code
    that would handle this after an email is sent with attachment.
    Thanks,
    Tony

    I don't know why your dos code didn't run. It could be
    addressing. My limited experience with cfdirectory/cffile/cfexecute
    is to type out the complete path at least once.
    Good books?
    Hard to say, depends on what else you are new at. If you are
    new to html, then htmlgoodies.com has good tutorials. So does
    webmonkey.com. If you have trouble with sql, I have heard good
    things about the SAMS book, Teach Yourself SQL in 10 Minutes by Ben
    Forta. I learned javascript by buying the book Teach Yourself
    Javascript in 24 Hours. The O'Reilly books are also good. I learned
    awk with one of those books.
    Glad you liked the fish pics. The camera is specified on most
    of the pages. If it says Reefmaster, I used an external strobe. If
    it says Sony I either used the camera flash only or natural light.
    By the way, that is not a Cold Fusion site. It's strictly html and
    javascript.

  • Upload Attachments

    Hi Gurus,
    I have a requirement where client is migrating from People Soft to CRM 7.0. There is a data conversion happening and we need to migrate attachments for Cases.
    There is a Content Server which is installed at CRM end which will handle new attachments which can be uploaded from the local workstation.
    I want to upload the attachments for the previous data which is migrated into CRM from PeopleSoft during Data Conversion process. Is there any FM or class method which I can use to do that?
    Thanks in advance
    Vishal

    Hi Preethi,
    You can use Class CL_CRM_DOCUMENTS for uploading attachments to business objects in CRM.
    If you are uploading file from Presentation server, call method CREATE_WITH_FILE and if you are uplading attachment from Application Server, use method CREATE_WITH_TABLE.
    The following code is an example of how to upload attachment from Presentation Server.
    CONSTANTS: c_activity TYPE crmt_subobject_category_db VALUE 'BUS2000123'.
    DATA: ls_bor_object  TYPE sibflporb.
    DATA: ls_object_id TYPE swotobjid.
    DATA: es_error TYPE  skwf_error .
    DATA: lt_properties TYPE sdokproptys.
    DATA: ls_properties TYPE sdokpropty.
    DATA: path TYPE string.
    DATA: targetpath TYPE string.
    DATA: path1 TYPE sdok_chtrd.
    DATA: wa_file_table TYPE file_info.
    DATA: it_files TYPE STANDARD TABLE OF file_info.
    DATA: x TYPE i.
    DATA: l_object_id TYPE crmt_object_id_db.
    DATA: l_object_id1 TYPE crmt_object_id_db.
    DATA: ext TYPE string.
    DATA: l_object_guid TYPE crmt_object_guid.
    DATA: lv_filename TYPE sdok_filnm.
    DATA: ls_phio TYPE skwf_io.
    DATA: rc TYPE i.
    data: l_filename TYPE string,
    *data: lv_filename(40).
            l_filesize TYPE i,
            l_filecontents TYPE TABLE OF sdokcntbin.
    CALL METHOD cl_gui_frontend_services=>directory_list_files
      EXPORTING
        directory                   = path
        filter                      = '*'
        files_only                  = 'X'
       directories_only            =
      CHANGING
        file_table                  = it_files
        count                       = x
      EXCEPTIONS
        cntl_error                  = 1
        directory_list_files_failed = 2
        wrong_parameter             = 3
        error_no_gui                = 4
        not_supported_by_gui        = 5
        OTHERS                      = 6
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    l_object_guid = 'DF2F786D3130ECF1A605002655269F60'.
    CHECK x IS NOT INITIAL.
    LOOP AT it_files INTO wa_file_table.
      lv_filename = wa_file_table-filename .
      CONCATENATE path lv_filename INTO path1.
      IF sy-subrc = 0.
        ls_object_id-objtype = c_activity.
        ls_object_id-objkey  = l_object_guid.
        CLASS cl_swf_utl_convert_por DEFINITION LOAD.
        ls_bor_object =
               cl_swf_utl_convert_por=>convert_bor_to_ibf( lv_filename ).
        ls_properties-name = 'KW_RELATIVE_URL'.
        ls_properties-value = lv_filename.
        APPEND ls_properties TO lt_properties.
        ls_properties-name = 'DESCRIPTION'.
        ls_properties-value = lv_filename.
        APPEND ls_properties TO lt_properties.
        CALL METHOD cl_crm_documents=>create_with_file
          EXPORTING
            file_name       = lv_filename
            directory       = path1
            properties      = lt_properties
            business_object = ls_bor_object
          IMPORTING
            phio            = ls_phio
            error           = es_error.
      ENDIF.
      CLEAR: wa_file_table,l_object_id,l_object_guid,l_object_id .
    endloop.
    I hope this helps.
    Thanks
    Vishal

  • Question on the upload attachments process in a request form

    hi,
    I have a question on the upload attachments process in a request form. I have 2 pages, one is a request form and the other is an attahment page
    The request form let users fill the mandatory fields (e.g. name, email, address...) And in the form, there is a link (URL without submit) to the attachment page.
    In the attachment page, users can upload the supporting file for their rquest. The file will be uploaded to APEX_APPLICATION_FILES view and then it will be copied it to a customized table (table A) and remove from the view.
    When the users finish uploading files (i.e. the files are stored in table A), users need to press a "Done" button back to the request form to submit the form.
    My question is:
    As the request form is not yet submitted while the attached files are stored in table A, there is no request_id (request from table primary key generated in an Insert trigger after submission) is generated to tag with the files in table A. Is there any standard practice to do this?
    What I am doing now is to generate a hidden value in sequence when user goes to the attachment page. The hidden value is stored in table A togehter with the files when uploading. When user goes back to the request form, the hidden value is passed back as session cache. When the request form is submitted, I make an update statement by using the hidden vaule in the Insert trigger to tag the request_id to the attached files in table A.
    Is my way appropriate?
    Thanks for advice.
    cheers,
    Pong

    Pong,
    Yes, this would work just fine. You may want to consider enabling session state protection so that your process is not succeptable to URL tampering, which would cause a user to change the value of the REQUEST_ID in the URL and potentially associate other attahments with their request.
    Thanks,
    Scott

  • Can I record sound using a microphone and then upload it to server?

    Hello guys I thank you in advance for reading this. What I want to know is if it is possible to record a sound clip using a microphone and then upload it to the server using a swf applet in a webpage. Im an experienced java/javascript programmer but just starting out with flash/action script. What technologies will I need to do this? Can I do this simply using simply an swf file and an apache/php or jsp page? Again, thanks alot for your help.
    -BeWilled

    You can Microphone class in Flash to record the sound and it will directly upload to FMS server .
    Use the Microphone class to capture audio from a microphone attached to a computer . Use the Microphone class to monitor the audio locally. Use the NetConnection and NetStream classes to transmit the audio to Flash Media Server. Flash Media Server can send the audio to other servers and broadcast it to other clients running Swf files .
    Below link might help you in doing this : http://www.adobe.com/devnet/air/flex/articles/using_mic_api.html

  • LSMW file upload from presentation server

    Hi,
    We are using LSMW to create new Document info records and will need to upload/ attach multiple files to the DIR.
    everything is working except in the IDOC processing stage, it errors out -
    "Error while checking in and storing:
    otlta134a\pcm\test1.txt"
    Its is unable to upload file from network drive, it works successfully when the same file is uploaded from application server.
    I have worked in other LSMW projects and have successfully loaded files from network drive.
    Please let me know what configuration setup is required, is it the content server or the gateway server?
    Thanks for all your help.

    Sheetal,
    I think this is the problem due to the authorization....
    try to open the file from AL11........... if u r still getting the problem better to contact the basis guys...
    If it is the problem with the authorization... once u get this error open another session with SU53 tcode.. take the authorization object and give it to basis guys to allow the permissions to u...

  • File upload on different server. URGENT need help.

    hi,
    I am using struts common file upload to upload file from client. My problem is my application is running on server A but i want to store uploaded stream on server B without storing it on server A(i,e. without using FTP or rsync from server A to server B). Please help how can i achieve this task.
    Anuj

    Write and run a standalone application on "Server A" to accept a socket connection from "Server B" then feed the inputStream that "Server B" uses to upload the file, to the socketOutputStream that it has opened with "Server A" and have Server A save that file.

  • File uploading to Application server

    Hi all-
    I have a requirement to upload the FTP server file to Application server in Ascii mode. Can anyone send me the code? or atleast tell me the procedure of doing this? pls send any code or info to [email protected]
    Thanks
    m a

    Hi
    See the demo programs RSFTP00*
    Max

  • Upload file to server problem

    I am trying to upload a file from my local machine to a
    server that hosts my website.
    I've been able to do this using a html form
    (simpleupload.html) and a php script (uploader.php). The user
    simply chooses a file from their local machine and then clicks
    upload. Upon a successful upload the file simply gets added to a
    folder named 'uploads' on my server.
    I have tried to set up an AIR application (FileUpload.mxml)
    that allows a user to do exactly the same thing. The code uses the
    same php script on the server side and completes successfully.
    However when I check the uploads folder on my server the file that
    should have been uploaded is nowhere to be found.
    Does anyone know why this is?

    Excellent! That's my problem exactly!
    The file name in my AIR app was 'File' but the file field in
    my php script was 'uploadedfile'. After changing the AIR app file
    name to 'uploadedfile' my upload worked and could be found on my
    server.
    Thank you very much for help ilsh you are a legend ;-)
    Adam

  • Problem uploading site to server by FTP - index page is blank

    Hi,
    I made my site in I web which works fine when simulating it in a local folder. When uploading by FTP to the server from a host where a rent my domain the program starts sending the files, but in the end it says publication error, try again later or contact your server provider.
    I did contact the server provider and they do receive the pages that I am sending BUT:
    - everything appears to end up at the wrong place in the server
    - the index page that is sent with the other files appears to be empty, blank which results in the server not be alble to order the site and a white empy page is shown when opening my site on the internet.
    I checked the html files which are all fine and when I send those to the server provider they seem all ok. But the index.html file is also empty on my computer. Is this normal?
    My first page is called 'home' and we had tried to rename that home.html file to index.html and again upload the whole site. The result is that I can now see my homepage when opening the site on the internet but without the index on top (the names of the other pages where you can click to go to another page on the site) and that is it.
    Can someone help me with this? Is this a problem with Apple, shoud the index.html file be blank? Or can they change settings in the server to solve this problem.
    Grtz,
    Kroko

    iWeb was originally designed as a foolprof way to create websites and upload them to MobileMe.
    Normally, the first, or Home, page of a website is named "index" since an index.html is required in the root folder of the server for everything to work as planned.
    To stop us rookies screwing things up, and to overcome the limitations of a single MobileMe user account, the developers packaged the site files in a folder with the same name as the sitename in iWeb.
    The top site in iWeb has an external index file which rediredts to the Home page so that it can be reached by the URL...
    http://www.domain-name.com
    Any other sites are uploaded as sub sites and require the addition of the folder name in the URL...
    http://www.domain-name.com/Site-Name/
    When you are uploading to a server other than MobileMe, you have two choices of publishing methods...
    http://www.iwebformusicians.com/iWeb/Publish-Website.html
    Using the iWeb FTP allows you to upload the files in a foolproof way to avoid breaking the site structure. If you want to remove the site name from the URL you can publish to a local folder and upload the contents only...
    http://www.iwebformusicians.com/iWeb/URLs-Favicons.html
    This latter method is only viable so long as you don't have a blog or podcast feed. 

  • I cannot upload attachments to e-mails. When I click on browse in the attachment pop up nothing happens

    I cannot upload attachments to e-mails. When I click on browse in the attachment pop up nothing happens, I cant even type in a document address in the file location box
    == This happened ==
    Every time Firefox opened
    == I downloaded the latest version of firefox

    Again, where are you seeing the date?
    Select one of the imported photos, type Command + i and check in the iPhoto Info drawer to see what the EXIF capture date is for those photos. 
    If the date is correct then you're looking at the file created or modified date and not the EXIF capture date that's embedded in the image file itself.
    OT

  • Aperture to mobile me gallery.upload to own server?

    OK so, I know I can export to a file on my desktop, but what I like is the coverflow look that you can show in mobile me. I am assuming this is some scripts that are run on the server side.
    I would love to be able to run these sites I make on my own servers. Anyway to do this?
    Message was edited by: richphoto

    That ‘Coverflow’ look is a flash album.
    Just for the sake of clarity: Coverflow has nothing to do with Flash. And the implementation on the MobileMe sites don't use Flash at all but various cutting-edge javascript libraries.
    That being said, the plugin Terence pointed to is indeed a great tool to build quick and stylish galleries that can be uploaded to any server without hassle. I don't think it simulates Coverflow though...

  • Page that is uploaded to the server looks different from the preview in Dreamweaver browser

    Hi, I have a couple of questions.  Does anyone happen to know why my homepage looks different in Dreamweaver when I preview in browser then it does when I upload the page onto the server?  http://www.iewaterkeeper.org/  I see a join our mailing list button is intact when I preview in browser but is no where to be found when I view the uploaded page from the server.  Other weird things have been going on with Dreamweaver today like I wasn't able to absolute position a div tag in it's intended place and all the typography on my homepage looks very blurry in Dreamweaver but looks clearer when it's uploaded to the server.  Does anyone know what's going on?  Any help would be greatly appreciated.  .... Could it be a virus?

    That's so weird because I'm looking at the code in Dreamweaver and line 181 has a closing </body>.   Here's the code straight from Dreamweaver: 
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Inland Empire Waterkeeper</title>
    <link href="_css/styles.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body,td,th {
        color: #999999;
        font-family: Verdana, Geneva, sans-serif;
    body {
        background-color: #FFFFFF;
        color: #D6D6D6;
        background-image: url(_images/background_1255hompage.png);
        background-repeat: repeat-x;
        margin: auto;
        margin-left: 0px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
    </style>
    </head>
    <body>
    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    <div class="container">
      <div class="header"><img src="_images/banner1.jpg" alt="Inland Empire Waterkeeper" width="933" height="300" /></div>
      <div class="menubar">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="index.html" class="MenuBarItemSubmenu">Home</a>
            <ul>
              <li><a href="mission.html" class="MenuBarItemSubmenu">About Us</a>
                <ul>
                  <li><a href="mission.html">Our Mission</a></li>
                  <li><a href="history.html">Our History</a></li>
                  <li><a href="community.html">Our Community</a></li>
                </ul>
              </li>
              <li><a href="staff.html" class="MenuBarItemSubmenu">Our Team</a>
                <ul>
                  <li><a href="staff.html">Staff</a></li>
                  <li><a href="supporters.html">Supporters</a></li>
                  <li><a href="advisoryboard.html">Advisory Board</a></li>
                </ul>
              </li>
              <li><a href="coastkeeper.html">Coastkeeper</a></li>
            </ul>
          </li>
          <li><a href="projects.html" class="MenuBarItemSubmenu">What We Do</a>
            <ul>
              <li><a href="advocacy.html" class="MenuBarItemSubmenu">Programs</a>
                <ul>
                  <li><a href="advocacy.html">Advocacy</a></li>
                  <li><a href="education.html">Education</a></li>
                  <li><a href="research.html">Research</a></li>
                  <li><a href="restoration.html">Restoration</a></li>
                  <li><a href="enforcement.html">Enforcement</a></li>
                </ul>
              </li>
              <li><a href="projects.html">Projects</a></li>
              <li><a href="datareports.html">Data &amp; Reports</a></li>
            </ul>
          </li>
          <li><a href="volunteer.html" class="MenuBarItemSubmenu">Get Involved</a>
            <ul>
              <li><a href="volunteer.html">Volunteer</a></li>
              <li><a href="employment.html">Employment</a></li>
              <li><a href="events.html">Events &amp; Meetings</a></li>
              <li><a href="donate.html">Donate</a></li>
            </ul>
          </li>
          <li><a href="pressreleases.html" class="MenuBarItemSubmenu">News Room</a>
            <ul>
              <li><a href="pressrelease.html">In the News and Press Releases</a></li>
              <li><a href="legislation.html">Legislative Updates</a></li>
              <li><a href="waternews.html">Water in the News</a></li>
            </ul>
          </li>
          <li><a href="reportpollution.html" class="MenuBarItemSubmenu">Resources</a>
            <ul>
              <li><a href="watershed.html" class="MenuBarItemSubmenu">Information</a>
                <ul>
                  <li><a href="watershed.html">Our Watershed</a></li>
                  <li><a href="reportpollution.html">Report Pollution</a></li>
                </ul>
              </li>
              <li><a href="photos.html">Photo Gallery</a></li>
            </ul>
          </li>
          <li><a href="contact.html">Contact Us</a></li>
        </ul>
      </div>
        <div class="missionstatement"><img src="_images/mssionstatement.gif" alt="Inland Empire Waterkeeper" width="933" height="110" /></div>
    <div class="space1"><img src="_images/bar_left.png" alt="Inland Empire Waterkeeper" width="20" height="315" /></div>
    <div class="facebook">
          <div class="facebooktop">
          <img src="_images/facebooktop.gif" width="106" height="125" alt="Inland Empire Waterkeeper" /></div>
        <div class="facebookmailinglist">
        <div class="fb-like" data-href="http://www.iewaterkeeper.org/" data-send="true" data-width="106" data-show-faces="false"></div>
    <!-- BEGIN: Constant Contact Standard Email List Button -->
    <div align="center">
    <table border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td><img src="https://imgssl.constantcontact.com/ui/images/visitor/bevel_tl_gray.gif" width="6" height="6" alt=""></td>
    <td background="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bg_top_gray.gif"> </td>
    <td><img src="https://imgssl.constantcontact.com/ui/images/visitor/bevel_tr_gray.gif" width="6" height="6" alt=""></td>
    </tr>
    <tr>
    <td background="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bg_left_gray.gif"></td>
    <td bgcolor="#cccccc"><a href="http://visitor.r20.constantcontact.com/d.jsp?llr=wejp69bab&p=oi&m=1101488694422" target="_blank" style="text-decoration:none; font-weight: bold;  font-family:Arial; font-size:10px; color:#336666;">Join Our Email List</a></td>
    <td background="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bg_right_gray.gif"></td>
    </tr>
    <tr>
    <td><img src="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bl_gray.gif" width="6" height="6" alt=""></td>
    <td background="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bg_bottom_gray.gif"> </td>
    <td><img src="https://imgssl.constantcontact.com/ui/images/visitor/bevel_br_gray.gif" width="6" height="6" alt=""></td>
    </tr>
    </table>
    </div>
    <!-- END: Constant Contact Standard Email List Button -->
        </div>   
        <div class="space2"><img src="_images/bar_right.png" width="21" height="315" alt="Inland Empire Waterkeeper" /></div>
       <div class="video"><iframe width="560" height="315" src="http://www.youtube.com/embed/3OU8D8kBjWg" frameborder="0" allowfullscreen></iframe></div>
        <div class="space3"></div>
        <div class="photospace1"></div>
        <div class="photo1"><a href="_images/kayaking_6lg.png"><img src="_images/kayaking_6.jpg" alt="Inland Empire Waterkeeper" width="176" height="95" /></a></div>
        <div class="photospace2"></div>
        <div class="photo2"><a href="_images/riverkat_57lg.png"><img src="_images/riverkat_57.jpg" width="176" height="95" alt="Inland Empire Waterkeeper" /></a></div>
        <div class="photospace3"></div>
        <div class="photo3"><a href="_images/riverkat_172lg.png"><img src="_images/riverkat_172.jpg" width="176" height="95" alt="Inland Empire Waterkeeper" /></a></div>
        <div class="photospace4"></div>
        <div class="space4"></div>
      <div class="pillars"><img src="_images/pillars_grey.jpg" alt="Inland Empire Waterkeeper Pillars" width="933" height="400" border="0" usemap="#Map" />
        <map name="Map" id="Map">
          <area shape="rect" coords="77,54,297,198" href="advocacy.html" alt="Inland Empire Waterkeeper Advocacy" />
          <area shape="rect" coords="361,51,584,195" href="education.html" alt="Inland Empire Waterkeeper Education" />
          <area shape="rect" coords="636,54,858,196" href="research.html" alt="Inland Empire Waterkeeper Research" />
          <area shape="rect" coords="212,220,430,352" href="restoration.html" alt="Inland Empire Waterkeeper Restoration" />
          <area shape="rect" coords="502,222,726,364" href="enforcement.html" alt="Inland Empire Waterkeeper Enforcement" />
        </map>
      </div>
      <div class="footer"><img src="_images/footer2.png" width="933" height="100" alt="Inland Empire Waterkeeper" /></div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

  • Folio is uploaded in the server but I cannot see it in my Adobe Viewer

    My folio is uploaded in the server but I cannot see it in my Adobe Viewer in my iPad, any idea guys how to be able to see it in my Viewer?
    Thanks.

    There are some bugs that can cause this issue. If you are adding long, smooth scrolling pages (ie 1024x3000) and performing a "New" to add the page from the Folio Builder Panel versus using the "Import" command, this issue can be caused.
    As the previous posted said, you need to either have all horizontal, all vertical, or all horizontal and all vertical pages. You cannot have a mix of both. If there is a fundamental error with your folio, it iwll not be available in the viewer.

Maybe you are looking for