A webpage with FTP function

hello,
I'd like to know how I can setup a webpage with FTP function with Muse, where browers or my client can upload files to me from. I don't mean to publish my website via FTP. I mean to setup a page to enable my clients to upload files to me or my website via FTP function. So, how can I do this?
Much appreciated.........

This can't be done currently with Muse by itself.
If your website is hosted with Business Catalyst and you upgrade to the Marketing level plan you can set that up. But it would take some knowledge of how Business Catalyst works.

Similar Messages

  • Sending XML file from SAP to Windows Based file server with FTP function

    Hi Gurus,
    We are using SAP BW 3.0B version.
    I need to convert data in ODS to XML format and send this XML file to remote server which  is not a SAP application server, it is just a Window Based file server with FTP function..
    By writing some ABAP code I have converted ODS data into XML format (which gets saved in my local system)
    (Is that I need to put this file in Application Server to send it to the other servers? )
    Now the thing is how I can send this file to that Windows Based file server.
    plz suggest me.... what can be done......
    Thanks in Advance
    Madhusudhan
    Edited by: Madhusudhan Raju on Dec 3, 2009 4:25 AM

    I dont think the above code support windows OS. Because I always execute this script via UNIX.
    I think you can try this option, go to command prompt, goto the destination path where you have an XML file using cd....
    ftp (destination servername), specify the username and password.
    afterthat, use the command put and filename.
    check whether the file had reached destination successfully or not.
    For automation purpose, you can use the following script like
    ftp: -s: test.txt  (servername)
    In test.txt,
    UserName
    Password
    bin
    cd /files
    put file.xml
    bye
    Also, you can check in SM69, there will be some SAP external commands to automate the file transfer.
    Thanks
    Sat
    http://support.microsoft.com/?kbid=96269

  • Why can't i use the ftp functions with a built file

    I have created a report program that connects to an MS Access database and generates a series of reports from it. i also wanted to give the user the ability to download the database. we haev the database stored on a server at a different building. i have used the labview FTP function in the internet tool kit. the program works fine in the development mode. however if i build an application the ftp call fails to work. i have added traps so that if i get an error i will know it. unfortunatly the program flows through with no errors but the database is not copied.
    i have also written an ftp function which works in the development mode and the application mode with no installer, but it does not work in the apli
    cation mode with an installer.
    Attachments:
    test_ftp.vi ‏28 KB
    shawns_ftp_get_files.vi ‏71 KB

    Well once again I find myself on a machine that will not let be take a look.
    I am glad to here that you have your app running.
    I am troubled by by the solution. It makes me nervous when functions behave differently in the two environments. Have you run this past NI support?
    I'll email myself this link as a reminder for monday.
    Thank you for the update.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • The FTP function in Dreamweaver CS5 has suddenly stopped working. My ISP just had to upgrade their FTP servers and they said it was no longer compatible with the FTP in Dreamweaver CS5! Help!!

    Is there any update to Dreamweaver CS5 that will allow the FTP function to be compatible with the new FTP server protocol? Please help. Will I need to upgrade to CS6?

    Ask in the DW forum and be much more specific about the requirements for your FTP connection like its ports, TLS settings and so on.
    Mylenium

  • SFTP with FTP Adapter - Missing class: com.maverick.ssh.SshTransport

    Hi,
    I am trying to use the SFTP with FTP Adapter for a project requirement.
    I have followed the steps as mentioned in the below link
    http://download-uk.oracle.com/docs/cd/B31017_01/integrate.1013/b28994/adptr_file.htm#CACDFFFB
    Have configured the oc4j_ra.xml file, but after creating a sample BPEL process with the FTP adapter, got this error message in the log file.
    <2010-04-12 11:21:16,493> <FATAL> <default.collaxa.cube.activation> <AdapterFramework::Inbound> Uncaught exception oracle.classloader.util.AnnotatedNoClassDefFoundError in JCA-work-instance:FTP Adapter-4 - cause:
    Missing class: com.maverick.ssh.SshTransport
    Dependent class: oracle.tip.adapter.ftp.SshImpl.SshImplFactory
    Loader: FtpAdapter:0.0.0
    Code-Source: /D:/product/10.1.3.1/OracleAS_1/j2ee/home/connectors/FtpAdapter/FtpAdapter/ftpAdapter.jar
    Configuration: <code-source> in D:\product\10.1.3.1\OracleAS_1\j2ee\home\connectors\FtpAdapter\FtpAdapter
    The missing class is not available from any code-source or loader in the system.
    I tried getting a trial licencse for the maverick SSH tool from http://www.3sp.com/requestEvaluation.do?productCode=MAVERICK as discussed in one of the threads, but it redirects to http://www.barracudanetworks.com/ns/products/sslvpn_overview.php
    Could anyone please help in this?
    OR
    Provide steps on how to use SFTP with FTP Adapter.
    Regards,
    Varun

    Hi,
    Thanks for the reply.
    As per client's requirement, we shouldn't be using java service for this functionality.
    And as you said, the oracle adapters are not taking anywhere, but guess have no other choice..
    Cheers,
    Varun

  • Need help adding FTP functionality

    Is there a built in class for FTP functionality with the jdk 1.5
    I am sure there are thousands of threads on this subject but when I searched for related threads the first ten pages were all about ftp errors.
    we are manually FTPing files from several remote servers to one main server, then using java to further act on these files.
    I know there is a way to program java to FTP the files automatically.
    Does anyone know a link to a good related thread?
    Does anyone know where to find some free code to do this. I can't pay the $ for the commercial packages out there. I would like to code my own client but do not know where to begin.
    Anybody?

    Here's a little demo I have lying around:
    import org.apache.commons.net.ftp.*;
    * Download Jakarta's net-jar:
    * http://jakarta.apache.org/site/downloads/downloads_commons-net.cgi
    public class FTPDemo {
        private boolean isConnected = false;
        private FTPClient client;
        public FTPDemo() {
            connect();
            listFiles();
            disconnect();
        private void connect() {
            String server = "ftp.yoursite.org";
            String username = "yourlogin";
            String password = "yourpassword";
            client = new FTPClient();
            try {
                client.connect(server);
                client.login(username, password);
                isConnected = true;
            } catch (Exception e) {
                e.printStackTrace();
                isConnected = false;
        private void disconnect() {
            if(isConnected) {
                try {
                    client.disconnect();
                } catch(Exception e) {
                    e.printStackTrace();
                isConnected = false;
        private void listFiles() {
            if(!isConnected) return;
            try {
                String[] files = client.listNames();
                for(int i = 0; i < files.length; i++) {
                    System.out.println(files);
    isConnected = true;
    } catch(Exception e) {
    e.printStackTrace();
    isConnected = false;
    public static void main(String[] args) {
    new FTPDemo();

  • Cannot preview webpage with linked stylesheet in browser

    I had a frustrating problem arise a few hours ago with a local version of a webpage with a linked stylesheet, which is that suddenly I can no longer preview its CSS styling in a browser.
    I've done a lot of troubleshooting to try to narrow down the problem and narrow it down I have, but I am unable to solve it. Here are the conditions in which it occurs:
    (1) The problem occurs only within this particular site. If I create a new site, or open one of my other sites and preview a webpage with a linked stylesheet, it previews fine.
    (2) I know the stylesheet for this page in this site is linked properly, because the styles display properly in the page both in design view and live view, just not when I preview it in a browser.
    (3) It occurs in this particular site only if the styles are linked. If I move the styles to the header, it then previews fine in a browser.
    (4) The problem only occurs in the local version of the site. I subsequently uploaded the page and its stylesheet to my remove server, and if I navigate in a browser to it, it displays fine.
    I've spent about four hours trying to solve this. If anyone if familiar with the issue and could offer me advice on how to solve it, I would be very grateful.

    function(){return A.apply(null,[this].concat($A(arguments)))}
    function(){return A.apply(null,[this].concat($A(arguments)))}
    The best way to proceed is to see the live page.
    Yes true, however he provided a link to his page and it renders fine. The fact that he says it ONLY happens locally and ONLY with THIS site doesnt help us in viewing his live site, other than to make sure his code is valid.
    Ok you have two stylesheets ...one for IE I assume. But the file paths here:
    <link href="/StyleSheets/ModuleStyleSheets.css" type="text/css" rel="StyleSheet" />
    and here:
    <link href="/stylesheets/styles_main_current.css" rel="stylesheet" type="text/css">
    are closed differently AND point to different folders....Stylesheets and stylesheets. Do you have two different folders named this way?

  • Pblm with FTP connection

    We have a process which exchanges files between UNIX and NT server. We are exchanging the files using FTP connection. But, this FTP transfer is hanging at random times. This behaviour is happening at only few times and if we start the process again immediately, it is competing successfully.
    We thought that the problem will be with FTP connection and we are checking the ftp connection using ftpClient.isConnected(). If this call returns false, we are skipping without transfering the files. But, this funtion is returning "true" and the process is still hanging.
    I have an assumption like.... the connection will be active and it may not be successful connection. can it be possible? If it is possible, can u pls let me know how to overcome this type of problems.
    I have an idea as below:
    After calling ftpClient.connect(inetAddress, ftpPort), can we verify the successful connection by using
    FTPReply.isPositiveCompletion(ftpClient.getReplyCode()) ???
    This should return "true" if the connection is successful connection and should return "false" if the connection is failure.
    Can there be case like getting false for the above call (FTPReply.is.....) and getting "true" by calling ftpClient.isConnected() function !!!??
    One more update here is..... after using ftpClient.Connect(...), we are logging into the FTP server using
    ftpClient.login(user,pwd) -> this is returning "true" all the times. :-(

    FTPClient.isConnected() just returns Socket.isConnected(), which is always true once it's first gone true. It doesn't (can't) report the state of the connection, only the history of what APIs have been called on the Socket. See http://archives.devshed.com/forums/java-118/help-ftpclient-isconnected-does-not-work-2084258.html
    Can you set a read timeout on the FTPClient?

  • FTP functionality in ucm

    Hi experts
    Is there any FTP functionality Available in UCM ?
    Actually i am writing a custom component that will FTP some files. Is there any FTP classes available in intradoc API ?? Or I will have to write my own custom FTP code ?

    I will not pretend to be an expert, but I for one haven't come across any such functionality or classes. I'd love to hear the use case where you'd need such functionality though. Sounds interesting.
    Good luck with your project
    Wim

  • Error while replacing IF statements with DECODE function in procedure

    Hi All,
    I have created a procedure which has nested IF statements. Now I want to replace the IF statements with DECODE functions to improve performance.
    Procedure:
    IF (var_int_sev = '0')
    THEN
    var_sev := '2';
    ELSE
    SELECT sev
    INTO var_int_sev
    FROM errorconfig
    WHERE errorcode = var_errorcode;
    var_sev := var_int_sev;
    END IF;
    I converted the above IF statement into DECODE function as mentioned below:
    var_Sev := DECODE(var_int_sev,0,2,SELECT severity FROM errorconfig WHERE errorcode=var_ErrorCode)
    But it throws below error at the select statement used inside DECODE.
    Error(58,51): PLS-00103: Encountered the symbol "SELECT" when expecting one of the following: ( - + case mod new not null others <an identifier> <a double-quoted delimited-identifier> <a bind variable> avg count current exists max min prior sql stddev sum variance execute forall merge time timestamp interval date <a string literal with character set specification> <a number> <a single-quoted SQL string> pipe <an alternatively-quoted string literal with character set specification> <an alternativ
    Can someone help me in converting the IF to DECODE in the above case. Also how can we use a select statement inside decode.

    instead of trying to rewrite all your code and hoping that the performance will be better, it's a better option to investigate and find out which part of your application is slow
    read this:
    When your query takes too long ...

  • How to find the number of data items in a file written with ArryToFile function?

    I have written an array of number in 2 column groups to a file using the LabWindows/CVI function ArrayToFile...Now if I want to read the file with FileToArray Function then how do I know the number of items in the file. during the write time I know how many array items to write. but suppose I want the file to read at some later time then How to find the number of items in the file,So that I can read the exact number and present it. Thanks to all
    If you are young work to Learn, not to earn.
    Solved!
    Go to Solution.

    What about:
    OpenFile ( your file );
    cnt = 0;
    while ((br = ReadLine ( ... )) != -2) {
    if (br == -1) {
    // I/O error: handle it!
    break;
    cnt++;
    CloseFile ( ... );
    There are some ways to improve performance of this code, but if you are not reading thousands of lines it's quite fast.
    After this part you can dimension the array to pass to FileToArray... unless you want to read it yourself since you already have it open!
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Not able to copying files/folders from one Document Library to another Document Library using Open with Browser functionality

    Hi All, 
    We have SharePoint Production server 2013 where users are complaining that they are not able to copy or move files from one document library to another document library using “Open with Explorer” functionality.
    We tried to activate publishing features on production server but it did not work. We users reported following errors:  
    Copying files from one document library to another document library:
    Tried to map the document libraries and still not get the error to copy files: 
    In our UAT environment we are able to copy and move folders from using “Open with Explorer” though.
    We have tried to simulate in the UAT environment but could not reproduce the production environment.  
    Any pointers about this issue would be highly appertained.
    Thanks in advance
    Regards,
    Aroh  
    Aroh Shukla

    Hi John and all,
    One the newly created web applications that we created few days back and navigated to document library, clicked on “Open with Explorer”, we get this error.
    We're having a problem opening this location in file explorer. Add this website to your trusted and try again.
    We added to the trusted site in Internet Explorer for this web application, cleared the cache and open the site with same document library but still get the same above error.
    However, another existing web application (In same the Farm) that we are troubleshooting at the moment, we are able click on “Open with Explorer”,  login in credentials opens and we entered the details we are able to open the document
    library and tried to follow these steps:
    From Windows Explorer (using with Open with Explorer), tried to copy or move a files to
    source document library.
    From Windows Explorer moved this file to another destination document library and we got this error.
    What we have to achieve is users should be able to copy files and folders using
    Open with Explorer functionality. We don’t know why Open with Explorer
    functionality not work working for our environment.  
    Are we doing something wrong? 
    We have referred to following websites.
    we hope concepts of copying / Moving files are similar as SharePoint 2010. Our production environment is SharePoint 2013.   
    http://www.mcstech.net/blog/index.cfm/2012/1/4/SharePoint-2010-Moving-Documents-Between-Libraries https://andreakalli.wordpress.com/2014/01/28/moving-or-copying-files-and-folders-in-sharepoint/
    Please advise us. Thank you.
    Regards,
    Aroh
    Aroh Shukla

  • Slicer Time Dimension Issue with Cube Functions

    Hi,
    Hoping someone can help me figure out right approach here.
    Summary:
    Using Excel 2013 connected to a SSAS cube as data source, and cube functions with slicers to create a dashboard.
    Have following time dimension slicers; Fiscal Year, Fiscal Quarter, Fiscal Month, Fiscal Week & Date, that are used to slice data based on user selection, along
    with a sales measure.
    Below is example of Slicer name and CubeMember function for each:
    Slicer_Fiscal_Year: 
    =CUBEMEMBER("Cube","[Date].[Fiscal Year].&[2015]")
    Slicer_Fiscal_Quarter: 
    =CUBEMEMBER("Cube","[Date].[Fiscal Quarter].[All]")
    Slicer_Fiscal_Month: 
    =CUBEMEMBER("Cube","[Date].[Fiscal Month].&[201408]")
    Slicer_Fiscal_Week: 
    =CUBEMEMBER("Cube","[Date].[Fiscal Week].&[201509]")
    Slicer_Date: 
    =CUBEMEMBER("Cube","[Date].[Date].[All]")
    Problem:
    What I am trying to do is to build a table with cube functions that takes the lowest grain of the slicer time dimension selected, shows the current member, plus
    the prior 7 so I can have an 8 period trending view table that I will build a chart from. In the above example that would mean that it would look at Slicer_Fiscal_Week since that is lowest grain that has an attribute other than All, and then show me the prior
    7 periods. In this case 201509 means Week 9, so I would want to show in table Week 9 back to Week 2. But if Slicer_Fiscal_Week was set to All, along with Slicer_Date, then Fiscal Month would be lowest grain, so I would want to show Fiscal Months from August
    (201408) back to January 2014. I know how to use CubeRankedMember to pull the value from what is selected in the slicer, the problem is figuring out how to pass the lowest grain time dimension so that I can use lag or some other MDX function to get the previous
    periods.
    Any help on this would be greatly appreciated.
    <object height="1" id="plugin0" style=";z-index:1000;" type="application/x-dgnria" width="1"><param name="tabId" value="{28593A5C-70C0-4593-9764-80C76B51795C}"
    /></object>

    Hello,
    Thank you for your question.
    I am trying to involve someone familiar with this topic to further look at this issue.
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Problem with FTP Adapter in creating a new Folder

    Hi all,
    I have a requirement in which a BPEL process shud create a folder named as sysdate dynamically and write a
    CSV file into that.(ex: PO/2010-03-09/PO_1.csv).I created a header variable for Oubound FTP adapter and
    passing the file directory as concat('PO/',xp20:current-date(),'/') to outbound header directory variable.Problem is FTP
    adapter is not creating the sysdate folder its says:1.check u have privileges 2.file name is too long....Blah....Blah.
    But i have all the privileges for that user.If i manually create the sysdate folder the FTP adapter is placing the CSV
    file.The same works fine with file adapter...but i need to use FTP since the FTP server can change in future.Seems to
    be a problem with FTP adapter....can some one help.
    Iam using SOA 10.1.3.4
    Regards,
    Edited by: 0racler on Mar 9, 2010 4:46 AM
    Edited by: 0racler on Mar 9, 2010 5:49 AM

    any thoughts????

  • What's wrong with this function

    What's wrong with this Function(PL/SQL) in this formaula column definition in Reports 6i
    function currdateFormula return Date is
    curr_date date;
    begin
    select to_char(sysdate, 'DD-MM-YYYY') into curr_date from dual;
    return(curr_date);
    end;
    I get the following error in compiling
    REP-1401. 'currdateformula'.Fatal PL/SQL error occured. ORA-01843 not a valid month.
    The SQL select to_char(sysdate, 'DD-MM-YYYY') from dual; worked well in SQL Plus prompt.
    I got a clean compile when i use just sysdate in the function (see below).
    function currdateFormula return Date is
    curr_date date;
    begin
    select sysdate into curr_date from dual;
    return(curr_date);
    end;
    Appreciate your help
    Raja Lakshmi

    hello,
    what you are trying to do :
    fetch the current date and return it as the result of the formula-column.
    what you are actually doing :
    fetch the current date, convert it to text, assign this text to a date-variable which causes an implicit type-conversion.
    in your case you create a date-string with the format dd-mm-yyyy. the implicit conversion then tries to convert this string back to date using the NLS settings of your session. depending on your NLS_LANG and NLS_DATE_FORMAT this might work, if your session-date-format is dd-mm-yyyy which obviously it is NOT as you get the error.
    what you should do :
    select sysdate into curr_date from dual;
    this fetches the sysdate and stores it in your date-variable. there is no type conversion needed what so ever.
    regards,
    the oracle reports team

Maybe you are looking for

  • Installing Windows XP on Snow Leopard 10.6.8

    Hi! I am trying to install windows XP (professional) on to my macbok pro. By using the Boot Camp Assistant I partitioned the drive *** instructed and started the windows installer. The problem occurs when I am asked to choose witch partition i want t

  • It is very urgent

    hi all, in a function module BAPI_MOSRVAPS_GETLIST2  which field we have to use the source plant field (DTL_SAP_PLANT)                                           kiran

  • Skype are trying to hide and stop us talking about...

    I see they closed our last thread so we can not further share nre information about the "PRISM SITTUATION" NOT AT ALL HAPPY http://community.skype.com/t5/Security-Privacy-Trust-and/Skype-quot-s-Voluntary-Participation-in-PRI...

  • Which laptop is better

    is this laptop better       http://www.bestbuy.com/site/olspage.jsp?skuId=9123584&type=product&id=1218027599434     or is this laptop better      http://www.bestbuy.com/site/olspage.jsp?skuId=9055602&productCategoryId=abcat0502003&type=product&id...

  • WHAT IS MY PASSWORD?

    WHAT IS MY PASSWORD?