Where is the command line interface in DW CS3 on a Mac?

I have seen other forums where they instruct you to use the command bar or command line interface to set permissions and what not, but I do not see where that might be in Dreamweaver CS3 on a Mac. Can someone assist me in locating this feature?
Thanks in advance,
Todd Temple > T2 Design

There is no command line interface in Dreamweaver. It's a tool for editing web pages.
However, you can use Dreamweaver to set the permissions on web pages on your remote server like this:
In the Files panel, select Remote view from the drop-down menu at the top right.
Select the file(s)/folder(s) for which you want to change the permissions.
Right-click and select Set Permissions from the context menu.
Set the permissions in the dialog box that opens.
As the dialog box warns you, this command does not work on all servers. If your remote server won't allow you to change permissions through Dreamweaver, you need to log into your hosting company's control panel, and change the permissions there. If you don't know how to do it through the control panel, ask your hosting company for help, as the method depends on the control panel used.

Similar Messages

  • How to get the command line interface for WRT160NL router

    hi,
    How can I get the command line interface for WRT160NL router. please suggest.

    If you’re trying to access the web-based interface of your router, just use its default IP address (192.168.1.1). The Username is left blank and the Password is "admin". Here’s a quick link on how to do that.

  • Can I create a new folder using the command line interface

    Hi.
    Is there a way to create a new folder in an existing business area, from the command-line?
    We have an application that provides an interface for the user to create a table and load flat file data into the table. After loading the data, the user will verify the loaded data using discoverer. If there is a command line interface to create a new folder, then the script that created the table can also call the discoverer command line to create a new folder for the new table. Is this possible?
    Thanks

    Hi,
    I think I am having a similar question here. I am using Oracle 10g on Windows xp.
    I logged in to Oracle from command prompt. I used command “create directory myFunDir as 'd:/funDir';”. Oracle returns: “Directory created”. But I couldn’t find the directory “myFunDir”! Where is it?
    Thanks.
    Newbie.

  • Can I use the Command Line Interface on Unix?

    Hi,
    We use 9iAS on Unix. We want to use Discoverer Command Line Interface on unix to export the worksheet query result. Can anyone know how to do this? I couldn't find out the command similar to dis5usr.exe for windows version.
    Thanks.
    Richard Qiu

    Hello Richard
    You can use the Discoverer EUL Command Line for Java utility. This was released with Discoverer 10g (9.0.4).
    Please refer to the documentation for more information on how to use this command line interface: 'Oracle Discoverer EUL Command Line for Java User's Guide 10g (9.0.4), Part No. B10274_01 (PDF)' The document is available from OTN at http://otn.oracle.com/documentation/discoverer.html
    Regards
    Discoverer Product Management

  • Where is the command line in the directory?

    I am relearning Java programming and doing an online tutorial.
    I went ahead and dowloaded the JDK program (jdk-6u3-windows-i586-p-iftw.exe) from Java's website and put it in a folder on my computer. I also have a BigDebt.java program on my computer....but the tutorial is telling me to put this command "javac BigDebt.java" in the directory where my program is saved to compile the program. Do I type in "javac BigDebt.java" in the Address line in the folder or where do I type this? Thanks.

    PZPZ wrote:
    If JAVA is an open-source programming language, when someone creates an application with it, how does one protect their code (their software business) from other people viewing and copying it? Worry about that when your code is good enough that someone would want to steal it and it would damage you if they did so. The short version is by obfuscation, which it not a very strong measure, or through license agreements, or by running the sensitive code on a server, so the client never sees it.
    And what are some really cool games that have been made with only JAVA or do people use JAVA with other programming languages to create games and applications?Don't know. Not into games.
    Also, it's Java, not JAVA. It's not an acronym.

  • Grant and revoke privilages from command line interface

    hi all,
    I have a lot of users that I need to give them a set of privileges to folders and containers of the repository, i thought that using the command line interface should help in loading a script.
    i checked the manual for the syntax for such a command (i.e. to grant privileges) but i couldn't, searched the net and i didn't find anything.
    So can we grant privileges from the command line interface and how ?
    by the way is there anyway to create users from command line interface as well ?\
    thanks in advance and have a good one

    The granting of access rights cannot be done with a CLI script in Designer. Instead you have to use the Designer API Pl/Sql packages.
    For detailed information, refer to the "API and Model Reference Guide", which is
    installed with the Designer Repository Documentation, or can be found on OTN > Doco > Designer site.
    Scroll through that document to the Reference section. You will need to read up on two topics at least: Workarea and Container Context, Privileges and Access Rights.
    To grant rights, the easiest way is to grant them "just like some existing ones".
    To do this, you'll need a Pl/Sql procedure with 5 input parameters:
    1) the workarea context
    2) the container to look at
    3) the user to look like
    4) the container to grant access to
    5) the user to grant access for
    The Pl/Sql procedure then needs to make a series of Repository API package calls to set context and get container IRIDs:
    JR_CONTEXT.Set_Workarea (workareaname) - to set the context workarea
    JR_CONTEXT.Set_Working_Folder (sourcefoldername) - to specify the source container
    JR_CONTEXT.Working_Folder (sourcefolderid) - to get the ID of the source container
    JR_CONTEXT.Set_Working_Folder (targetfoldername) - to specify the target container
    JR_CONTEXT.Working_Folder (targetfolderid) - to get the ID of the target container
    OR you can just do a couple queries after you set the WA CONTEXT such as ...
    Select IRID from CI_Application_Systems where NAME = <sourcefoldername>
    Select IRID from CI_Application_Systems where NAME = <targetfoldername>
    Then you get the list of rights desired, and grant them back to the target user.
    JR_ACC_RIGHTS.Get_Acc_Rights (sourcefolderid, sourceusername) > AccessList
    [gets list of existing rights for some user on a container]
    JR_ACC_RIGHTS.Grant_Priv_List (targetfolderid, targetusername, AccessList, Cascade? = TRUE)
    [to set the list of rights for a user against the target container and its subcontainers]
    There are other ACC_RIGHTS packages, like Grant_Priv, Revoke_Prive, Revoke_Priv_List, etc that you can use as well to build up a set of access management scripts.
    Hope this helps

  • Command Line Interface

    Hi all,
    I am trying to write a program with a command line interface and I am running into a few problems.
    I read the commands issued by the user as :
    BufferedReader in = new BufferedReader(
                new InputStreamReader(System.in));
    String command = in.readLine();Question 1. Is this the right way?
    Question 2. I have to read a password from a user. How do I stop the echo of this password (or change the echo to something like *)? Is it possible to do that from a Java program?
    Question3. While the user is typing a command, the system wants to output a message. This jumbles up the echo of the command the user was typing. So I need to show the message from the system on a new line, and then again show the command the user was typing .. or something similar which keeps the whole thing neat. How do I do it?
    Some of these requirements might not be possible to implement because of the inherent limitation of the command line interface. :-)
    Please help me with this.
    Thanks,
    Binil

    I raised this issue also in another thread.
    Actually I am pretty p.o. This issue pops up over and over again but the people at Sun systematically deny the problem and simply do nothing about it. I know, it's not as interseting as EE, 3D graphics or Swing, but it is asked for by many peaople over and over again.
    I simply don't understand what is so difficult in the method:
    System.in.setEcho(boolean) or System.in.setEcho(char)
    Your solution will work, but it is not platform-idependent. That os what Java is all about or am I wrong?
    hi,
    yah thatz the correct way to read things typed
    typed in the command prompt. Am not sure whether you
    will be able to mask the character typed to show a *
    (but i supoose itz not possible). If you are going
    to do any CLI have a look at JNICurses library
    available at
    http://home.att.net/~psantoro/jnicurses/jnicurses.html
    hope that was useful.
    cheerz
    ynkrish

  • Scheduling workbooks using the command line

    Hi, can anyone tell me if it's possible to schedule workbooks in Discoverer using the command line interface? If so, could you point me in the direction of any relevant documentation?
    We've got 300+ reports to schedule on a regular basis and it would be useful if we had different options to schedule the workbooks e.g. for batch processing.
    Thanks and regards
    Geoff Butler

    Inspired by your MacOS fix, I went looking to see if their was an easier Windows fix than my 'Repair Bonjour' process. Turns out there might be.
    In the Bonjour 'Program Files' folder, there is an application named 'mDNSResponder.exe' which brings up a DOS dialog. After running this application and then opening iTunes, I had a stable AppleTV-iTunes connection through the evening until I put my computer to sleep.
    I haven't done any thorough testing around this (the kind that Apple should have done before releasing iTunes 7.6), but it does seem to at least temporarily resolve the issue until iTunes is closed again. What would be nice is if this works without having to restart a faulty iTunes session (which the 'Repair' fix doesn't).

  • Newby question about command line interface

    Arch is my first linux distro and havnt used others yet.
    Just wondering, does Command Line Interface looks and functions all same on other distros?
    Because, if u can chose desktop environment like KDE, GNOME and Xfce with other Linux distros as well, then what is difference between others.
    Linux is still quite hard for me and just wanted to know if there is "special" stuff that arch can do.
    To me, they all looks same with same desktop environment...
    thanks

    When you mention the "command line interface" (CLI) there are a few things involved: a terminal emulator, a shell, and the programs you have installed. That said, as far as running programs goes
    The terminal emulator is the application that hosts/shows your shell. In KDE it's (by default) Konsole, GNOME uses gnome-terminal, others might use xterm, aterm, rxvt, rxvt-unicode or one of many others. Different emulators provide some extra features (e.g. tabs) and they all differ in memory usage, speed, and integration (or not) into a given desktop environment. That said, they all pretty much work the same for launching programs and operating in a shell: you type commands and press enter.
    The shell is what runs your commands and also provides some scripting capabilities. Generally, bash seems to be the most used as a default shell. You can change your shell if you wish, as some shells provide extra features like programmable command completion. Other shells are lighter or more POSIX-compliant. For a starting user, you're well enough off just using the default (probably bash) until you find a reason for which you must have a different shell.
    Finally, the programs installed will affect what you can run in a terminal. Different distros will have different quantities of programs installed by default. (Arch's base install is very minimal.)
    Now, with regards to Linux, at the end of the day all distros are Linux with some desktop environment (DE) and some Linux apps. The DEs and applications are taken from the same source, but some distros provide patches for extra capabilities or configuation. However, if you see something you like in openSUSE, say, you can download the software, patch it, and configure your Arch to work like openSUSE. Each distro, though, has its own focus and philosophy which affects:
    * how many and what applications are installed by default
    * amount of configuration required after install
    * stable vs. bleeding edge
    You can read more about this in the wiki reference above.
    So having said all that, Arch gives you a simple, minimal base install which you can then easily customize by app installation and configuration. It is reasonably bleeding edge, meaning application updates usually make it to Arch fairly quickly. With time and knowledge you can make Arch do near anything that another distro can do, but that's not really the idea behind Arch in my opinion.
    Hope that helps,
    j

  • ACS v5.3 (user command line interface)

    Hello,
    We have lost the user/pass of command line interface of our ACS, but we can access by Web Interface with all the privileges.
    We are trying create one user from web interface for the command line interface, but I don´t find the manner of do it.
    I create one user in <system Administration < Accounts  with all roles, but this user doesn´t work in command line interface.
    Is possible to create one user for command line interface from web interface?
    Thanks

    Complete these steps to reset the CLI administrator account.
      1. Insert the ACS 5.x Recovery DVD into the DVD drive  of ACS.
       2. Reboot the ACS 5.x.
       The console displays:
       “Welcome to Cisco Secure ACS 5.1 Recovery - CSACS 1121”
       3. To boot from hard disk press
                    Available boot options:
    [1] Cisco Secure ACS 5.1 Installation (Keyboard/Monitor)
    [2] Cisco Secure ACS 5.1 Installation (Serial Console)
    [3] Reset Administrator Password (Keyboard/Monitor)
    [4] Reset Administrator Password (Serial Console)
    Boot from hard disk
    Please enter boot option and press .
    Boot:
      4. To reset the administrator password, at the system  prompt, enter 3 if you are using a keyboard and video 
           Monitor, or enter 4 if you are using a serial console  port.
      5. The console displays the name of all the  administrators configured on the ACS 5.x
    Admin username:
    [1]:david
    [2]:john 
    Enter number of admin for password recovery:
    6. Enter the number against the adminstrator username  of which you want to reset the password. For the user
        "david", enter 1 at the prompt.
    7. Enter the new password for the administrator account  and verify it. Enter Y to save the new password.
         Password:
         Verify password:
         Save change&reeboot? [Y/N]:
    8. Now, remove the ACS 5.x Recovery DVD and reboot the  ACS.

  • How to enable telemetry logs and where can i find the command line for sun

    Hi i tried creating the telemetry logs directory but the logs are not being populated. i created the following directory:-
    /opt/SUNWmsgsr/data/telemetry/imap/usersns1
    where usersns1 is the userid.
    Also pl. tell me where can i get the command list for sun one messaging server to use the command line utility to list, delete mailboxes. also can i search for all the mailboxes under one domain name. if yes then which command i have to use.
    thanks in advance.

    Hi,
    Hi i tried creating the telemetry logs directory but
    the logs are not being populated. i created the
    following directory:-
    /opt/SUNWmsgsr/data/telemetry/imap/usersns1
    where usersns1 is the userid.Make sure the permissions (ownership) on the user directory and the sub directory match those that messaging server uses - by default mailsrv:mail. This is the most common cause of the telemetry data not being created. The other thing to verify is that the user's account isn't stored as user@domain, otherwise you may need to create the directory as the entire user@domain (try both just to be sure).
    Also pl. tell me where can i get the command list
    for sun one messaging server to use the command line
    utility to list, delete mailboxes. also can i search
    for all the mailboxes under one domain name. if yes
    then which command i have to use.The Messaging Server reference guide is a good place to start (lists all the command-line utilities/flags and what-not):
    http://docs.sun.com/app/docs/doc/819-4429?l=en
    The mboxutil command is used to list/create/delete mailboxes and you can use a pattern to only list those mailboxes in a specific domain.
    Regards,
    Shane.
    thanks in advance.

  • At the start-up COMMAND-LINE interface ( :/ root# ) asking someting i don't

    *Please Help!!!*
    i was on the net at a safe website, then my computer froze couldn't use OptionControlEscape to close the browser or other apps; so restarted the computer by holding the power button, when it came back after a long wait A BLACK SCREEN WITH COMMANDS TO ENTER: later i found out it called COMMAND-LINE INTERFACE appeared asking:
    *DARWIN USER LOG IN:*
    PASSWORD:
    i didn't know what it was, i inadvertently, hit the RETURN key
    ever since i try to start the computer the same COMMAND-LINE written:
    :/root#
    What ever i did, couldn't pass this point, it keeps returning the same:
    :/root#
    I read and tryed to fix it by fsck by typing
    */sbin/fsck -fy*
    but had to type it after the :/root# which i couldn't get rit of it. And when i hit the return ket same :/root# line was returned to me...notjing was fixed.
    i can't find my system cd, so from the things i have read at the *apple support site*, i should be able to fix it by starting up in *SINGLE MODE* then using the COMMAND-LINE and typing */sbin/fsck -fy* and hitting the RETURN-KEY should repair the disk...but it can not get rit of the :/roor# line...it keps returning this:
    :/root#
    I KNOW I AM CLOSE TO FIXING IT, PLEASE HELP ME.
    THANK YOU SO MUCH.
    Message was edited by: ErikEren

    sHyLoCk wrote:Did you change your runlevel to 5 in inittab? Or are you starting kdm as a daemon?
    # /etc/inittab
    # Runlevels:
    # 0 Halt
    # 1(S) Single-user
    # 2 Not used
    # 3 Multi-user
    # 4 Not used
    # 5 X11
    # 6 Reboot
    ## Only one of the following two lines can be uncommented!
    # Boot to console
    #id:3:initdefault:
    # Boot to X11
    id:5:initdefault:
    rc::sysinit:/etc/rc.sysinit
    rs:S1:wait:/etc/rc.single
    rm:2345:wait:/etc/rc.multi
    rh:06:wait:/etc/rc.shutdown
    su:S:wait:/sbin/sulogin -p
    # -8 options fixes umlauts problem on login
    c1:2345:respawn:/sbin/agetty -8 38400 tty1 linux
    c2:2345:respawn:/sbin/agetty -8 38400 tty2 linux
    c3:2345:respawn:/sbin/agetty -8 38400 tty3 linux
    c4:2345:respawn:/sbin/agetty -8 38400 tty4 linux
    c5:2345:respawn:/sbin/agetty -8 38400 tty5 linux
    c6:2345:respawn:/sbin/agetty -8 38400 tty6 linux
    ca::ctrlaltdel:/sbin/shutdown -t3 -r now
    # Example lines for starting a login manager
    #x:5:respawn:/usr/bin/xdm -nodaemon
    #x:5:respawn:/usr/sbin/gdm -nodaemon
    x:5:respawn:/usr/bin/kdm -nodaemon
    #x:5:respawn:/usr/bin/slim >& /dev/null
    # End of file
    AEMONS=(syslog-ng hal network cpufreq crond alsa fam apcid)

  • Where do I find the Command-line Adobe AIR Developer Tool?

    Hi,
    Where do I find the Command-line Adobe AIR Developer Tool? (ADT)
    I downloaded the AIR 4 SDK, but can't find it.
    Thanks

    Yes, as Colin stated, FB / FlashPro calls it with app-xml and some other (device orientation, width, height etc) parameters.
    // chall3ng3r //

  • How do I edit the file where sites which I have typed in on the command line are stored? These are sites which I no onger use.

    At times I type in a site name on the command line which I want to visit. This goes into a file which is accessed by highlighting the triangle on the right side of command line. This file contains previous sites which were accessed in the past. How do I edit this file and and remove previous site URLs?

    Use these steps to remove saved (form) data from a drop down list:
    #Click the (empty) input field on the web page to open the drop down list
    #Highlight an entry in the drop down list
    #Press the Delete key (on Mac: Shift+Delete) to remove it.
    *http://kb.mozillazine.org/Deleting_autocomplete_entries
    *https://support.mozilla.com/kb/Clearing+Location+bar+history
    *https://support.mozilla.com/kb/Cannot+clear+Location+bar+history

  • How do I create a "command-line-interface" for a game?

    Hey people,
    For a game I need to make a DOS-like command-line-interface where the user has at least 3 options to answer with, does anyone know how to go about this?
    Hope someone here can help me out!
    Kind regards,
    Angela

    I'm not sure what part of this you are having difficulty with. Imagine for a moment that instead of asking for your end user to type something into a text-entry field and to monitor what they type (perhaps when the ENTER key is pressed), that instead you provide 3 buttons on your stage. Responding to a button press in this scenario is much the same as responding to typed user input - your movie does something based on user interaction. Going back to the user entered text scenario, a text or field sprite can detect the ENTER key being pressed and examine the string the user has entered, something like:
    on keyDown me
      if _key.keyCode = 36 then
        stopEvent
        sText = sprite(me.spriteNum).member.text
        case sText of
          "hack": -- do whatever you need to here
          "research":
          "wait":
          otherwise:
        end case
      else
        pass
      end if
    end

Maybe you are looking for

  • Aperture won't launch on 15" Retina MBP

    I recently moved to a Retina 15" MacbookPro. Installed Aperture (app store), and it worked fine with Lion. Upgraded to ML, and now Aperture won't launch. I read the thread having to do with a conflict with Final Cut Express. That's not me. No FCE (or

  • Server Inventory by PowerShell

    Hi, I'm gathering my server inventory and I'm using the PowerShell Command below; Get-ADComputer -Filter {OperatingSystem -Like "Windows *Server*"} -Property * | Format-Table Name,OperatingSystem,OperatingSystemServicePack -Wrap -Auto But I would lik

  • Set sales employee as inactive

    Hello, in SAP BO you can add sales employee, but can not be erased. Number of buyers is growing - when you create a document (invoice, ...) list of sales employees becomes confusing. We would welcome the possibility of setting sales employee as INACT

  • Lightroom 5.6 crashes when images with some color profiles are in import

    I am a recent subscriber to Adobe CC. I run LR 5.6 64bit on my Win 7 PC. Whenever I seek to import images previously processed in iPhoto or LR elements into my catalog, ACC Lightrom crashes. I suspect it is because the original editing program used a

  • DAQmx System -- DevNames doesn't detect PCI-5105

    Hi All, I am using the DAQmx System/DevNames property node to pull out all of the current hardware connected to the system and dynamically assigning device names to the s/w measurements/controls. This property node has worked fine up until now - when