Dreamveaver CS4 converting UNIX to DOS on file upload

Dreamveraer 4 on Windows Vista.
My settings: Line break type: LF (UNIX).
FTPExtensionMap.txt: HTML ASCII.
When I edit and save any file with *.html extension locally
(utf-8) it is successfully saved as UNIX.
But when I uploading files to FTP, file is uploaded as DOS
(U8-DOS).
I need files in UNIX to get correct SVN work for html
templates.
Is it a bug? Please let me know any solution to fix this
issue.

What OS is running on the host server?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"ST." <[email protected]> wrote in message
news:gl7k9t$4fr$[email protected]..
> Sorry, i have the latest Dreamweaver CS4.
>
> Settings which you offer is already set by me: Code
Format > Line break
> type > LF (UNIX).
>
> Dreamweaver saves locally as UNIX, but uploads files as
DOS.

Similar Messages

  • Convert unix text file cannot be processed in BW

    Hi,
    via a SFTP interface we extract a csv file from windows NT server to our BW system (UNIX).
    When we load the file into BW we get an error.
    This is caused by UNIX, the way it stores the data.
    Somehow we have to convert, before we load into BW, the file back from UNIX into DOS format.
    Is their any smart solution for this problem? Can it be resolved by abap? Or must the SFTP software do the job?
    Regards,
    Hans

    Try something in SFTP only as it is working fine for us. May be file transfer mode needs to be changes.
    Regards,
    RB

  • Need to convert lab from UNIX to DOS

    I need to convert this lab from Unix so that it will run as a batch file in Windows (substitute with the appropriate commands). (I will definitely be starting some UNIX classes soon).
    FILE=${1:?'Parameter 1 should be set to file name'}
    BLOCK=${2:?'Parameter 2 should be set to block to be corrupted''}
    BLOCKSIZE=${3:?Parameter 3 should be set to blocksize'}
    dd of=$FILE bs=$BLOCKSIZE conv=notrunc seek=$BLOCK <<EOF
    CORRUPT
    EOF
    dd of=$FILE bs=$BLOCKSIZE conv=notrunc seek='expr 1 + $BLOCK' <<EOF
    CORRUPT
    EOF
    dd of=$FILE bs=$BLOCKSIZE conv=notrunc seek='expr 2 + $BLOCK' <<EOF
    CORRUPT
    EOF
    dd of=$FILE bs=$BLOCKSIZE conv=notrunc seek='expr 3 + $BLOCK' <<EOF
    CORRUPT
    EOF

    Look up the SimpleDateFormat class: http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html
    Arwinder wrote:
    This is absolutely necessary... any help plz..For you maybe, not others. Please refrain from trying to urge others to answer your queries. They'll do it at their own pace ( if at all ).
    People on the forum help others voluntarily, it's not their job.
    Help them help you.
    Learn how to ask questions first: http://faq.javaranch.com/java/HowToAskQuestionsOnJavaRanch
    (Yes I know it's on JavaRanch but I think it applies everywhere)
    ----------------------------------------------------------------

  • Scheduling unix shell scripts from windows using DOS batch files

    Hi,
    I want to schedule unix shell scrips using windows scheduled. I have the option of scheduling the DOS batch files. But not able to connect to telnet using DOS. Please let me know if there is an option.
    Regards,
    -Anand

    Drive letters are user specific. When you run jboss it runs as you, with your shared drives. When you run it as a service, it runs as guest or another user so your drive letters are meaningless.
    Either setup the user or use UNC

  • How to convert java class to dll file for using in Microsoft Technology(.n)

    hey hemmj !!!!!!
    nice replying , first of all i d like to say thanks for response me so frequently..... i like such type of guy... i d never forget ur online support.
    hey buddy, i ve a problem with applet application...
    i m working on java chat server build on swing applet. As it is chat server, it is divided into two parts, one is server application and other is client application. I want to run this server app on the client server and the basic thing with this site is that it is running on .net platform(Microsoft). and the other app ll running on the client machine or end user. Now the problem is that this site would run only if the server app ll be run on server. This server app ll open the socket of server, which ll listen the request of the user...... So, the requirement is to convert this java sever class file into dll file and register this dll file with the IIS server.So, It run and stop with the IIS server.
    I ve already search the way to convert the java class file into dll file. This is possible in such way........... below code is for the java class file...
    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class chatServer
    public static void main(String args[]) throws Exception
                        ServerSocket sersoc=new ServerSocket(1234);// Any port number above 1000 should do
    // as most ports below 1000 are used by system
    Vector socvec=new Vector();
    String data="";int i,j=0;
    BufferedReader in;
    //System.out.println("Listening of port " + sersoc.getLocalPort());
    //System.out.println("Waiting for connections...");
    while(true)
    Socket soc=sersoc.accept();
    socvec.addElement(soc);
    chatServerReadThread csrt=new chatServerReadThread(socvec, soc);
    in=new BufferedReader(new InputStreamReader(soc.getInputStream()));
    PrintStream out=new PrintStream(soc.getOutputStream());
    out.println("Connected to chat server");
    out.flush();
    data= in.readLine();
    for(i=0;i<socvec.size();i++)
    soc=(Socket)socvec.elementAt(i);
    out=new PrintStream(soc.getOutputStream());
    out.println(data + " connected");
    out.flush();
    //System.out.println(data + " connected");
    csrt.start(); // error is comming from here..... plz help me.
    class chatServerReadThread extends Thread
    Vector socvec;
    PrintStream out;
    chatServerReadThread(Vector socvec, Socket soc)
    this.socvec=socvec;
    try
    out=new PrintStream(soc.getOutputStream());
    }catch(Exception e){}
    public void run()
    try
    String data;
    Socket soc;
    BufferedReader in;
    while(true)
    for(int i=0;i<socvec.size();i++)
    soc=(Socket)socvec.elementAt(i);
    in=new BufferedReader(new InputStreamReader(soc.getInputStream()));
    if(in.ready())
    try
    data=in.readLine();
    if(data.charAt(0) == ']')
    data = in.readLine() + " exited";
    //System.out.println(data);
    socvec.removeElement(soc);
    for(int e=0;e<socvec.size();e++)
    soc=(Socket)socvec.elementAt(e);
    out=new PrintStream(soc.getOutputStream());
    out.println(data);
    out.flush();
    else
    for(int e=0;e<socvec.size();e++)
    soc=(Socket)socvec.elementAt(e);
    out=new PrintStream(soc.getOutputStream());
    out.println(data);
    out.flush();
    }catch(Exception e){socvec.removeElement(soc);}
    }catch(Exception e){e.printStackTrace();}
    first i ve made the jar file of this class
    jar cvf chatServer.jar chatServer.classafter getting the jar chatServer.jar. I ve opened the .net dos prompt and
    type this command which ll make dll file automatically....
    > jbimp /t:library chatServer.jar
    And you'll see the following output:
    Microsoft (R) Java-language bytecode to MSIL converter version 1.1.4322.0
    for Microsoft (R) .NET Framework version 1.1.4322
    Copyright (C) Microsoft Corp 2000-2002. All rights reserved.
    Created chatServer.dll
    I cant get the problem origin from where it is comming, when i tried to convert it into .dll file it shown an error that, it did not recongnized the method in first class
    public static void chatServerReadThread.start() method
    is not recognized by .net dos prompt commnad. But when i omit this method it gets created the .dll file. This start method is basically the default method of thread class that run the thread from the same class..
    By vewing the code u can visulize the thing,, i ve marked the code from where the error is comming.
    Plz do it as soon as possible, i ll waiting for ur reply......
    I ll be really thanking u for that....
    Thanx and regards
    Niraj Kumar Singh

    I wonder if this will work:
    jbimp /t:exe chatServer.jar
    Your chatServer is an application that can be started from the commandline.
    A dll is a library to be used in com, com+, other executables or ....

  • Adobe DNG Converter can't recognize any files

    Hi All!
    I'm new here and would very  much appreciate help.
    I am running a Mac OS X 10.04.11 and would  like to open .CR2 files (native file from my Canon 500D) in PS4      / Bridge  CS4. My problem is that although I have downloaded the Adobe DNG Converter and Camera Raw 5.1  update as described  here: http://www.adobe.com/support/downloads/detail.jsp?ftpID=4057,  the DNG Converter can't recognise any files at  all (they are greyed-out  when I go to select any folder). I also followed these steps from the aforementioned link (well at  least I hope I did it right, I found the reference to step 4 slightly  confusing):
    To install with Adobe Creative  Suite 4 or Photoshop CS4:
    Automated installation on Mac or Windows®:
    1. Select "Updates..." from the Help menu
    2. Follow the on-screen dialogs to download and  install the latest  available Camera Raw update  
    Manual installation on Mac:
    1. Exit Photoshop CS4 and Adobe Bridge.
    2. Open the Finder.   
    3. Navigate to the root of the local disk (not the user's home  folder).   
    4. Navigate to: (Please read directory carefully)
    Library/Application Support/Adobe/Plug-Ins/CS4/File Formats
    5. Move the existing plug-in to another location (for example, a new  folder on your desktop). Ensure you keep this version in case you need  to revert back.
    6. Copy the Camera Raw plug-in, Camera Raw, from the download  into the same folder as in Step 4.   
    7. Launch Photoshop CS4 or Adobe Bridge.   
    Is that version the right one for CS4?
    Only Finder and the Canon Software can preview my .CR2  files, Photoshop still gives the message: "Could   not complete  your request because Photoshop does not recognise this  type of file." and   Bridge only shows me a generic RAW thumbnail. This message also  appears in PS when I double-click on the  Camera-RAW.plugin. I also  restarted my computer,  but that didn't fix it.
    Can  anyone help me out please? I'd urgently need a solution.
    Thanks in advance!

    I now uninstalled the older 5.1 version and  instead installed the DNG Converter 6.3 separately and it works  perfectly.
    About the Camera Raw 5.6 update: I also downloaded the plug-in  (which I think should be the last version CS4 supports) and can now open  my .CR2 files in PS, Bridge previews them too. :-)
    Is it advisable to keep both, .CR2 as well as .DNG files? Why is it  that my .DNG files are lighter than the native .CR2?
    Thanks again!

  • Convert word document to PDF file in SAP

    Hello experts,
    I've been searching around to get some code examples to upload a word document and convert it into a PDF file and then store it in unix. I hope one of you can help me, because many explanations and threads exist, but I did not get wiser reading them...
    I don't want to use 3rd party tools to do the conversion, but do it directly in SAP with abap coding and if necessary spool processing.
    System details:
    SAP ECC 6.0 (unicode system)
    SAP_ABA     700     0014     SAPKA70014     Cross-Application Component
    SAP_BASIS     700     0014     SAPKB70014     SAP Basis Component
    Thanks in advance!
    Regards,
    Danny

    Hi,
    You can get the spool no from transaction SP01 and later use this spool no to convert the word document to PDF
    using the function module CONVERT_OTFSPOOLJOB_2_PDF and give the import parameter as ur spool id.
    once the doc gets converted to PDF u can use CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
    to get the path where the file is to be saved and later give the path to function module GUI_DOWNLOAD to download the file.
    or else u can manually execute the following reports:
    RSTXPDFT4  (give the spool no. as input)
    RSPO0068  (give the word doc with its full path as input)
    Hope that helps u
    Regards,
    Radhika

  • Programatically convert CS5 and CS6 illustrator files to lower versions

    Is there a way to programatically convert CS5 and CS6 illustrator files to lower versions (CS4, CS3 etc) programatically. Are there any third party tools to do it or does Scripting let you do that.

    The illustrator save options has a property for dealing with backward compatibility… As far as I know you can only do this using Illustrator…

  • Unix to Dos conversion

    Hi -
    I am getting files from Unix server. I am currently manually changing the file format from Unix to Dos. Whats the way to automate this process? Whats the command in windows to do this?
    -app

    I don't know what you mean by 'normal DOS format' But Calendar has a method setTimeInMillis(), that might help you.
    http://java.sun.com/j2se/1.4.1/docs/api/java/util/Calendar.html
    Also there is the class SimpleDateFormat which might help you:
    http://java.sun.com/j2se/1.4.1/docs/api/java/text/SimpleDateFormat.html

  • CS4, we have downloaded the raw file ,but it still wont show

    My wife is trying to install camera raw in her photoshop cs4 , we have downloaded the raw file and installed it on the computer, but it wont open them up in cs4 ..why..has anyone any idea where we are going wrong...

    http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html
    D7100 requires ACR 7.4 so that is not possible with Photoshop CS4.
    Once again I recommend looking into the free DNG Converter.
    http://www.adobe.com/support/downloads/product.jsp?product=106&platform=Macintosh

  • CS4 suddenly won't recognize Nikon files

    Is it really true Adobe is not going to offer the plugin necessary to make my less than a year old copy of CS4 compatible with my new Nikon D7000? Does anyone have the 6.3 plugin, or know where I can get it so I can try to hack it into my CS4? There is no way I will every buy another Adobe product if they are basically making my $300 program garbage in less than a year, so I would really like to know a way around this. The dng conversion is inadequate since I shoot thousands of photos. Thanks!

    function(){return A.apply(null,[this].concat($A(arguments)))}
    Noel Carboni wrote:
    Ed, I doubt very much that the authors of a professional image processing package would even begin to consider leaving anything up to chance.
    You do know that they provide the free DNG converter, so that anyone with a new camera CAN convert the very latest camera files to a format all the older Photoshops understand, right?  It's not like they're leaving people out in the cold.
    People often seem to think it's okay to pay thousands for a new camera, but their old software should just be updated by the manufacturer for free...  And in this case it actually is, when you consider the DNG converter.  If you think about it, it's a brilliant strategy by Adobe.
    But if you want the ultimate convenience of full integration and not having to do an extra step of conversion, well, then the old saying applies:  "If you want to play you have to pay".  Buy the Photoshop upgrade.
    -Noel
    Sure they leave a ton of things up to chance. If they didn't they would actually come out with a version that didn't need updating 1, 2, 3 time over the course of it's life (wouldn't that be nice).
    The DNG convert only works IF ACR and the convert has been updated to accept the new RAW file. That is why everytime a new ACR is released a new convert is released. If you have a old version of the convert try using it on newer camera files, it doesn't work. So everyone is still left out in the cold until Adobe gets around to updating ACR and converter.
    No I'm not looking for any free upgrades to PS. I don't want Adobe to include whatever new features they may have in a newer version of PS and ACR ported back to the older version. But to UPDATE ACR to see newer cameras, say for at least one version, IE CS3's ACR never gets updates after CS5 comes out but they update CS4 ACR until CS6 comes out. You still don't get the newest feature set in the newer version. You just get newer camera models.
    I play and I pay. I have had PS 6 CS2/3/4 and now 5. I could of just upgraded Lightroom and stayed with CS3 or 4 but I don't paticularly care for Lightroom and I rarely used the 2 versions I've had. Just like you don't use Bridge.
    Oh and that other problem I was having with CS5 closing with a RUNTIME ERROR when you and I first butted heads. Funny but on the exact same hardware and the exact same OS, XP, on the exact same install of the OS. After a complete uninstall of PS and good cleaning of the registry and a reinstall I don't get those errors. So to me it was PS that was causing it.
    Something in the lines of the *x*x*x MVM*x*x.xxx files being created on some random drive by PS and representatives of Adobe stating the it wasn't PS creating those files. It was some 3rd party plugin. When in fact it was PS that created them. I get them in the ROOT of my D drive. My D drive is where I have PS installed but is not used for image files or the PS scratch disk or system Temp.

  • Will Newer Versions of InDesign Still Open/Convert Mac PM 6.5 Files?

    All right, you've convinced me. I can see that holding on to old technology is not a viable long-term solution regarding PageMaker vs. InDesign. Eventually my old PowerMac Quad will fail and not be able to be repaired. At that point I would be forced into an Intel Mac and new software. I have a ton of PageMaker 6.0 and 6.5 files and will need to convert them to a new version of InDesign. I realize PM6 files will not work with InDesign, that I have to do the initial conversion via PM6.5.
    I've studied the PageMaker forum hoping to see if this specific question has been advanced and answered but saw none. If in fact it has been addressed please understand that at least I did try before writing this.
    My question is this: Will all versions of InDesign IE: CS1, CS2, CS3, CS4 or CS5 open PageMaker 6.5 files? Or will I have to go back to InDesign 2.0, copy/convert all the PM6.5 files and then begin the upgrade process? Surely (and hopefully) Adobe provides a direct upgrade path to the newest InDesign version once you have all PageMaker 6.5 files, rather than making you upgrade to each version individually. If Adobe provides a direct upgrade to the latest InDesign product will this policy be true throughout it's product line? I also have older versions of PhotoShop, Illustrator and Acrobat to be concerned with. (I know, I know... the last couple of sentences are not about PageMaker-sorry)
    If anyone can answer this, please let me know so I can plan accordingly. Begrudgingly, I will probably begin the transition to InDesign soon. Looks like I'm in for a long, long study period to get up-to-speed. Bye-bye PageMaker, bye-bye PowerMac, so sad to see you go.

    Chuck, I am not very qualified t
    o answer your questions, but will do my best within my limi
    tations (I am still using InDesign CS3, and I haven't had to work with PageMaker files for years).
    I did open many PM 6.5 files with ID2, and I have just opened a couple in ID3. These two last were rather simple jobs, and opened without a hitch. When I had to open PM files with ID2, I remember some opened flawlessly, most with relatively minor glitches, and some required a lot of work to look the same than the originals. And yes, each version of ID that I have used opens PM files directly; no need to pass from older to newer versions.
    Another thing I remember is that I also had a great number of PM files, which I still keep, but the ones that I have really had (needed) to convert are just a small fraction of them. Maybe you'll live a similar experience.
    As for the learning curve, it surely is there; but in my case, I found it not at all steep, quite the contrary: I was surprised to find how fast I got used to the "new version" of PageMaker. Maybe if I did the move now (to version CS5) I wouldn't find the transition so easy as to ID2. And I know of people who have not found it easy, but don't seem to reacall anyone complaining of how very difficult it was for him/her.
    As for upgrading several products at the same time, you'll have to think carefully what your future needs are really likely to be. You see, Adobe offers a very attractive price for "the whole lot", what they call the Creative Suite. I have however heard many complaints of people who feel they were "trapped" when they followed that route, because when it comes to upgrades, they can only upgrade the whole suite, not each product at a time. So you may be stuck with upgrading products you don't use and think will never use. Sort of what happened with Word and Excel, wich were the basis of MS Office: I understand that nowadays you cannot even buy each product separately, although I may be wrong.
    If I were you, most probably I would upgrade at this time each product separately, keeping in mind that perhaps later it could be better for me to buy the Suite. And regarding this route: Adobe still offers a very convenient upgrade price from PageMaker to InDesign (no choice but the latest version), but nobody knows for how long they will keep this offer. I was one of those who though that when V5 was launched, Adobe would stop selling PageMaker (something that in my opinion they should have done when InDesign appeared), and the upgrade offer would end, but apparently I was wrong on both counts. Just be warned that this particular upgrade offer may be gone any day...
    As for parting with such old and faithful friends, part of the words of a song my grandmother used to sing when I was a child came immediately back to my mind: Un viejo amor no se olvida ni se deja... an old love is never (really) forgotten or abandoned in my free translation, where I use the word "love" with the meaning of "loved person", and the optional "really" I added comes form the rest of the words of the song.
    Hope this helps.
    Initial extra line breaks kindly provided by the software.

  • Run a MS DOS batch file from the client

    Hi,
    I created a java source to run a bat file, the folder is loacted in the Database server.
    (Not in application server)
    create or replace and compile java source named execcommand as
    import java.io.*;
    import java.util.*;
    public class ExecCommand{
    public static void run(String cmdstr) throws IOException, InterruptedException
    try {
    int rtn;
    cmdstr = "cmd /c " + cmdstr;
    Process prcs = Runtime.getRuntime().exec(cmdstr);
    while (prcs.getInputStream().read() != -1 ) {}
    catch (IOException e) {
    e.printStackTrace();
    I called the java source from the procedure
    create or replace procedure run_batfile is
    begin
    execcommand(cmdtext => 'e:\services\genPDF.bat');
    dbms_output.put_line('file created successfully');
    exception
    when others then
    dbms_output.put_line(sqlcode || sqlerrm);
    end run_batfile;
    But the bat is not executing (The bat file is to generate a PDF file ). Bu when i executing this from my PC (Client PC) directly on the RUN , its generating the PDF file in the server.
    What could be the problem, What should be the path in the procedure,
    Shall i create any virtual directory ?
    Thanks in advance,
    Rizly

    Hi Justin ,
    Sorry for the late replay.
    I am running Oracle on Windows.
    The MS DOS Batch file is to convert XML file to PDF format. It is a Java Application.
    also it is a batch process, thats why i created a batch file for that. I am using FOP to convert XML to PDF.
    FOP is in the e:\services folder of the Database Server machiene. XML file is also in the same forlder and I need to generate the PDF file also in the same machiene.
    <<- You have a client machine. What do you mean by "executing this from my PC (Client PC) directly on the RUN , its generating the PDF file in the server.">>
    I have mapped the e:\services folder in my client machience, so i am accessible to the genPDF.bat file that is in the 'e:\services' folder of the DB Server. When i run the bat file from my PC as Start > Run e:\services\genPDF.bat . The PDF file has generated in the DB Server machien.
    I dont have the copy of the batch file in client machiene, but i have mapped to my client machiene.
    Thanks again,
    Rizly

  • Converting unix form into forms 6

    hi, i want to convert unix based forms into forms 6, problem is that, i can convert fmx. i want to open that converted file into desgner mode, or is there ne tool which can convert fmx into fmb
    thanks

    Hi Ali,
    This forum is for the Oracle Migration Workbench. Your post is best sent to a Forms discussion forum.
    If you have the .fmb files for the UNIX platform you should be able to open those on any other supported platform to create a .fmx file.
    If you only have the .fmx file then I don't know of any way to get a .fmb from it. Sorry.
    Regards,
    Blair.

  • Need to convert PageMaker 6.5 Plus files from Windows XP to PDF for Windows 7.

    I need to convert PageMaker 6.5 Plus files into PDF from a Windows XP operating system to a Windows 7 operating system. It tells me I need a postscript printer. I don't have a postscript printer and really don't want to print them. I just want to transfer the files from Windows XP to Windows 7. Help!!

    No, it isn't telling you that you need a PostScript printer. It's telling you that you need a PostScript printer DRIVER, which is software, not a printer.
    Use the Add Printer function to add an Apple LaserWriter IINTX. That's a PostScript printer. Then try again.
    I don't quite understand the Windows 7 connection, though. What are you hoping to achieve by making a PDF. You WON'T be able to edit them, if that's the idea.

Maybe you are looking for

  • Windows 8.1 Software Center Issue

    In my development environment I have two clients, one is Windows 7 SP1 and the other is Windows 8.1. I have successfully deployed a required application to both clients. Now I am testing deploying an available application to both clients. The applica

  • Can't install Adobe Photoshop 7.0.1 update

    I installed Photoshop 7 in a customer's computer and when I am trying to install the 7.0.1 update I get a message that it cannot find the installation folder, even though it is there and the program sees it. I read that this might be an issue of the

  • How to change status of Campaign

    Hi I have writtend following code to change the status of the campaign Data : lit_status_comt TYPE crmt_status_comt, wa_status_comt LIKE LINE OF lit_status_comt, lit_field_names TYPE crmt_input_field_names_tab, wa_input_field_names LIKE LINE OF lit_f

  • Using C# with Oracle Internet Directory

    My apologies if this is the wrong forum for this but I'm hoping someone here can at least point me in the right direction. I am trying to connect to OID with C# 3.5 and have been completely unsuccessful. The .Net DirectoryServices namespace seems to

  • Error Deploying Web application that Connects to MS SQL Server

    Hello I have Created a data Source that connects to a SQL Server Database and its conecting but whenever i try running the web server that contains a web page that accesses a Datasource (Microsoft) I get this error Exception is: Exception creating co