Check In/Out doesn't work on network drive?

My company has used DW's check in/check out functionalities just fine for years, but before now the local copies of a site's files had been stored on each user's Mac's harddrive. I've been working on relocating those local copies to a single network drive that everyone can access so we're all working from the same local copies; most everything's going great except it looks like the check in/out functions are no longer working. It looks like the only indication I can see now in the FTP view is a green check on the remote files pane when something's checked out– the local copies don't show lock or check icons any longer.
Given that the only change has been moving the local files over to the network drive, I have to assume DW's check in/out (or at least however I have settings set now) doesn't play nice when the local files live on a network drive. Has anyone run into this issue, and is there a fix for it?
Thanks,
J

@Zabeth69:
Yep, a new site definition's been set up and I've double-checked that the "local files" setting is pointing to the shared network server as the new local folder.
@Nadia-P:
At first I didn't think that link had anything that I didn't already know, and then saw these two bullets:
•  The local root folder for this defined site must be on the local hard drive of a workstation.
•  Your local root folder should not be shared or on a mounted drive.
So in short, I suppose those answer my question, but they don't actually say *why* that is– it's hard to believe that the checking feature is limited to a literal local drive, and not a network drive. Seems odd. I'm going to poke around some more and try and figure out why that is, but I'd be grateful if anyone happens to know why in the meantime...
J

