Retrieving a local folder hangs Dreamweaver

When I click on a local folder, Dreamweaver just hangs and I get the spinning beachball for several minutes before my directory listing finally appears.  What gives?  Its a local folder, it should just open it up and show the contents without having to go and do research for 2 minutes.  I've tried both with the cache on and off.  I've deleted the cache several times too.  Screenshot attached of the message I get when it hangs.
Message was edited by: AlanTAdobe2
Additionally another problem I get is Dreamweaver is showing all of my files marked with a + sign as if they were never added to my source control (I use SVN).  The files are added (have been for months), checked in, committed, and they still show the + sign.

Have you tried clearing the cache as in http://www.dmxzone.com/go/16740/clearing-dreamweaver-s-cache/

Similar Messages

  • Dreamweaver, OS X 10.4, Local folder doesn't exist?

    Since getting my brand new MacBook from Amazon a few days
    ago, I've been struggling with getting DW (7 and 8) to work with
    local folders.
    After I Define Sites and enter the info for my local copies
    of the site's files, I connect to the server. The Remote view shows
    the files on the server, but when I switch back to the Local view,
    it says the folder where my files are, doesn't exist.
    I can interact fine with the Local files (create, rename)
    until I connect to the Remote computer. After I do connect, when I
    go back to the Local view, it says the Local folder doesn't exist.
    Sometimes when updating the Site it sometimes says "Can't
    create local folder" so Im guessing DW isn't able to hold onto the
    fact that the Local folder is there somehow.
    I've repaired permissions, verified the disk, made sure the
    most recent patches are applied on DW (7.01 and 8.02), deleted the
    DW prefs for both versions. I've even created a new user on my Mac
    and created the new site folder from scratch, but this problem is
    happening with all user accounts on this Mac.
    Everything was working fine on the old PowerBook before I
    used the Migration Utility to automatically bring things over.
    Desperately in need of help!

    I think that WAS it. Holy Weekend Waster Batman! I spent the
    last few days of my life on debugging because of that space
    character.
    I had found a workaround in that I could use a disk image
    that I created on my Mac. That, I guess, worked because of the
    filename.
    I had thought it was some Permissions thing since the disk
    image had totally open permissions. But it seems the space
    character was the reason.
    Thanks!!!!!
    bdemil

  • Adding a local site to Dreamweaver CC that is through a mapped network drive breaks ALL connections

    I am using Dreamweaver CC on Windows 8 on a machine that is hooked up to a local network. My site files are stored on another drive on that network and I am mapped to that drive. I have always been able to open in individual file from that drive in Dreamweaver. But I noticed that with one site I am working on, Dreamweaver would hang trying to make minor revisions to the PHP code. It was suggested to me to add the whole folder as a local site in Dreamweaver, so I did. At first I thought it was moving along much better -- no hanging while I was typing code. Then suddenly I realized I could not save the files. I was no longer connected to the drive I was working on. Even outside of Dreamweaver, I was unable to access the drive. I thought it was a network issue. I rebooted the computer and opened a Windows Explorer folder and was able to access the drive. Then I opened Dreamweaver again and the connection was lost.
    To test my theory, I rebooted again, accessed the drive, waited a little while, accessed the drive, then opened Dreamweaver and it was lost. I tried this several times, each with the same result.
    Then I went into Dreamweaver, removed the site from Dreamweaver and rebooted. I accessed the drive, opened Dreamweaver, and voila... I could still access the drive. So I tried adding the site back to Dreamweaver and I cannot access the drive after opening Dreamweaver again.
    Without having the site in Dreamweaver, the files/Dreamweaver hangs EVERY TIME I TYPE CODE. Adding a site on a mapped local network drive BREAKS MY CONNECTION and disables my ability to work on the files. Is there a reason for this and more importantly, is there a fix? It seems like a very specific but illogical problem.
    My next step is to find and install my old Homesite 4.5.
    Thanks in advance for any useful advice!

    mpendill wrote:
    I surely did not knowing change anything within the software!
    I just tried adding another site. It seems like it is setting it up and reading the files but then at the end (apparently just as the connection breaks), it gives me these errors:
    Cannot create [SITE NAME].
    and
    The local root folder, [FOLDER NAME], does not exist. Please select a new local root folder by clicking the Manage Sites button.
    (I changed the out the actual site name and folder name above.)
    I believe these were the same errors I got with the other site. At the time I was pushing a deadline and was too frantic to write it down.
    Not that I think it has any relevance, but both sites are Wordpress sites.
    Maybe what I should try next is mapping a different drive and trying to set up a site from there?
    For that error you want you can try mapping it but it seems your sites root is just not defined... what DW is telling you is it could not find the specified folder when its trying to establish the new site. You might want to make sure your folder is there and all the spelling is correct, when making sure go your your Site Manager and make sure your root site is in your network drive.

  • Design view and browser view in DW are different than when I view from local folder

    I'm brand new to Dreamweaver CS5.5 and here is my problem:
    I've made an html page in dreamweaver with a banner, with an additional graphic and some text on top of the banner.  It displays just fine in every browser when I view from the local folder, but when I open DW and view, it displays incorrectly in all three design, live and browser views within DW.  If I make changes to the css file until it views correctly in design view, it no longer displays correctly from the local folder and it still doesn't view correctly in live or browser view within DW.  If what I'm doing isnt going to display accurately in any of the views provided by Dreamweaver as compared to the live server, whats the point in having this software?  I could just keep building webpages in notepad and uploading with CoreFTP.
    Any suggestions?  Is it some setting that I dont know about that I need to change within DW?   Please help.

    align="center" is deprecated (obsolete) code in XHTML & HTML5 doc types.  Instead of styling markup with HTML, you should be using CSS. 
    CSS
    .center {text-align:center}
    HTML
    <p class="center">some centered text here</p>
    With respect to break tags, in XHTML doc types the correct syntax is <br /> not <br>.  However your usage of line breaks is inconsistent with good symantic markup.  Use headings <h1> <h2> <h3> <h4> for important keywords.  Use <p> for descriptive paragraphs.  Use <ul> <li> or <ol> <li> for lists.  Line breaks should be used minimally if ever.
    XHTML doc types require all tags to be lowercase.  Uppercase tags will throw errors.
    Your design is too rigid.  When text size is increased in browsers, your content is unreadable.  See screenshot.
    SOLUTIONS:
    1) DO NOT USE POSITION ABSOLUTE.  You don't need it.  Absolute positioning removes content from the normal document flow resulting in a jumbled mess.  Use default CSS positioning (none) with margins, padding & floats to align elements.
    2) Remove HEIGHT values from all CSS containers.  Height limits a container's capacity to hold more content when needed.  Container height should always be determined by the amount of content it holds; not explicit values.  If required to reveal a background image, for example, use CSS min-height instead of height.
    CSS Box Model
    http://www.w3schools.com/css/css_boxmodel.asp
    CSS Floats
    http://www.w3schools.com/cssref/pr_class_float.asp
    CSS min-height
    http://www.w3schools.com/cssref/pr_dim_min-height.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • How do I move all the messages and folders in `Local Folder' to my main account folder? The stuff in local is from importing from Outlook

    I imported my mail from Outlook and they went to Local Folders. I want them in the main folder section for my account. How do I move them there?
    At the moment I have to create each folder and then copy the contents from one folder to the other - crazy, and I have dozens of folders

    As Chgrist1 said, that is how it works. Having looked as how Outlook stores mail, and everything else. It is a wonder anything ever comes out that is useable. PST files are a mess. First thing they do is pull the email apart and store header, body and attachments is three different places.
    You will also find (most likely) that your accounts in Outlook were POP and the default in Thunderbird is IMAP. merging IMAP and POP files and folders is fraught with difficulties and dangers. It would be a brave developer that tried that in an import.
    In the case of IMAP all your mail is one the server, so import is not all that important. However copying a gigabyte or two of of outlook mail into your imap server could exhaust your available message storage space there and cause the import to fail completely.
    So If you want to do what your saying, first confirm that your not using IMAP mail. Otherwise your experience is most likely going to be exceedingly poor.
    If you are using POP mail, then changing the setting in your pop account to cause it to use the global inbox will make a single mail account appear, "Local Folder", with your outlook mail as a sub folder of that.
    Dragging a folder from the imported outlook tree to Local folders is not difficult, as long as you remember that folders hang of other folders, so your dragging them to a parent, not a position on the screen you like.

  • Share local folder across network?

    I want to work on my site on 2 different computers, but hold
    the local folder on only one. I thought I did this before, but
    Dreamweaver is not allowing me now. I get the error that it is not
    a valid folder when i navigate to it. Does anyone know how to do
    this?? I am choosing to edit it over the network, but it says this
    is not a valid local folder.

    I do this all the time with no problem, but I do it via a
    mapped network
    drive - perhaps that's what you are missing?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "lsinger9404" <[email protected]> wrote in
    message
    news:enc0o8$b4b$[email protected]..
    >I want to work on my site on 2 different computers, but
    hold the local
    >folder
    > on only one. I thought I did this before, but
    Dreamweaver is not allowing
    > me
    > now. I get the error that it is not a valid folder when
    i navigate to it.
    > Does
    > anyone know how to do this??
    >

  • HELP! Deleting files in local folder deletes files from Mac HD.

    After "getting" entire remote folder, all folders on my desktop and all folders and files linked to them (thousands) showed up in the Files Panel of my Local Folder. And each had a plus character next it. Worse, deleting one of these files deletes the actual file from my desktop and Mac HD. What can I do?

    The + means it's a folder, click it to see the files within it.
    DW doesn't store any files, it just organizes and works with the files on your desktop, so deleting a file from within DW will delete it from your HD. That is the expected and correct outcome.
    When defining a site, you need to create a root folder for your site files to be stored (don't use your desktop folder). If you don't create a root folder to work from, I could see accidentally including all of your desktop items in your site. If that's what has happened, you need to redefine your site: http://tv.adobe.com/watch/learn-dreamweaver-cs5/gs01-defining-a-new-site/
    Anything that was deleted will need to be restored from a back-up, if that's what's happening.

  • IMAP messages not downloading to local folder?

    Hi. I've just switched from an iBook G4 to my new monster, MacBook Pro. However, I've run into a problem:
    I'm using an IMAP account in Mail, hence there was no problem getting all my emails to my new computer, as they were all located on the server. However, on my iBook, I stored some of the emails locally as they were too big to store on the server over time. To get them downloaded to a local storage, I simply dragged the messages from my IMAP-folder to my local folders in Mail. I thought this deleted the messages from the IMAP-account and stored the complete message (including attachements) locally. However, now it seems like I was wrong. I've tried to import all the locally stored messages into my new Mac Book Pro, but Mail refuses to import them, even though they're in mbox-format. Then I tried to upload them to the mailserver from the iBook, and then download them to the MacBook Pro. This sort of worked, but then the messages appeared as they were all blank. To me, it seemed like only parts of the messages were downloaded when I first dragged them over to my local folders? So basically, I'm wondering if anyone can give me a hint on what causes this? Am I doing something wrong when I'm trying to download it to a local folder? I'm suspecting this might be the reason, as it seems like I'm using much more storage space on my mailserver than I can find any reason for. Any suggestions? Thanks a bunch!
    MacBook Pro, Intel Core Duo 2.33 GHz, 17"   Mac OS X (10.4.9)   2GB RAM

    David,
    Sorry for not being more specific in my last post. It had been a while since I tried to import, so I trusted my memory on what happened. Obviously a mistake
    Anyway, I've now tried to import once again, and you're right, they are in fact .mbox-folders, not files. Also, I've always tried to select the mbox-folder itself, or files within the mbox-folder. What I did wrong, as you pointed out, was that I did not select the folder which contained the mbox-folders.
    Now, after I imported using your instructions, everything worked like a charm. I got all my emails imported Thanks a million!
    I have one last question, though: To store emails locally instead of on the server, I've always dragged them onto a local folder. Is this the correct way of doing it? Will the emails on the server (which I store locally) be deleted, or will I just get a copy of them stored locally?

  • Importing multiple jpeg files from local folder into database LOB column

    I have to programatically save multiple pictures (jpeg) from the folder on my PC into Oracle table LOB column. I have to be able to choose local folder on my PC where are the pictures, and press button on Oracle Forms to save pictures in LOB column in database.
    I'm using Forms 6i and Oracle 10g Rel2 database.
    Is this possible with Oracle Forms or the only way to do that is to use create directory database command and use dbms_lob package which I shouldn't do, because Oracle database directory is not allowed to see my local folder.

    As I said I don't know how to use object data type, I just given a shot as below. I know the following code has errors can you please correct it for me.
    Public
    Sub Main()
    ' Add your code here 
    Dim f1
    As FileStream
    Dim s1
    As StreamReader
    Dim date1
    As
    Object
    Dim rline
    As
    String
    Dim Filelist(1)
    As
    String
    Dim FileName
    As
    String
    Dim i
    As
    Integer
    i = 1
    date1 =
    Filelist(0) =
    "XYZ"
    Filelist(1) =
    "123"
    For
    Each FileName
    In Filelist
    f1 = File.OpenRead(FileName)
    s1 = File.OpenText(FileName)
    rline = s1.ReadLine
    While
    Not rline
    Is
    Nothing
    If Left(rline, 4) =
    "DATE"
    Then
    date1 (i)= Mid(rline, 7, 8)
     i = i + 1
    Exit
    While
    End
    If
    rline = s1.ReadLine
    End
    While
    Next
    Dts.Variables(
    "date").Value = date1(1)
    Dts.Variables(
    "date1").Value = date1(2)
    Dts.TaskResult = ScriptResults.Success
    End
    Sub

  • Saving data to local folder

    Hi, I am new using LiveCycle and this question would seem stupid but I create a form to enter clients data. I need to submit that data to a folder located in the same computer as an XML format. How can I set up the submit button to save the data in that local folder?
    Thanks in advance.
    Edmundo

    You woudl not submit to your own machine. You can add a button to save the data locally. Put a normal button on the form. In the click event add this javascript code:
    xfa.host.exportData("", false)
    This will bring a dialog up and allow the user to choose the location and filename of the data file. If you do not pass parameters then the default extension of XDP will be used. By passing the false param then you are asking for a file extension of XML. In either case you are saving xml data it is just the extension that will change.

  • Help Fetching files from an FTP server into a DBase or local folder

    Hello Gurus!
    I need help to automate or design/write an app capable of (replace a manual process) reading log files in an ftp server folder, this log files are called CDR (Call Detail Record) and named as follow cdr.txt.20020221010000 meaning that this log file was created on 2002/02/21 at 01:00:00.
    This CDR log files are generated every hour by a Lucent telephone switch using a software/program called EXS ExchangePlus in ASCII format (fixed length delaminated, Char data type). EXS ExchangePlus writes a record in this CDR/log files after the call is completed, i.e. Calling_Number, Called_Number, Date_connect (yyyymmdd), Time_connect (hhmmss), Charged_time (hhmmss, duration of the call), and so on.
    The manual process I am using now is:
    1. Log in the ftp server into the folder where the CDRs log files are, located the latest generated CDRs log files and downloaded them into a local folder/directory. Normally I download the CDR for full day or 24 CDRs log files.
    1a. Optionally sometimes I used a program called VEdit compiled/gather all 24 CDRs into a single file.
    2. Once I have downloaded the CDRs I want to process (normally I process a full day 24 CDRs) I imported then into a Data Base temp table, where then I do the conversion of data types (i.e. Dates and times fields from char type -> to ->Date type) and calculations for billing purposes.
    So if somebody can help with this, I would really appreciated ideas or any kind of information on how to automated this process.
    I�m familiar with Java2 platform (using JDeveloper ) so if somebody has done something like this before using java, this would very helpful. Or Maybe using Visual Basic 6.0 would help too.
    Thanks Gurus, and I look forward to hear from you soon!
    Alf Pathros!

    Thanks for the idea, even though an example would help me more.
    I already found the FTPClient class.
    I also would like to knwo if there is a away Ican append/merged various files CDRs into a single/one to then dump/import it into the database

  • I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer w

    I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer working and although upload completes, the URL takes you to a "Forbidden - do not have permission to read this file" page. Lightroom is changing the permissions of each file to 000 instead of 644 for index files and 755 for all others. How can I change the permissions settings in Lightroom?

    I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer working and although upload completes, the URL takes you to a "Forbidden - do not have permission to read this file" page. Lightroom is changing the permissions of each file to 000 instead of 644 for index files and 755 for all others. How can I change the permissions settings in Lightroom?

  • When using Message Filters on an IMAP account I often get duplicate messages in my local folder where important messages are put. How can I stop this?

    Since switching to IMAP and using message filters, I often get duplicate messages in my local folders. I think this is a bug.
    That is my guess as to what is happening.
    When the IMAP part starts syncing with the server to fill in the inbox, the message filter system starts working before it is done syncing. I appears that the filters runs too quickly because as the filter moves a msg to a local folder, the sync thread think it need to download it again from the server. If the sync with the remote server takes a long time, I could end up with 5 or more copies of the exact same email.
    This has always happened for years now but I figured someone would have noticed it and fix it by now. Now I am wondering it it has something to do with my filters or my settings.
    Has anyone run into this before?

    Toys,
    I was just doing a search to see if anyone else was feeling this way! I am also at a university and I don't really like see thousands of unread messages in mail. (Fortunately, with Leopard you can select the dock icon to show only the messages in your inbox but I still don't like having the public folder in there).
    Please let me know if you find out anything and I will do the same for you. If I have time later I am going to run by our IT office later and ask them.

  • Move email from Inbox to Local Folder using Message Filter moves header only, not contents.

    I created a Message Filter to move email from Inbox to a Local Folder based on Date. The email headers were moved, but not the contents. Since I'm using IMAP, all the emails were deleted from the server.
    I searched for similar problems and I followed one suggestion to "repair" one of the target Local Folders, but that made things worse. Now the header information (Subject, From, Date (now set to the date the transfer was done, not the email received date) is all blank.
    The Local Folder properties indicate the email is contained in
    mailbox:///C:/Users/Ted/AppData/Roaming/Thunderbird/Profiles/c65xcqqf.default/Mail/Local Folders/Archives.sbd/2010
    I can see the messages from other Local Folders here, but the ones "moved" are empty.
    Should this location be changed?
    Is there some way to recover the email contents?
    The info below is from the troubleshooting information tool:
    Application Basics
    Name: Thunderbird
    Version: 31.5.0
    User Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0
    Profile Folder: Show Folder
    (Local drive)
    Application Build ID: 20150222233048
    Enabled Plugins: about:plugins
    Build Configuration: about:buildconfig
    Memory Use: about:memory
    Mail and News Accounts
    account2:
    INCOMING: account2, , (none) Local Folders, plain, passwordCleartext
    account5:
    INCOMING: account5, , (imap) imap.googlemail.com:993, SSL, passwordCleartext
    OUTGOING: smtp.googlemail.com:465, SSL, passwordCleartext, true
    account6:
    INCOMING: account6, , (imap) imap-mail.outlook.com:993, SSL, passwordCleartext
    OUTGOING: smtp-mail.outlook.com:587, alwaysSTARTTLS, passwordCleartext, true
    account7:
    INCOMING: account7, , (imap) imap.comcast.net:993, SSL, passwordCleartext
    OUTGOING: smtp.comcast.net:465, SSL, passwordCleartext, true
    account8:
    INCOMING: account8, , (imap) imap.comcast.net:993, SSL, passwordCleartext
    OUTGOING: smtp.comcast.net:465, SSL, passwordCleartext, true
    account9:
    INCOMING: account9, , (imap) imap.comcast.net:993, SSL, passwordCleartext
    OUTGOING: smtp.comcast.net:465, SSL, passwordCleartext, true
    Crash Reports
    Extensions
    Lightning, 3.3.3, true, {e2fda1a4-762b-4020-b5ad-a41df1933103}
    Manually sort folders, 1.1, true, [email protected]
    Important Modified Preferences
    Name: Value
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    extensions.lastAppVersion: 31.5.0
    font.internaluseonly.changed: true
    font.minimum-size.x-western: 10
    font.name.monospace.el: Consolas
    font.name.monospace.tr: Consolas
    font.name.monospace.x-baltic: Consolas
    font.name.monospace.x-central-euro: Consolas
    font.name.monospace.x-cyrillic: Consolas
    font.name.monospace.x-unicode: Consolas
    font.name.monospace.x-western: Consolas
    font.name.sans-serif.el: Calibri
    font.name.sans-serif.tr: Calibri
    font.name.sans-serif.x-baltic: Calibri
    font.name.sans-serif.x-central-euro: Calibri
    font.name.sans-serif.x-cyrillic: Calibri
    font.name.sans-serif.x-unicode: Calibri
    font.name.sans-serif.x-western: Calibri
    font.name.serif.el: Cambria
    font.name.serif.tr: Cambria
    font.name.serif.x-baltic: Cambria
    font.name.serif.x-central-euro: Cambria
    font.name.serif.x-cyrillic: Cambria
    font.name.serif.x-unicode: Cambria
    font.name.serif.x-western: Cambria
    font.size.fixed.el: 14
    font.size.fixed.tr: 14
    font.size.fixed.x-baltic: 14
    font.size.fixed.x-central-euro: 14
    font.size.fixed.x-cyrillic: 14
    font.size.fixed.x-unicode: 14
    font.size.fixed.x-western: 14
    font.size.variable.el: 17
    font.size.variable.tr: 17
    font.size.variable.x-baltic: 17
    font.size.variable.x-central-euro: 17
    font.size.variable.x-cyrillic: 17
    font.size.variable.x-unicode: 17
    gfx.direct3d.last_used_feature_level_idx: 0
    mail.openMessageBehavior.version: 1
    mail.winsearch.enable: true
    mail.winsearch.firstRunDone: true
    mail.winsearch.global_reindex_time: 1387144538
    mailnews.database.global.datastore.id: 11ee7f66-9920-4f7d-9c5e-a83d079bc6e
    mailnews.database.global.views.conversation.columns: {"threadCol":{"visible":true,"ordinal":"1"},"flaggedCol":{"visible":true,"ordinal":"3"},"attachmentCol":{"visible":false…
    mailnews.database.global.views.global.columns: {"threadCol":{"visible":true,"ordinal":"1"},"flaggedCol":{"visible":true,"ordinal":"3"},"attachmentCol":{"visible":false…
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1424815462
    places.history.expiration.transient_current_max_pages: 104858
    plugin.importedState: true
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_bgcolor: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_bgimages: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_colorspace:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_command:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_downloadfonts: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_duplex: 1515870810
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_edge_bottom: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_edge_left: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_edge_right: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_edge_top: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_evenpages: true
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_footercenter:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_footerleft: &PT
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_footerright: &D
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_headercenter:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_headerleft: &T
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_headerright: &U
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_in_color: true
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_margin_bottom: 0.5
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_margin_left: 0.5
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_margin_right: 0.5
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_margin_top: 0.5
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_oddpages: true
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_orientation: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_page_delay: 50
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_data: 1
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_height: 11.00
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_name:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_size_type: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_size_unit: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_width: 8.50
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_plex_name:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_resolution: 1515870810
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_resolution_name:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_reversed: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_scaling: 1.00
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_shrink_to_fit: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_to_file: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_unwriteable_margin_bottom: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_unwriteable_margin_left: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_unwriteable_margin_right: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_unwriteable_margin_top: 0
    security.disable_button.openCertManager: false
    Graphics
    Adapter Description: Intel(R) HD Graphics 4600
    Vendor ID: 0x8086
    Device ID: 0x0416
    Adapter RAM: Unknown
    Adapter Drivers: igdumdim64 igd10iumd64 igd10iumd64 igdumdim32 igd10iumd32 igd10iumd32
    Driver Version: 10.18.10.3379
    Driver Date: 12-18-2013
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.3.9600.17111)
    ClearType Parameters: ClearType parameters not found
    WebGL Renderer: false
    GPU Accelerated Windows: 2/2 Direct3D 10
    AzureCanvasBackend: direct2d
    AzureSkiaAccelerated: 0
    AzureFallbackCanvasBackend: cairo
    AzureContentBackend: direct2d
    JavaScript
    Incremental GC: 1
    Accessibility
    Activated: 0
    Prevent Accessibility: 0
    Library Versions
    Expected minimum version
    Version in use
    NSPR
    4.10.6
    4.10.6
    NSS
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC
    NSS Util
    3.16.2.3
    3.16.2.3
    NSS SSL
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC
    NSS S/MIME
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC

    Fixed the Trouble Shooting information in previous post.

  • How to create a file in application data local folder which is not hidden in windows store app?

    I want to create a log file in ApplicationData local folder.
         m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync(m_Name.Replace(" ", "_") + ".log",
                              CreationCollisionOption.OpenIfExists);
    First time when my app is launched, the file gets created and logs are written.
    When I close my app, and re run the app once again, the log file that was created is now hidden and when i try to call
    the code :    m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync(m_Name.Replace(" ", "_") + ".log",
                              CreationCollisionOption.OpenIfExists);
    m_StorageFile is NULL.
    How can i prevent the file from becoming Hidden or ReadOnly.
    Thanks

    Here is a very simple sample that works fine.  Start with this and see what you are doing different.
    XAML:
    <Page
    x:Class="LocalStorage.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:LocalStorage"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d" Loaded="Page_Loaded">
    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <TextBox x:Name="outputTxt" HorizontalAlignment="Left" Margin="76,82,0,0" TextWrapping="Wrap" VerticalAlignment="Top" AllowDrop="True" PlaceholderText="No Data read from local file" Width="791"/>
    <Button Content="Store Data" HorizontalAlignment="Left" Margin="73,145,0,0" VerticalAlignment="Top" Click="Button_Click" />
    </Grid>
    </Page>
    C#
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Runtime.InteropServices.WindowsRuntime;
    using Windows.Foundation;
    using Windows.Foundation.Collections;
    using Windows.Storage;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Controls.Primitives;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Input;
    using Windows.UI.Xaml.Media;
    using Windows.UI.Xaml.Navigation;
    // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
    namespace LocalStorage
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainPage : Page
    public MainPage()
    this.InitializeComponent();
    private async void Button_Click(object sender, RoutedEventArgs e)
    if (m_StorageFile != null)
    try
    string userContent = outputTxt.Text;
    if (!String.IsNullOrEmpty(userContent))
    await FileIO.WriteTextAsync(m_StorageFile, userContent);
    else
    // should be some info to write
    catch (FileNotFoundException)
    // do something
    private StorageFile m_StorageFile;
    private async void createFileOrGetFile()
    m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync("sample.log", CreationCollisionOption.OpenIfExists);
    private async void Page_Loaded(object sender, RoutedEventArgs e)
    createFileOrGetFile();
    if (m_StorageFile != null)
    try
    string fileContent = await FileIO.ReadTextAsync(m_StorageFile);
    outputTxt.Text = fileContent;
    catch (FileNotFoundException)
    // do something!
    Jeff Sanders (MSFT)
    @jsandersrocks - Windows Store Developer Solutions
    @WSDevSol
    Getting Started With Windows Azure Mobile Services development?
    Click here
    Getting Started With Windows Phone or Store app development?
    Click here
    My Team Blog: Windows Store & Phone Developer Solutions
    My Blog: Http Client Protocol Issues (and other fun stuff I support)

Maybe you are looking for

  • My yahoo mail page is incomplete and its only on firefox, on my pc only.

    my yahoo mail page is incomplete and its only on firefox and on my PC only. it is ok on other browser (IE). i followed yahoo mail customer care troubleshooting task but it did not fix problem. i pasted into troubleshooting information window.

  • IPhone 3GS not showed in iTunes after update to Version 4.0

    Hi, I just made an firmware update using iTunes to my 3GS. The installation went well, and the iPhone is working great. But the problem is that iTunes is not displaying the iPhone anymore. I already tried everything listed on the Apple support page,

  • Error   -2096,       iTunes will not run  HELP AAAAAAAAARRRGGGGGGHHHHHHH

    Anyone PLEASE HELP....... My processor died so I now have a new one. I have been forced to download the new version of iTunes. Everything seems ok until I try to "run" iTunes and the following error message appears. Quick Time Unavailable" "Quick Tim

  • Trouble in runclient on SavingsAccount example

    I am following the J2EE Tutorial. I'm on the j2eetutorial/doc/BMP2.html#63189 part of the tutorial. Not sure what does Binding name:`java:comp/env/ejb/SimpleSavingsAccount` means. I didn't recompile the SavingsAccount example when using the "deployto

  • Open Internet Shortcut with Dreamweaver

    I have a user who needs to be able to open an internet shortcut in Dreamweaver. I set the associated program for HTML & HTM to Dreamweaver, but the shortcut still opens in IE. There is no enabled option to change the associated program for Internet S