How do I browse directory contents in Contribute CS3?

Hi everyone!
I have one of our users uploading photos to our website.  At the moment she uses an FTP connection via Adobe Contribute CS3 to our web server.  This has worked great in the past.  However, at the moment she's uploading pictures to a dynamic website [Wordpress] and not using Contribute to edit the pages directly [as this is obviously done with the Wordpress Administration web panel].  The method she has been using is, within Adobe Contribute CS3, File>Publish File from My Computer.  This is great, but the problem is that she can only upload one file at a time, and if she's already uploaded the file, she has no way of knowing she's uploaded it before, except for that Contribute appends a 001 at the end of the file name.
How can she access a folder structure within Contribute CS3, treating it like an FTP client?  I'm sure this must be doable.  Yes, I could install an FTP client, but she's very comfortable using Contribute CS3 and uses this application for other portions of the website which are static.
Thanks in advance for any advice!

Hi,
     To check if she's already uploaded the file, she can click the Choose button in Contribute. On clicking Choose button, Choose File dialog will be shown. In this dialog, she can browse to the appropriate folder in which she had published the images, and verify the contents.
     For uploading multiple files through Publish File from my Computer, I do not think it is possible as of now. There can be a workaround though, insert all the images you want to a web page, and publish the web page to the website. Then, all the images will be published along with the web page. Then, you can delete that web page.
Note: The images in a web page, generally are placed in the 'images' directory of the website by Contribute. If you are placing the images in different folder, then, make sure that you change the publish folder for images to that folder.