Similar Messages

  • Video out doesn't work anymore

    The video out doesn't work properly any more on my G4 12inch powerbook. It had been working fine, but now it doesn't work properly with either of the mini-vga adapters that came with my powerbook. When using the mini-vga to composite/s-video, the image appears on the tv but there is no colour and the picture isn't stable at any resolution over 800 x 600.
    When connecting to a monitor or projector using the mini-vga to VGA adapter, the image appears on the screen etc but the colour is completely wrong (everything is shades of green).
    I can't think of anything that might be the problem, though I did upgrade from 10.3 to 10.4 and I'm wondering is this might be the problem??
    Thanks.

    The video out doesn't work properly any more on my G4 12inch powerbook. It had been working fine, but now it doesn't work properly with either of the mini-vga adapters that came with my powerbook. When using the mini-vga to composite/s-video, the image appears on the tv but there is no colour and the picture isn't stable at any resolution over 800 x 600.
    When connecting to a monitor or projector using the mini-vga to VGA adapter, the image appears on the screen etc but the colour is completely wrong (everything is shades of green).
    I can't think of anything that might be the problem, though I did upgrade from 10.3 to 10.4 and I'm wondering is this might be the problem??
    Thanks.

  • Hi, can someone please tell me why the spell check in pages doesn't work. I went to preferences and enabled this auto spell checker and have set the language to british english. But still it doesn't work while it works perfectly in TextEdit.

    Hi, can someone please tell me why the spell check in pages doesn't work. I went to preferences and enabled this auto spell checker and have set the language to british english. But still it doesn't work while it works perfectly in TextEdit.

    Inspector > Text > More > Language
    Only applies to selected text, like making it a particular font.
    It is not a setting that sticks. If you continue to paste in text from elsewhere particularly the Internet it will have a different or None language set to it. You need to select it and make it B.E.
    Peter

  • Alt + mouse scroll (Zoom-In/Out) doesn't work. [was: Why it doesn't work in Illustrator?]

    Alt + mouse scroll (Zoom-In/Out) doesn't work in my illustrator program.
    What should I do?

    It is a know issue, no solution for the moment.
    But Adobe is working on this see here-> http://forums.adobe.com/message/5423070#5423070

  • Mac connects to wifi, but internet doesn't work. Network diagnostics shows problem starts at ISP. All software is updated and all other devices are able to effectively use the wifi source.

    Mac connects to wifi, but internet doesn't work. Network diagnostics shows problem starts at ISP. All software is updated and all other devices are able to effectively use the wifi source.

    Hi, KK93. 
    Sometimes a simple power cycle of the router and Mac can resolve the issue.  However, try the steps in the article below to troubleshoot the Wi-Fi issue with your MacBook.
    Troubleshooting Wi-Fi issues in OS X
    http://support.apple.com/kb/HT4628
    Also, see the article below to make sure the router setting have been optimized for performance.
    iOS and OS X: Recommended settings for Wi-Fi routers and access points
    http://support.apple.com/kb/HT4199
    Cheers,
    Jason

  • TM works with network drives?

    Just to be sure - TM works with directly attached drives. But does it also work with network drives? I hope it does at least with Apples newest update.
    Thanks
    Andreas

    There is plenty of documentation/discussion of a workaround that let's you make your computer recognize unsupported drives. Search for it using words like terminal network unsupported drive backup and you will find it. Some people say it works fine, and others caution against using it. I haven't seen a thorough discussion that really explains why Apple doesn't allow it, or why it's risky, or why it works, but that's typical of the boards that attract a techie crowd. Me? After spending $650 for a Terastation, I'm going to give it a try. Apple wants so badly for Windows users to switch to Mac, but they sometimes seem to make it very difficult and frustrating for us.

  • Website doesn't work for downloading driver software

    http://support.hp.com/us-en/product/HP-Officejet-Pro-8600-Plus-e-All-in-One-Printer-series---N911/43... doesn't work for downloading driver software, the link to your page sends me here and it just hangs

    Suz1st wrote:
    I also had download issues re: with getting a newer driver version.
    I have an HP Photosmart Premium (All-in-One_ model c309g-m )
    can you send me a link for that driver?
    What operating system? ForXP, Vista or Windows 7 download the latest software from the link here.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • FileLock Doesn't Work Across Network

    I have found a case in which FileLock doesn't work. I'm trying to use FileLock to prevent two instances of the same process to run simultaneously on different machines (or the same machine) on the network. I actually saw two processes, one on each of two Linux machines obtain a lock on the same file at the same time.
    Can I be sure that FileLock is calling fcntl and not flock (which wouldn't work over the network)?
    Is there any way to fix this or get around it??
    Here is the relevant code:
    try{
         File lockFile = new File(getLockFilename());
         lockFile.createNewFile();  // Throw out the boolean return value; it doesn't matter if this succeeded.
         FileChannel fc = new FileOutputStream(lockFile).getChannel();
         fileLock = fc.lock();
    catch (FileLockInterruptionException flie){
         // Allow this one.
    catch (IOException ioe){
            // Report the exception, release the lock if obtained and exit.
    // Code executed while the file is locked includes setting up and registering an RMI server object.
    try{
         fileLock.release();
    catch (IOException ioe){
         logger.warn("Unable to relase file lock:  " + ioe.getClass().getName() + ":  " + ioe.getMessage());
    }

    I suppose when you say "across network", you mean via
    nfs?Yes.
    Have each machine check some central point (or all
    other nodes) for the existence of a server. Of course
    there could be some synchronization problems, so you
    might check several times. Even if the remote
    interface is successfully exported, have it check one
    final time to ensure. To be paranoid, you could have
    it check often.We have a strong requirement not to have a central server, which has made coding this a headache. It would be pretty unacceptable to query every machine on our network (most of which probably aren't running any related process at any one time and are probably running other jobs) any time someone wants to start one of these processes on any machine. (There could be hundreds of these processes running at once with different parameters; it's just that no two with the same parameters are allowed to run at once. Each of these will act as a separate RMI server so other processes can communicate with the running process for other purposes besides just determining whether it is running.) A registry can only contain objects on one machine, right? Or can I somehow bind everything on the same host even though that's not where the objects are?? I am already writing the name of the successful host for one parameter set to a file and barring other processes with the same parameters from executing if looking up the process on that host succeeds. This works in most cases, but there is a race condition if two processes start around the same time and both read the file before either has written its host name there. That's why I'm trying to use a file lock on a different file so the read-bind-write sequence happens while the file is locked.

  • 5.1 rear out doesn't work, but line out and front stereo does

    I got my new HP Pavilion p6-2440el Desktop today, but when I tried to plug my 5.1 audo to it (the one with the 3 jacks)  it turned out that the 5.1 audio doesn't work, and the Windows'es "playback devices" panel lists the "IDT High definition audio" as not plugged. Sticking any jack to the front or into the line out in the rear changes it to plugged, but obviously with the stereo sound only. I even tried to download the more recent audio driver (found it in google, 6.10.6486.0, the one I got from the Windows update had a lower version) but it's still the same. Any idea how I can fix it? Thanks.

    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial computer. You can do this at http://h30499.www3.hp.com/hpeb/ .
    I hope this helps.
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Finder sidebar doesn't work for networking?

    Does anybody else find that the sidebar in finder doesn't work when you network your computer to a pc network? I SEE the file servers when I click on "all" but when I double click on one of them it always says "connection failed". The only way I can access the network is to go to "Go" then "connect to server" then type in smb://ipaddress and have the server directly mounted to desktop (after changing finder preferences to show mounted volumes on desktop). Does the finder sidebar just not work then in leopard or am I doing something wrong?

    When you click on it, it will try and log on as user guest with no password. This will nearly always fail on a windows box.
    top right of the window pain there should then appear an option to 'connect as', click this and type in a valid username and password. Tick the box to add it to your keychain and it should then always connect when you click on the sidebar.

  • Print-to-tape from in to out doesn't work

    Hi everybody, I've a 1h45 project and I want to save a copy on a dv tape. I've to cut it in two part in order to print on 2 tapes.
    My problem is that when I set "in to out" it doesn't work, despite of that, when I set "entire project" it works !!!
    steve

    Try it using the Edit to Tape function. Set in and out points and "edit" it to the tape using a bit of black on the head of the tape so you can set an in point on the tape.
    Jerry

  • Check-in/out files only works some of the time

    My office recently upgraded to CS6 from CS5.5. I am able to connect to the web server successfully and can sometimes check in and check out a file without problems but most of the time I keep getting an error message that the file activity is incomplete. It says I am connected to the server but "An FTP error occurred--cannot put (name of file). Access denied. The file may not exist, or there could be a permission problem. Make sure you proper authorization on the server and the server is properly configured." I have also gotten the message "553 permission denied."
    I have noticed that when I take out what I have in the root directory and leave it blank it works. However, I have to have something in the root directory first, try to check in or out a file, and then take it out in order for it to work; I cannot leave the root directory field blank at all times or else I get an error message. Is there a work around so that I do not have to keep editing the site root directory every time? Any suggestions would be greatly appreciated.

    Thank you for your reply. There are three of us that use Dreamweaver and they are unable to check-in/out with CS6. They are using our older version of Dreamweaver with no problems. The settings were given to me by my IT department. Dreamweaver is not supported by IT and they cannot offer me any additional help. I saw in another discussion to take out the first / in the root directory but it is needed in order me to successfully connect to the server. WinSCP is used for FTP. Please let me know if you need additional information. I really appreciate the help.

  • Tecra 9100: Headphones out doesn't work

    at my Tecra 9100, the Headphones connector doesn't work. The internal speaker do well. If i plug in headphones or external speakers, the internals are being switched off, but at the external devices i can't hear anything.
    My soundcard generally works, i thought there could be a chance to fix this just by dis- and reconnection the wire/board from the front connectors to the sound board ... but i've never done any technichal stuff at a Tecra, so it would be nice if someone could give me some input how and where i would have to open it, and if this is even a chance to fix my problem.

    Hi
    According to your problem description I presume that Audio headphone port is defective. There is small switch that switch between internal and external speakers.
    I have the same unit and it works well on my unit. I am afraid that you must contact service partner and check this mechanical connector.
    Bye

  • I can connect to my work server via vpn but cannot seem to figure out how to map the network drives on the iMac. Any thoughts?

    Wish to map network drives on the iMac. Any thoughts?

    For some reason, the error box photo didn't appear in my post. Here it is:

  • Canon mini Disk camera doesn't work if external drive connected

    A long story.      Anyway, I have a MacPro Intel Dual Core 266 Ghz with 5 Gbs RAM,  4 internal hard drives HD1~HD4 (HD1 OSX 250 and three 500Gb) and two external HD5 (two partitions~HD5 & Time Machine Backups) and HD6 (1 Tb each).
    I've been using a Canon mini DV video camera FV-M10 (Firewire 400) for live video (Skype/iChat) and also for importing video into Final Cut Express, After Effects or iMovie up until a few days ago.  Both "live" video and from the recorded mini cassette tape.  Then all of a sudden not one of the software recognized my camera anymore.  I tried both Firewire 800/400 and USB2 connections using a few different cables. In Skype...(sometimes) it automatically shows the name FV-M10 in the camera slot, but the screen is black.  No, I checked if I left the cover on.  I checked my Sony WX-5 digital camera and see if that is recognized.  Yes, both pics and AVCHD videos are seen using the USB connection. 
    The problem started like this.
    I was downloading a file.  Had to work for an hour and when I came back upstairs.  I noticed that the screen was frozen.   So, I shut the Mac down.  And when I started it again, well nothing happened except for a grey screen.  A half~sized cursor was stuck up in the top left.  But, my mouse also had a cursor which was movable.  
    It wouldn't even recognize the OSX Install Disk holding down "C" or "Option".  Only starting with "Shift" held down, "Safe Boot"  could I use the basics like Mail, Safari, Firefox.   NO sound and no video. Tried a few times as well as cleaned my OSX HD1 hard drive and re-installed from "Safe Boot" mode".   So, I had it sent into Apple Tokyo for repairs.   Apple put in a new board.     Great!      I came it back in two days.   I cleaned the OSX hard drive and re-installed Mac OSX with the up-dates as well and got some of my main backed up stuff Mail, bookmarks, address book etc.   It started fine.     But, when I went to use Skype, iChat, iMovie or Final Cut Express  they still couldn't recognize my camera.  I had been using the Canon FV M10 camera for a few years with both external hard drives on.  There were never any problems until just before I sent it into the shop.
    There was only one way to use my camera.  Un-Plug the external HD6.  Then the camera functions fine.  but remember I had been using this camera with both HD's for around two years without any problems.
    Notes on symptoms:  and what actions I took.  
    Front connections: FW400 Canon camera.  FW800 (Tried connecting HD6)  
    Rear Connections: USB2 1) MidiMan 2 x2   2) mouse  3) Canon Printer
                                   FW400 HD5  FW800 (tried HD6)
    With HD6 Connected.
    iMovie 11 9.02 : Start iMovie  O.K.  No camera on.   Turned camera "on" then "No Camera Connected" notice came up.   (did this a few times)   Turned camera off.   Quit iMovie. 
    2nd start:  Camera On.   iMovie freezes.   Spinning Colored beach ball.   I then Force Quit Option-Apple-ESC
    iMovie shows (not responding)  When I turn off the camera.  (not responding) disappears and iMovie is working again.  But, "No Camera Connected" shows again.  Quit!
    Un-Plugged (Ejected) HD6.
    When I un-plugged HD6,    (tried both the front and rear connections).   iMovie still on.  
    "No Camera Connected"  I Quit iMovie.
    Re-start iMovie:  Camera on… Live video and record miniDV tape can both be seen. 
    Skype:  Both live video and mini DV tape recording even plays back over Skype screen.
    iChat (same as Skype) O.K.
    Since Apple replaced the board 661-3932 Card Video, NVIDIA GeForce 7300 GT which cost just about $X00.00  (¥XX,000).   I assume that they don't also check all the connections etc. I mean from the connector to the video board.
    The call to Apple Tokyo today.  
    Just talked to Apple (Mac) Tokyo about my computer problem.  Seems like they're trying to squeeze their way of more repairs by saying I have a hard drive configuration problem.   But it doesn't seem like that!   I worked with it 2~3 hours today...and  here is the basic problem.
    I've used the Canon FV M10 mini DV camera with Skype, iChat, iMovie and FCEx for few  years  (HD6) is over a year old-the most recent add on) with no problem.    With both external 1Tb hard drives.  And Apple said that it's a 3-party problem.  (different makers etc.)  But, it's NOT!     Yes, they put in a new board.   But, I'd say the problem is from the connection (where I plug the cable into the Mac)  to the board. 
    When I connect HD6 (1Tb ext hard drive).   FW 800 (either back or front connection) the video camera doesn't work in  Skype, iChat, iMovie, or Final Cut Express.     If I eject and Un-Plug HD6  all of them work fine.  The camera "live" or the camera playing back the mini DV tape video.
    Wouldn't this be a problem between the connections (front & back) to the new video board?  Or does anyone have an answer.   Apple seems to have said, "We can't help you".   Please someone help!  thanks

    +My mini isn't responding to startup commands like "C" or "D" from the keyboard.+
    You'll need a wired usb keyboard for these commands to work -- and the Apple Aluminum keyboard won't work either.
    But just about any PC usb keyboard will work. Alt maps to Option and Win-key to CMD.

Maybe you are looking for

  • How to disable annoying "Press Esc to exit fullscreen" message?

    Hi, every time I watch flash videos and go fullscreen, I see this annoing message in the center of the screen that blocks what I want to see in the first place. Is there any way to disable it permanently? There was a hex fix for this for older versio

  • Need help on forms

    Hello , I wanted some help with form6i error messages. I wanted to define form6i error messages within database. And include severity (information, warning, error, or fatal),summary and detail information with variable text substitution ,common error

  • Blue thin line

    I have a 2007 20" iMac.  Recently just reinstalled Lion and had a thin, blue, vertical line on the left side of the display appear.  Wasn't there before upgrading from Snow Leopard.  If you look closely, you can see it flickers.  It's not too noticea

  • Transient entity attributes and clearing cache

    I have an entity with both queriable and transient attributes. One of the transient attributes uses the persistent primary key of the entity object as well as an attributes retrieved from another entity via an association in order to execute a Callab

  • Error when sending HTML format mail from Oracle 9i forms

    Dear All, i have created one procedure with 15 in parameter by which i can send mail in HTML format. due to length problem i am using 15 parameter, every parameter has length 32767, i am splitting HTML coding after every parameter length fulfilled wh