Unable to edit .vsdx visio file that is inside a document library using visio 2010 sp2

I have Visio 2010 SP2 installed locally inside my machine. The current version can open vsdx files by doing some conversions. I got the following scenario inside my SharePoint server 2013:-
Currently I have Visio file (with .vsdx extension) uploaded to my SharePoint 2013 document library.
If I click on the Visio file I got the following dialog.
I select “Edit”, click on ok.
Then the visio 2010 application will convert the current file and open it locally inside my machine.
But the opened file will have it name as “Copy (1) of ….”, as follow:-
So if I do some changes to the Visio file and I click on save I will not be able to save my changes back to the SharePoint server’s document library. Now if I do the same steps for a .vsd file not .vsdx then I can directly open the Visio file (without any
conversion process) and I will be able to save my changes back to SharePoint server.
So can anyone advice how to be able to edit .vsdx files which are uploaded to SharePoint document library using visio 2010 SP2 ?
Thanks

Thank you for your ideas.
After that last posting, but before your response, I asked them to add the local farm to their trusted sites zone. Several blogs I had encountered while searching had listed that as something they had tried.
As soon as they added the site to their trusted site zone, the problems went away.
It was definitely not all users - I only had 2 people directly contact me about the issue.
I never got a chance to ask them about other SharePoint sites - they were working on the sites where they spent most of their time - I don't know if they had other sites.
The old location and the new location of these 2 sites are in the same site collection - it was moving them from
http://myfarm/sites/div/dept67/site1
to
http://myfarm/sites/div/dept64/site1
basically (with the actual names changed to protect my job).
The site collection is /sites/div . So the site collection features are the same.
I suppose that the site features could have changed between the export and the import - but since things are working now and I didn't change any features, I don't think that it is.
At this point, things appear to be working. However strange that seems to me.