Similar Messages

  • How do I browse English content in Itunes when I live in Switzerland?

    I have a Swiss Itunes account, but any iTunes content such as movies are by default in German. My iTunes language is set to English. Is there a simple setting to let iTunes Switzerland know that I want English content? All the best. J

    It's ridiculous. Have the same problem in Germany, I want to spend money but I can't. All movies are dubbed into german, some say they are german and English but I have no idea how to switch between the two! You should be allowed to access whatever you want! I am an English speaking person in a foreign country this is where my bank accounts are, the is no other option except to open an account in an English speaking country! **** you appl.

  • How can I browse the tftp/ftp directory on Cisco PI 2.0?

    Hi All,
    I just installed Cisco PI 2.0 on a virtual appliance and I'd like to browse the tftp/ftp directory. I ssh'ed in but couldn't figure out how. With WCS running on Windows, I can easily browse those folders. Please let me know how I can browse the tftp/ftp directory on Cisco PI 2.0 to check what files are in there.
    Thank you.
    Robert

    Hi Robert,
    To configure tftp\ftp:
     go to Configure > TFTP/FTP Servers > Add TFTP/FTP Server
    To access it :
    The easiest way to configure a remote FTP server would be with the steps
    below:
    1) Access your server via CLI and access the configuration mode:
    ncs/admin# conf t
    Enter configuration commands, one per line. End with CNTL/Z.
    ncs/admin(config)#
    2) Create an FTP repository with the commands below:
    ncs/admin(config)# repository localFTP
    ncs/admin(config-Repository)#
    3) Setup the username, password and server address:
    ncs/admin(config-Repository)# url ftp://1.1.1.1
    ncs/admin(config-Repository)# user ftpAdmin password plain 12345678
    ncs/admin(config-Repository)# exit
    ncs/admin(config)# exit
    4) Save the NCS configuration:
    ncs/admin# wr mem
    The use of a different partition is not officially supported as only
    folders under the /localdisk partition can be read by the application.
    The only supported server types include TFTP, FTP, SFTP, NFS.
    TFTP\ftp contains  PI backups \database backup  , configbackups etc..
    Thanks-
    Afroz
    ***Ratings Encourages Contributors ***

  • How to browse web content in J2ME

    i want to make application, which can browse web content like iexplore in my handset.
    so when i type http://www.google.com
    in my phone will show me google web page and i can browsing like i use iexplore.
    did i need additional API and can u show me the tutorial?

    can i use this opera mini with emulator like carbide, wtk22?
    or i must use the real handset?

  • How to get folder(directory path only not file path) from local file system

    Hi Firends,
    How to get folder(directory path only not file path) from local file system , whenevr i will click on browse button.
    Please give reply for this one , if anybody knows.
    Thanks,
    Anderson.

    Hi Anderson,
    if you're using flash.filesystem.FileReference - then it is run in black box - except of filename, size and creation data (and few other properties available after some operation succeeded). This is part of security features in Flash runtime (described in header section):
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/FileReference .html
    This for example implies that user can download a content to local machine - but that content cannot be loaded back into Flash runtime. For this you would need either Air runtime flash.filesystem.File:
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/filesystem/File.h tml
    (so you would created Air runtime based application: desktop or mobile but not web, even as standalone project) or you would need one of 3rd party tools that add file access/file information features to standard Flash runtime applications converted to standalone native applications.
    hth,
    kind regards,
    Peter

  • How to write the JTables Content into the CSV File.

    Hi Friends
    I managed to write the Database records into the CSV Files. Now i would like to add the JTables contend into the CSV Files.
    I just add the Code which Used to write the Database records into the CSV Files.
    void exportApi()throws Exception
              try
                   PrintWriter writing= new PrintWriter(new FileWriter("Report.csv"));
                   System.out.println("Connected");
                   stexport=conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
                   rsexport=stexport.executeQuery("Select * from IssuedBook ");
                   ResultSetMetaData md = rsexport.getMetaData();
                   int columns = md.getColumnCount();
                   String fieldNames[]={"No","Name","Author","Date","Id","Issued","Return"};
                   //write fields names
                   String rec = "";
                   for (int i=0; i < fieldNames.length; i++)
                        rec +='\"'+fieldNames[i]+'\"';
                        rec+=",";
                   if (rec.endsWith(",")) rec=rec.substring(0, (rec.length()-1));
                   writing.println(rec);
                   //write values from result set to file
                    rsexport.beforeFirst();
                   while(rsexport.next())
                        rec = "";
                         for (int i=1; i < (columns+1); i++)
                             try
                                    rec +="\""+rsexport.getString(i)+"\",";
                                    rec +="\""+rsexport.getInt(i)+"\",";
                             catch(SQLException sqle)
                                  // I would add this System.out.println("Exception in retrieval in for loop:\n"+sqle);
                         if (rec.endsWith(",")) rec=rec.substring(0,(rec.length()-1));
                        writing.println(rec);
                   writing.close();
         }With this Same code how to Write the JTable content into the CSV Files.
    Please tell me how to implement this.
    Thank you for your Service
    Jofin

    Hi Friends
    I just modified my code and tried according to your suggestion. But here it does not print the records inside CSV File. But when i use ResultSet it prints the Records inside the CSV. Now i want to Display only the JTable content.
    I am posting my code here. Please run this code and find the Report.csv file in your current Directory. and please help me to come out of this Problem.
    import javax.swing.*;
    import java.util.*;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.table.*;
    public class Exporting extends JDialog implements ActionListener
         private JRadioButton rby,rbn,rbr,rbnore,rbnorest;
         private ButtonGroup bg;
         private JPanel exportpanel;
         private JButton btnExpots;
         FileReader reading=null;
         FileWriter writing=null;
         JTable table;
         JScrollPane scroll;
         public Exporting()throws Exception
              setSize(550,450);
              setTitle("Export Results");
              this.setLocation(100,100);
              String Heading[]={"BOOK ID","NAME","AUTHOR","PRICE"};
              String records[][]={{"B0201","JAVA PROGRAMING","JAMES","1234.00"},
                               {"B0202","SERVLET PROGRAMING","GOSLIN","1425.00"},
                               {"B0203","PHP DEVELOPMENT","SUNITHA","123"},
                               {"B0204","PRIAM","SELVI","1354"},
                               {"B0205","JAVA PROGRAMING","JAMES","1234.00"},
                               {"B0206","SERVLET PROGRAMING","GOSLIN","1425.00"},
                               {"B0207","PHP DEVELOPMENT","SUNITHA","123"},
                               {"B0208","PRIAM","SELVI","1354"}};
              btnExpots= new JButton("Export");
              btnExpots.addActionListener(this);
              btnExpots.setBounds(140,200,60,25);
              table = new JTable();
              scroll=new JScrollPane(table);
              ((DefaultTableModel)table.getModel()).setDataVector(records,Heading);
              System.out.println(table.getModel());
              exportpanel= new JPanel();
              exportpanel.add(btnExpots,BorderLayout.SOUTH);
              exportpanel.add(scroll);
              getContentPane().add(exportpanel);
              setVisible(true);
          public void actionPerformed(ActionEvent ae)
              Object obj=ae.getSource();
              try {
              PrintWriter writing= new PrintWriter(new FileWriter("Report.csv"));
              if(obj==btnExpots)
                   for(int row=0;row<table.getRowCount();++row)
                             for(int col=0;col<table.getColumnCount();++col)
                                  Object ob=table.getValueAt(row,col);
                                  //exportApi(ob);
                                  System.out.println(ob);
                                  System.out.println("Connected");
                                  String fieldNames[]={"BOOK ID","NAME","AUTHOR","PRICE"};
                                  String rec = "";
                                  for (int i=0; i <fieldNames.length; i++)
                                       rec +='\"'+fieldNames[i]+'\"';
                                       rec+=",";
                                  if (rec.endsWith(",")) rec=rec.substring(0, (rec.length()-1));
                                  writing.println(rec);
                                  //write values from result set to file
                                   rec +="\""+ob+"\",";     
                                   if (rec.endsWith(",")) rec=rec.substring(0,(rec.length()-1));
                                   writing.println(rec);
                                   writing.close();
         catch(Exception ex)
              ex.printStackTrace();
         public static void main(String arg[]) throws Exception
              Exporting ex= new Exporting();
    }Could anyone Please modify my code and help me out.
    Thank you for your service
    Cheers
    Jofin

  • How do I set the content type ?

    Hi
    I have to upload a file from my Java Application to a remote servlet.
    I have used the HTTPConnection class to connect to the remote servlet and made it call the POST method explicitly.
    How do I set the content type of the file I am uploading from my Java apllication?
    I tried to change the content type in the doPost method. by giving
    req.setContentType("multipart/form-data"); in the doPost.
    It still doesnt work..
    Is there any way to set the content type in the Java application?
    Thanks in advance

    What class is your req variable? If your using a HttpServletRequest, then there is no method req.setContentType("");
    In the HttpServletResponse this is for telling the web browser or receving medium what kind of mime type to expect.
    And what package is the HttpConnection class from?
    I think more precise info is required before this question can be answered.

  • How can i browse FP 2000 via serial port same use Ethernet port(RJ 45)?

    I am a new user for  labview.I develope my program with FP 2000 but I have some problem
      1 How can i browse FP 2000 via serial port same use Ethernet port(RJ 45)? if it can Tell me please.
      2 If  I use GSM/GPRS modem via FP 2000 rs 232 port (I under stand how to send AT command) and leave it stand alone
         Can I dial modem and browse file in FP 2000 same as use Ethernetport?
    Someone please help me.Thank you very much.

    Hi!
        First, I can say that your project involves many things, I cannot describe all features in the forum, and I'm not used with GPRS modems (my modems are base band serial modems...).
        Anyway, I would say that in your project you should proceed like this:
          1) Configure your FP 2000 module via MAX and ethernet connection;
          2) Download an embedded application to your module (build in LabView Real-Time)
          3) In your application, you should build a kind of serial port manager, and by the means of serial port you send/receive commands from PC.
        The commands from PC can include "Tell me the about the FP 2000 file system ", or "switch on line X", or anything you need.
       I think it would be difficult to use Internet exp, because you use IE with TCP/IP, and TCP/IP is over ethernet.
       I know that for Windows you can find some wrappers that make you "see" the serial port as an ethernet, but these wrapper do not exist under filed Point, and you shoul build one yourself!!!(and that's not easy).
        For example, to browse your files, you should build a VI that searches through your file system, and reports, via serial, the files present in a directory (it's an example....).
        About communication between GPRS modems and FP2000, I know nothing.  I suppose that these modems accept serial inputs, so you'll have to configure your serial port on FP 2000 with the correct baud rate, parity, and so on..... and you send your data to the modem.  The modem will transfer data in its way, no matter on how it does.
        To send data to your modem you shoud take a look to some Serial communication examples.  What I suggest you, first, is to connect the serial port of FP2000 to a PC, and test communication between PC and FP2000, without modems. Just direct cable connection!  If you're able to do this, insertion of modems is the next step, and should be quite easy.  If you're not able to make the PC receive strings of data from FP2000, over  RS232, adding modems is a further complication, and you won't come out of this mess!
       So, what I say, is just build, for now, a simple embedded application for FP2000, that, using RS232, sends data to a PC (you should see data sent with use of Hyper terminal).
        To build this application, use Instrument I/O --> VISA commands (VISA open, VISA write, and Property node should be enough, for now).
       Please, let me know if this helps......
        Have a nice (programming) day!
    graziano

  • Importing directory contents locally?

    Hi
    I'm wondering if someone can point me to any resources that will help me learn how to do the following (I'm using Flash CS5 and Air).
    - import the contents of a particular local dir into variables
    or
    - import the contents of a particular local dir into a datagrid
    then
    allow these filenames to be dragged into cells in another data grid (alternatively, into input text fields), so that the data can then be placed into more variables.
    Thanks for your leads.
    Shaun

    Welcome to the Sun forums.
    >
    I would like to list a directory contents. I got this code from a website:>The web is a big place. Care to narrow that down with an URL to this website?
    >
    Path dir = ...;
    DirectoryStream<Path> stream = null;
    try {
    stream = dir.newDirectoryStream();
    for (Path file: stream) {
    System.out.println(file.getName());
    } catch (IOException x) {
    //IOException can never be thrown by the iteration.
    //In this snippet, it can only be thrown by newDirectoryStream.
    System.err.println(x);
    } finally {
    if (stream != null) stream.close();
    }>When posting code, or code snippets, please use the code formatting tags. To do that, select the code and click the CODE button seen on the Plain Text tab of the message posting form.
    >
    When I put it in NetBeans it doesn't find the class Path.
    Where is it defined?>You might try looking further around that 'website' you mentioned. But short of you supplying an URL, how on earth would you expect us to know?

  • How to remove browser warning message in HTML 5 Cap 8 projects?

    How to remove browser warning message in HTML 5 Cap 8 projects?

    My conclusion after a morning struggling with this, is that there's no point in suppressing the message if your html5 content then goes on to misbehave in Firefox (like mine does).  I've chosen to keep the popup, but change the wording to refer Firefox users to a completely separate Flash version.  The wording of the popup is also in CPM.js.
    Before you all shout at me, no I can't use the multiscreen.html approach, because my Flash version will have to be non-rescaleable, because web objects don't rescale in Flash.

  • Show serverside directory contents in applet

    Hello,
    On my website I want an applet which shows the files which are in the same directory as where the class file is.
    So it shows serverside directory contents of where my website is located.
    The most topics here about listfiles are all about listing files on a local machine with policy files. I want my applet to listfiles from the server.
    Does anyone know how to achive this?
    thanks in advance

    Andy,
    How would you do a similar thing as you have coded below, but instead of an Applet have the Directory names populate a drop down menu on a JSP and then when a Directory is selected, have the files in the Directory appear as HTML links on the screen?
    Teresa
    i have achieved this before and i had to use a
    servlet.
    here is the servlet code i used:
    // this servlet returns the files names that are in
    the Departments directory
    public class GetFilesServlet extends HttpServlet {
    public void init() {  }
    public void doPost(HttpServletRequest request,
    , HttpServletResponse response)
    throws ServletException, IOException
    doGet(request, response);
    // gets information from the server and sends it
    t back to the applet
    public void doGet(HttpServletRequest request,
    , HttpServletResponse response)
    throws ServletException, IOException
    // stores the names of all the files in a vector
    try
    Vector fileNames = new Vector();
    String directory = new
    y = new String("G:\\Intranet\\wwwroot\\Directory\\");
    // gets the file names that are in the server
    server directory
    File serverFiles = new File(directory);
    File[] directoryFiles =
    Files = serverFiles.listFiles();
    for(int i=0; i < directoryFiles.length; i++)
    h; i++)
    fileNames.add(directoryFiles.toString().substring(di
    ectory.length(),
    directoryFiles[i].toString().length()-4));
    // writes the file names back to the applet
    response.setContentType("java/object");
    ObjectOutputStream outputToApplet = new
    t = new
    ObjectOutputStream(response.getOutputStream());
    outputToApplet.writeObject( fileNames );
    outputToApplet.flush();
    outputToApplet.reset();
    outputToApplet.close();
    catch(Exception e) { e.printStackTrace(); }
    } // end doGet
    i hope this helps.
    the servlet runs server side and you will also need to
    write code that runs client side that gets the
    information from the servlet.
    Andy

  • How to I delete a folder in Contribute 3?

    How do I delete a folder in Contribute? It is easy enough to
    delete files, but I can't see any way of deleting folders on the
    web site.

    I'm pretty sure that's beyond contribute. It's just meant to
    be a simple content management solution, not a site management
    solution.

  • Building a directory content

    Hi everybody,
    I have too many *.fmb files (more than 1500) to build with Oracle Forms Builder. These files are old versioned and I need to build them to upgrade their version.
    I installed Oracle Fusion Middleware 11.1.1.2 Forms & Reports.
    I can able to open an "fmb" file and build it.
    On the other hand somebody told me that there is an easy way to build a directory content.
    Is there anyone have an idea about this?
    How can I build a directory containing 1500 *.fmb files by using Oracle Fusion Middleware Forms & Reports tools? or something else..
    Edited by: kursat on 27.Oca.2011 15:18

    Hi everybody,
    I have too many *.fmb files (more than 1500) to build with Oracle Forms Builder. These files are old versioned and I need to build them to upgrade their version.
    I installed Oracle Fusion Middleware 11.1.1.2 Forms & Reports.
    I can able to open an "fmb" file and build it.
    On the other hand somebody told me that there is an easy way to build a directory content.
    Is there anyone have an idea about this?
    How can I build a directory containing 1500 *.fmb files by using Oracle Fusion Middleware Forms & Reports tools? or something else..
    Edited by: kursat on 27.Oca.2011 15:18

  • Browsing directory with RAW files

    Is there any way to browse directory with RAW files? I can use dcraw, ufraw or rawstudio to work on single file, but how to find the file I want in directory with more than 100 RAWs?

    I use rawtherapee for most of my photo editing needs.  (Not that I have an especially high skill level.)  It provides, among other things, a browser interface for moving through your files.  It looks like AUR still has version 2.3 -- I suggest the beta instead, which is available for x86_64 or x86 right from www.rawtherapee.com -- IME it's been very stable, and it contains many, many bugfixes and interface/workflow improvements over the current "release" version.
    I haven't broadly sampled a bunch of different apps, but I've been very happy with it.
    No installation is required, just extract to the directory of your choice and execute "rt" to run it.
    To get it working on Arch, I did have to do this step first, as noted in the comments in AUR:
    As root run "gtk-update-icon-cache -f /usr/share/icons/THEME" for the Icon-THEME you are using and rawtherapee starts nicely.
    If you try running it without first doing that, and it fails to start up, check to see whether you need to kill the "rt" process before trying again. 
    I've been using it since 2.3 was first released (IIRC) and have used it under Ubuntu and openSUSE successfully, in addition to Arch, both x86 and x86_64.
    Last edited by arch_nemesis (2009-01-13 20:30:34)

  • Mass Copy directory contents and permissions from production to test server

    am using SUNOS5.8.
    I found out there is a discrepency between the production and test environments.
    The discrepency is only with folder and subfolders contained in /admin/bin/myfolder.
    The production environment is more up to date and the test environment is lagging behind.
    I want to make both the environments same, as they should be.
    Is there a single command in Unix that will overwrite existing folders/files in test server and copy everything including permissions starting from /admin/bin/myfolder from production server to test server?
    Please also give examples of how to user the command?

    I have come to know there are various tools available:
    rsh
    rcp
    rdist
    rsync
    scp
    sftp
    ftp
    ftp is a very tedious tool to copy all directory contents one by one.
    cd DirA
    mv * /path/to/DirB
    This method is also not a very preferable one.

Maybe you are looking for