Similar Messages

  • How do i edit a PDF file that was sent to me in an email?

    How do i edit a PDF file that was sent to me in an email?

    Depends on the extent of the edits. You will need Acrobat in any case. If the edits or minor, you can use the text edit tool. For major edits, you need to request the original file be sent or see if you can Save As a DOC or related file type. PDFs are not really structured for editing and you are asking for a lot of grief if you want to do much. Exporting is the best way, or even better simply asking the author for the original (non-PDF type).

  • Hi I need help ..I do not know how to edit a pdf file that I scanned in,

    Hi I need help ..I do not know how to edit a pdf file that I scanned in, will someone please tell me what I should do PLEASE HELP

    What program are you using?  If it is just Adobe Reader you can not edit.
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • 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

  • Download older version of a file from SharePoint Document Library using CSOM and 404 error

    Hi,
    I am trying to download previous versions including Major and Minor versions of documents from SharePoint Online using CSOM. I get 404 error when I try to download the file. I found several posts on various discussion forums where people are getting same
    error but none of those have any solution/answer. Below is one of the threads and sample code I have tried that results in 404 error. If I use the link in browser directly, I am able to download the file. Also I am able to download the current version of file
    using CSOM without any problem, it is only the older versions that give me 404 in CSOM.
    http://qandasys.info/how-to-download-the-historical-file-version-content-using-csom/
    public int GetStreamFromFile(string docid, string lib, string fileurl, ClientContext clientContext, int iuserid, string Version, bool isCurrrent)
    if(!isCurrent)
    List LibraryName = clientContext.Web.Lists.GetByTitle(lib);
    clientContext.Load(LibraryName);
    clientContext.ExecuteQuery();
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml = "" + fileurl +
    Microsoft.SharePoint.Client.ListItemCollection collListItem = LibraryName.GetItems(camlQuery);
    clientContext.Load(collListItem, items => items.Include(item => item.Id, item => item["FileLeafRef"], item => item["LinkFilename"],
    item => item["FileRef"], item => item["File_x0020_Size"], item => item["DocIcon"], item => item.File.Versions));
    //clientContext.Load(collListItem);
    clientContext.ExecuteQuery();
    foreach (Microsoft.SharePoint.Client.ListItem oListItem in collListItem)
    //string fileurl1 = (string)oListItem["FileRef"];
    //string filename = (string)oListItem["LinkFilename"];
    foreach (FileVersion version in oListItem.File.Versions)
    if (Version == version.VersionLabel)
    //Added excutequery to get object one more time as per blog
    //http://social.technet.microsoft.com/Forums/de-DE/sharepointdevelopmentprevious/thread/88a05256-8694-4e40-863d-6c77512e079b
    clientContext.ExecuteQuery();
    FileInformation fileInformation = ClientOM.File.OpenBinaryDirect(clientContext,version.Url);
    bytesarr = ReadFully(fileInformation.Stream);
    Darwaish

    Hi,
    According to your description,
    I know you want to get older version of a file from SharePoint Document Library using Client Object Model.
    The following code snippet for your reference:
    public void GetVersions()
    ClientContext clientContext = new ClientContext(“http://SPSite”);
    Web site = clientContext.Web;
    clientContext.Load(site);
    clientContext.ExecuteQuery();
    File file = site.GetFileByServerRelativeUrl(“/Shared Documents/mydocument.doc”);
    clientContext.Load(file);
    clientContext.ExecuteQuery();
    ListItem currentItem = file.ListItemAllFields;
    clientContext.Load(currentItem);
    clientContext.ExecuteQuery();
    FileVersionCollection versions = file.Versions;
    clientContext.Load(versions);
    clientContext.ExecuteQuery();
    if (versions != null)
    foreach(FileVersion _version in versions)
    Console.WriteLine(“Version : {0}”,_version.VersionLabel);
    More information:
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.file.versions.aspx
    Best Regards,
    Dennis Guo

  • C#/REST Getting files in a document library using Internal Name

    Hi Folks,
    I need to get a list of files in a SP2010 and SP2013 document library using the REST API - this is occurring inside a timer service application so am using C#.  As a constraint I need to use the internal names for the document libraries - primarily
    because users tend to change the display name and this is an automated service.
    When I make a call to _api/web/GetFolderByServerRealitveUrl('/Shared Documents')/Files  I get a bunch of XML but how do I get just a list of filename+ext.   I am using Xdocument (LINQ to XML). I need to retrieve the name property in the
    contents sub element for all files returned.
    Second question, how to I change this to use the internal name '/Document' instead of '/Shared Document', so that it copes with users changing the display name of document libraries.
    Regards
    Andy

    Hi Andy,
    1.For your issue, you can refer to the code as below:
    using System.Xml;
    namespace REST_XML_LIST_GET
    class Program
    static XmlNamespaceManager xmlnspm = new XmlNamespaceManager(new NameTable());
    static Uri sharepointUrl = new Uri("Site URL/");
    static void Main(string[] args)
    xmlnspm.AddNamespace("atom", "http://www.w3.org/2005/Atom");
    xmlnspm.AddNamespace("d", "http://schemas.microsoft.com/ado/2007/08/dataservices");
    xmlnspm.AddNamespace("m", "http://schemas.microsoft.com/ado/2007/08/dataservices/metadata");
    NetworkCredential cred = new System.Net.NetworkCredential("username", password", "domain");
    HttpWebRequest listRequest = (HttpWebRequest)HttpWebRequest.Create(sharepointUrl.ToString() + "_api/Web/lists/getByTitle('List Name')/items");
    listRequest.Method = "GET";
    listRequest.Accept = "application/atom+xml";
    listRequest.ContentType = "application/atom+xml;type=entry";
    listRequest.Credentials = cred;
    HttpWebResponse listResponse = (HttpWebResponse)listRequest.GetResponse();
    StreamReader listReader = new StreamReader(listResponse.GetResponseStream());
    var listXml = new XmlDocument();
    listXml.LoadXml(listReader.ReadToEnd());
    //Method 1 Seperate node list
    var titleList = listXml.SelectNodes("//atom:entry/atom:content/m:properties/d:Title", xmlnspm);
    var idList = listXml.SelectNodes("//atom:entry/atom:content/m:properties/d:ID", xmlnspm);
    int i = 0;
    foreach (XmlNode title in titleList)
    Console.WriteLine(title.InnerXml+" "+idList[i++].InnerXml);
    //Method 2 single node list
    var prop = listXml.SelectNodes("//atom:entry/atom:content/m:properties", xmlnspm);
    foreach (XmlNode ndlist in prop)
    Console.WriteLine(ndlist.SelectSingleNode("d:Title", xmlnspm).InnerXml + " " + ndlist.SelectSingleNode("d:ID", xmlnspm).InnerXml);
    Console.ReadLine();
    2. For a workaround, you can get the display name based on the internal name and use the display name in the Rest API.
    Reference:
    http://www.c-sharpcorner.com/UploadFile/Roji.Joy/working-with-sharepoint-2013-rest-api-in-a-C-Sharp-managed-code/
    https://dlr2008.wordpress.com/2013/11/14/sharepoint-2013-rest-api-the-c-connection-part-4-document-libraries-folders-and-files/
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Eric Tao
    TechNet Community Support

  • How to update managed metadata column for all file in document library using powershell

    Hi,
    How to update managed metadata column for all file in document library using powershell?
    Any help on it.
    Thanks & REgards
    Poomani Sankaran

    Hi TanPart,
    I have changed the code which you have give in order to get the files from SharePoint 2010 Foundation  Document Library.But i am getting below error in powershell.
    Property 'ListItemCollectionPosition' cannot be found on this object; make sure it exists and is settable.
    Could you tell me which is the issues in it?
    See the code below.
    $web = Get-SPWeb http://ntmoss2010:9090/Site
    $list = $web.Lists["DocLib"]
    $query = New-Object Microsoft.SharePoint.SPQuery
    $query.ViewAttributes = "Scope='Recursive'";
    $query.RowLimit = 2000
    $caml = '<Where><Contains><FieldRef Name="Title" /><Value Type="Text">Process Documents/Delivery</Value></Contains></Where>' +
            '<OrderBy Override="TRUE"><FieldRef Name="ID"/></OrderBy>'
    $query.Query = $caml
    do
        $listItems = $list.GetItems($query)
        $spQuery.ListItemCollectionPosition = $listItems.ListItemCollectionPosition
        foreach($item in $listItems)
            #Cast to SPListItem to avoid ambiguous overload error
            $spItem = [Microsoft.SharePoint.SPListItem]$item;
            Write-Host $spItem.Title       
    while ($spQuery.ListItemCollectionPosition -ne $null)
    Thanks & Regards
    Poomani Sankaran

  • 2GB of video file upload to SharePoint 2013 document library

    Hi All,
    We have a requirement of uploading a 2GB of video file to a SharePoint 2013 document library. Will there be any issue due to increasing the maximum file size?
    Many Thanks,
    sudesh withanage

    It will be better if you save all your videos at one location,i.e Asset Library.Check the link for Asset libraries
    http://technet.microsoft.com/en-us/library/ee414275(v=office.15).aspx
    In case you want to add other files (i,e excel ,word) along with videos you will need to increase library size,
    Check the following link to increase the file size ,as well as the issues and workaround to solve the problems
    http://blogs.technet.com/b/praveenh/archive/2012/11/16/issues-with-uploading-large-documents-on-document-library-wss-3-0-amp-moss-2007.aspx
    Please Mark it as answer if this reply helps you in resolving the issue,It will help other users facing similar problem

  • Need to edit a Captivate file that won't open. Can the SWF be edited?

    We are currently using Adobe eLearning Suite 2 (Cp5).
    We have 2 older Captivate files (Cp 3 or 4) that will not open; they act like they're opening but eventually they just time out without the error message that you normally get with a corrupt file.
    So all we have access to are the SWFs & zip files that were uploaded into our LMS.
    We are switching to a different LMS and need to quickly make an edit to these files before they are uploaded to the new LMS.
    Is it possible to edit the SWF (delete about 30 seconds of content off the end of each file) and still have them function as far as registering completion? And if so, what program would I need?

    Sorry, but only Adobe can speculate as to why the older files refuse to open in the newer version. Phase of the moon? Jupiter aligning with Mars while the house of the Moon is in retrograde?
    Personally, I'm going with the Mass Coronal Ejection theory!
    Assuming there is really no interaction going on, you *MIGHT* be able to fudge things to get that last 30 seconds to go away by playing the SWF and using Captivate to record the SWF as it plays.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • How do I edit a PDF file that was created with Acrobat 6

    I was given a PDF catalog file from one of my manufactures to use on my web  site, I was told that I need to edit the file and take out the last page which  is for my eyes only not the public, but the way they instructed me to do so has  not worked, so does anybody have an idea on how to do this?
    Also they have tried to  send me a corrected file with the last page removed but the file size is to big  to be sent through email. Any help would be great. Thank You

    dgnvarsitydad I think you are posting in the wrong thread.
    hauptinc wrote:
    Ok thank you I will try this but how will I know if there is a security set and also my mistake what I downloaded was Acrobat X Pro which is $200 from Adobe's web site. I am not very familiar with Acrobat but I will give it a try thank you again. Gary
    To see if there is security, open the document, go to File>Properties>Security. It will tell you what is allowed and what is not allowed.
    Keep in mind that Acrobat Pro is not $200 unless you have a qualifying older version to upgrade from. If not, it's more like $449.

  • How can I edit a pdf file that was imported?

    I want to edit a pdf/jpeg file that I imported/placed in AI?  Can that be done?

    Steven,
    Illy just sees a bunch of pixels as do the rest of us.
    You may use Image/Live Trace with suitable settings, expand, and let her work with the resulting vector artwork.
    Or you may draw a (set of path(s) round the part(s) you want to keep (turning htem into a compound path in case of multiple paths, then select everything and Object>Clipping Mask>Make. That will only hide the outlying parts (unless you do the destructive deed), and you only have limited ways of (further) editing.
    Or you may work in Photoshop or similar.

  • Unable to Edit Imported Jpeg files.

    I'm currently using iPhoto 9.6 and OS 10.10.   I have created jpg stills from .mov projects using QT Pro and imported them successfully into a previous version of iPhoto where I was able to crop them and make rudimentary color and exposure adjustments.  With the new iPhoto 9.6 I cannot.  I get an error message "Image Cannot Be Edited.  The original format is not supported."
    So I am assuming the only way to edit these imported jpegs is to open them in Lightroom or Photoshop make my adjustments and then attempt to re-import them into iPhoto or maybe just stop using iPhoto all together for this kind of file?

    Yes "master" copies of files - those located in the iPhoto >>package contents >> Masters folder organized by import date - once they have been edited from within iPhoto (exposure corrections, cropping, straightening, etc) become the master copies.
    Bewilderingly vague. They are the masters. They are never edited. The photos are edited and the results recorded in the SQL database. The never "become the Master copies". They are the Masters and never become anything.
    To prove this I have selected a master file from with this directory and created a copy of it on the desktop where I gave it a new name, then re-imported it to iPhoto and re-opened it there.  It is a virtual clone of the original edited file - edited from within iPhoto save for its name - an "edited master". 
    If you made a copy of a Master then it's not a virtual clone it's an actual clone. "It is a virtual clone of the original edited file" Huh? What's an "original edited file"? It's a Master or something else? Which is it? There is no concept in iPhoto of 'edited Master'. There are Masters. That's the file as imported from your camera. It is never edited. End of story.
    Subsequently from within iPhoto I have chosen the original photo - the one that had been modified to begin with - and reverted this file to its original version.  So then I had two masters of the same shot - one edited and one in its originally imported state.  Why did I do this (and originate this post)?
    No you didn't. You had two masters to begin with and thereafter you had two masters at the end. When you reverted to original all you did was delete the edit decisions for the database and destroy a preview. In no case was the Master touched.
    The terminology is important because it explains how the app works. You're conflating photos (which are edited in iPhoto) with files (which are never edited in iPhoto), all photo edits are virtual until baked in on export. That's why the concept and the term Master is important. Edited Master means nothing, Master of an Edited Photo does, but that's a different thing.
    Because I could not re-edit or export these affected photos unless I first re-imported them to iPhoto by either locating the original files from storage media or making copies of them from iPhoto's package contents>>masters folder as above and importing them back into the iPhoto library.  Once I did this - there were a lot of these affected files - I could edit and export to my heart's content.  Remember, these files were modified from within earlier versions iPhoto itself.  Yes, some files had been converted to jpegs from original PICT exports out QT Pro using Photoshop Elements.
    Because your database was corrupted. It has nothing to do with Masters/Versions or anything else. It was broken.
    How do I explain this apparent corruption of the iPhoto library database?  Disclaimers to the contrary, I put the onus on having to convert the db every time there is an app iteration which is sometimes coupled with an OS upgrade (like with Yosemite).  I suspect that the file metadata is susceptible to corruption during these upgrades.  It is the only variable in an otherwise static and stable environment that could possibly result in library corruption short of hardware failure.
    That's one possibility. Here are some more: anytime the app is interrupted writing to the database - by a crash, hang or even a power surge, bad blocks on a disk - there are many possibilities..
    And again, there is no need to convert the db "every time there is an app iteration". There are updates when it is not necessary. And, as I keep on saying, OS upgrades make no difference. It's app upgrades only.

  • Unable to edit old versioned file in KM

    Hi,
    I have a requirement wherein I need to edit older versioned file in KM programatically. I have got the older version file but I am not able to edit it and it gives an error; "*this collection does not support workspace creation".
    Supopse, I have versioning enabled on /documents/Public documents/test folder programatically. I created new version of a file say test.txt in it through code. This much is working fine. But, editing of older versioned file is creating problem. I used the below code:
    IVersionHistory iVersHistory = fileResource.getVersionHistory(); // fileResource refers to test.txt
    wdComponentAPI.getMessageManager().reportSuccess("IVersionHistory SIZE: " +iVersHistory.size());
    IResource resourceElement = null;
    name=fileResource.getName();
    IResource R1v5VCR=null;
    for(int i=0; i < iVersHistory.size(); i++)
      resourceElement = iVersHistory.get(i);
      list.add(resourceElement);
      if(resourceElement.getName().equalsIgnoreCase("test(3).txt"))
        //resourceElement.setAsCurrentVersion();
       ICollection collection = folder; // refers to /documents/Public documents/test folder
       wdComponentAPI.getMessageManager().reportSuccess("Reached "+collection.getRID());
       if( collection.isA(IExtendedCollection.class) )
         wdComponentAPI.getMessageManager().reportSuccess(" extending ");
         IExtendedCollection extendedCollection = (IExtendedCollection)collection.as(IExtendedCollection.class); 
         ICollection workspace = extendedCollection.createWorkspace("myworkspace", null); ---> Error on this line
         wdComponentAPI.getMessageManager().reportSuccess("Created test folder workspace ");
         IExtendedCollection Wa = (IExtendedCollection)workspace.createCollection("test",null).as(IExtendedCollection.class);
         R1v5VCR = Wa.createVersionControlledResource(resourceElement.getRID(), resourceElement.getName(),null);
         wdComponentAPI.getMessageManager().reportSuccess("Created New versioned resource ");
        // more code but unreachable code
    For editing a revision resource (i.e older version file), we have to create workspace on extendedCollection.
    I went through this URL: [http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/com.sap.km.cm.docs/library/netweaver/netweaver-developers-guide-2004s/NetWeaverDevelopersGuide2004s_Documents/KM_articles_new/howto/rf/client_api/rf_client_api_sdn.html|http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/com.sap.km.cm.docs/library/netweaver/netweaver-developers-guide-2004s/NetWeaverDevelopersGuide2004s_Documents/KM_articles_new/howto/rf/client_api/rf_client_api_sdn.html]
    Let me know if you have any solution or suggestion in this context.
    Thanks,
    Udit

    Hi Julian,
    Tjanks for the reply. But I already moved with that approach. I was finally able to create the workspace and a new versioned resource inside the workspace. But I get a new error on checkout of the resource: "subsequent checkin is expected to cause a fork!"
    Below is the code snippet used:
    IResource R1v5VCR=null;
    IResource resourceElement = iVersHistory.get(5); // file(5).txt is coming properly
    IResourceMetadata resourceMetadata=(IResourceMetadata)resource.as(IResourceMetadata.class);
    IRidSet ridSet=resourceMetadata.getWorkspaceCollectionSet();
    IRidIterator iter=ridSet.iterator();
    RID workRID=null;
    while(iter.hasNext()){
    workRID=iter.next();}
    ICollection newWorkSpace=(ICollection)ResourceFactory.getInstance().getResource(workRID,resourceContext);
    wdComponentAPI.getMessageManager().reportSuccess("Created folder workspace ");
    IExtendedCollection Wa =(IExtendedCollection)newWorkSpace.createCollection("test",null).as(IExtendedCollection.class);
    R1v5VCR = Wa.createVersionControlledResource(resourceElement.getRID(),resourceElement.getName(),null);
    R1v5VCR.checkOut(); --> Error on this line
    So, this issue is taking time now and I want to resolve it soon.
    Regards,
    Udit

  • WEBSITE NOT REFLECTING EDITS OF HTML FILE THAT WAYS SUCCESSFULLY "PUT" TO REMOTE SERVER

    Help!  I'm hoping there is a simple reason why I can't get my simple edits to reflect on the website.Here is what I have done/tried:
    1. opened and added one simple line of text (with one link to a pdf) to one page of the pre-exisitng site.
    2. checked both properties and code to make sure everything matched the preceding, similar line of text
    3. connected successfully to remote site through dreamweaver
    4. tried both "putting" and synchronizing the file (along with dependent files)
    5. the first time I did this I got the message that "no syncronization info is available" from  the remote site
    6. clicked ok (after going back and  unchecking "maintain synchronization information," and making sure there were no sync files in the _name folders)
    7. it took a long time to upload all of the files from the local site.  when it finished, the log stated that everything put successfully, but the website
    doesn't look any different.
    Our root folder is saved on our server.  We just recently changed web host providers.
    Also, for each webpage, there are two html files (one general and then one with a 1, 2 or 3 column descriptor).  I edited and put both to the site, but is there
    something I should know about these two files?
    ??  I just need to make some really simple edits and I don't understand why they are not showing up!!??
    Any help would be deeply appreciated!!!
    Thanks, Jessica

    I followed your instructions and was able to see the dummy page in the browser.  (no file not found error)
    OK - that's good.
    I only have one site defined (should I have two - one for local and one for remote?)
    Well, one site definition has the ability to contain local and multiple remote site specifications.  Under the basic Site category in the Site definition, you will see the path to the local root folder.  Under the Servers category, you will see each server that has been defined - usually a Remote server (that would be your web hosting account) and a Testing server (if you are coding a site with server scripting).  It's normally the case, with a simple, static HTML site, to have just Local and Remote details in your site definition.
    I called our host (Go Daddy) to ask what the name of the root directory was and they instructed me to just leave that blank. so right now it just appears as \
    Actually, it should be either blank or "/" (the regular slash).
    If you are able to see the dummy file that you browsed to but still do not see changes made to other files, then it must be that the host is caching files on your site.  You would have to ask them that question.  Otherwise, you should see changes that have been uploaded immediately.

  • Unable to edit my raw files after uploading

    I am using PCS2 and windows XP. Canon 30-and-40D. I am just learning about photoshop and RAW files. I did go to the update 4.3 was unable to use so I down loaded DNG. I can convert the RAW files to jpig however I can't use them in bridge or photoshop as a RAW file to make the changes that I would like. After doing some reading on the forum I am still having problems. My plugin is 3.7. Is their anything in preferences that might need to be changed. Thank Joe

    Personally, I wouldn't dismiss the idea of the DNG converter, at least until you get Lightroom and are comfortable with it. Just download the latest version and use it to create Digital negative copies of your raw images. You will still have your original raw images, and the image data in the DNG files is exactly the same image data. You can get identical results with the DNG file. And you will be able to use ACR 3.7 just as you always have been able to do.
    Then, Lightroom is something that you can learn at your own pace. As you become more comfortable with it you will be able to work with the DNG files that you started working on with ACR 3.7. I think starting with the DNG converter would provide you with a good transition as you become familiar and comfortable with the new controls and the new interface in Lightroom.

Maybe you are looking for