My file is read only how do i turn it off?

the only page that appears under www.simon-gideons.com is read only how do i turn that off so i can edit that page?

You have a lot of very basic coding errors; pleaase fix.
http://validator.w3.org/check?uri=http%3A%2F%2Fwww.simon-gideons.com&charset=%28detect+aut omatically%29&doctype=Inline&group=0

Similar Messages

  • Stickie's note file information window.  How do I turn them off?

    The Stickies 'note's file information windows' are a nuisance. How do I stop them from appearing? Thanks, Rafael

    2nd response:
    These windows /certainly/ don't give information about what stickie can do. Try this. Open a sticky note. type something into it. then hold your cursor over the title bar, maybe m,ove it arfound once. Then wait, it takews a little time. You should then see the window I'm talking about open. I have 5 sticky notes open. I pressed the close button upper left corner on /one/ of them. I am asked, ? Am I sure I want to discard this stickie? No. I press SAVE (Big blue button). Then I go to a window that says export. I choose a folder or create a folder, or just save the thing. It is saved as a text edit (?) file. The only way I can get it back to be a stickie is to select copy paste from text edit file into a new stickie note. I should think Apple would realize that a user doesn't want a date log to come up in front on the stickie every time he's working on a a stickie. To reiterate,
    Rafael

  • File Vault issues.  How can I turn it off?

    After reading all about the issues people have been having with File Vault and because the constant encrypting-decrypting is slowing down my computer, I decided to turn File Vault off.
    There's just one problem. I can't. Every time I try to turn off File Vault, the computer logs off, starts the operation, then I get the following error message:
    "An error occurred during decryption ( An error occurred during copying ), FileVault will be turned on for this home folder and the home folder will still be encrypted."
    In seeing explanations in other discussions regarding File Vault, the first thing I noticed was that I may not have had enough space to do the decryption, so I got an external hard drive, copied the contents of each of the folders inside my encrypted hard drive to the external drive (thus decrypting them), then deleted them from the internal hard drive. Then I shut the computer down to allow File Vault to re-claim the disk space. I was ultimately able to bring the free space on my hard drive to about 195 GB, with only about 35 GB in use. I continued to get the error.
    Next, I repaired permissions, then verified the disk. I found a volume structure error which could not be repaired by Disk Utility, but I had Disk Warrior, which had no problem repairing it. Unfortunately, I still get the error when trying to turn File Vault off.
    At this point, it is pretty safe to assume that the initial Volume Structure error caused the File Vault decryption error, and repairing it will not fix the issue. From continued reading, it would seem the next course of action is to completely back up my home folder, install the OS fresh, then manually import the data. Is there an easy way to do this? I have a lot of installed applications and settings that I don't want to go through the trouble of re-installing and re-setting.
    Would it work if I set up a new user account, manually migrated the data copied to the external drive, tested to see if the new user account was working, then deleted the encrypted one?
    Any advice would be greatly appreciated.

    Would it work if I set up a new user account, manually migrated the data copied to the external drive, tested to see if the new user account was working, then deleted the encrypted one
    I think that's worth trying first - you could always fall back on the OS erase and install if it doesn't work out.
    I would do a GetInfo on the external drive and check the Ignore Ownership box at the bottom, in order to avoid any permission problems when copying back.

  • MS Word: This file is read-only. To save a copy, click OK, and give the document a new name in the save dialog box.

    This is not a question. I believe I've found a new issue and the fix for it.
    The situation:
    A brand new iMac 27" running Yosemite 10.10.1
    MacMini server running 10.8.5 server.
    The issue:
    Client on iMac trying to work on MS Word documents stored on server was requiring him to save the documents to his desktop and then copy them back to the folder on the server. The exact error message was, "This file is read-only. To save a copy, click OK, and give the document a new name in the save dialog box."
    The issue is unique to this computer in an office of 10 client computers and three servers.
    Attempted fixes:
    Verified that the ".Temporaryitems" folder existed and the permissions were set properly.
    Repaired permissions on the client and the network share.
    Definitive fix:
    By default, Yosemite 10.10.1 uses SMB for connecting file shares. When I overrode the default and switched to AFP protocol, the issue went away.
    I hope this helps someone else.
    Rob

    That was it. What an operating system. It is very helpful to view files you are looking for. But if you have preview on you cannot save files.

  • Issue regarding open word file and read only mode using c# & MS-word interop

    i am programmatically open a word file for search and highlight keyword. my routine is working fine. the problem is when i am opening the file programmatically then a dialog come and ask me to open file in read only mode. the dialog look like below one
    actually i do not want to open the file in read only mode because people can open and like to change and save. so guide me what i can do to not to open the file in read only mode.
    here is my full code. just have a look and tell me what is wrong in my code or tell me any trick as a result i can open the file not in read only mode. here is my code.
    private void button1_Click(object sender, EventArgs e)
                object fileName = "";
                string filePath = "";
                string strSaveasPath = "";
                DialogResult result = openFileDialog1.ShowDialog();
                if (result == DialogResult.OK)
                    fileName = openFileDialog1.FileName;
                    //strSaveasPath = Path.GetDirectoryName(path.ToString());
                //fileName = "Z:\\C0000000003.doc";
                List<string> _list = new List<string>();
                _list.Add("tridip");
                _list.Add("arijit");
                //object fileName = "D:\\CVArchievePath\\C0000000001.doc";
                object textToFind = "test";
                object readOnly = false;
                Word.Application word = new Word.Application();
                Word.Document doc = new Word.Document();
                object missing = Type.Missing;
                try
                    doc = word.Documents.Open(ref fileName, ref missing, ref readOnly,
                                              ref missing,
    ref missing, ref missing,
                                              ref missing,
    ref missing, ref missing,
                                              ref missing,
    ref missing, ref missing,
                                              ref missing,
    ref missing, ref missing,
                                              ref missing);
                    doc.Activate();
                    object matchPhrase = false;
                    object matchCase = false;
                    object matchPrefix = false;
                    object matchSuffix = false;
                    object matchWholeWord = false;
                    object matchWildcards = false;
                    object matchSoundsLike = false;
                    object matchAllWordForms = false;
                    object matchByte = false;
                    object ignoreSpace = false;
                    object ignorePunct = false;
                    object highlightedColor = Word.WdColor.wdColorGreen;
                    object textColor = Word.WdColor.wdColorLightOrange;
                    object missingp = false;
                    Word.Range range = doc.Range();
                    foreach (string line in _list)
                        textToFind = line;
                        bool highlighted = range.Find.HitHighlight(ref textToFind,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing,
    ref missing);
                    System.Diagnostics.Process.Start(fileName.ToString());
                catch (Exception ex)
                    Console.WriteLine("Error : " + ex.Message);
                    //Console.ReadKey(true);
                finally
                    //doc.Close(missing, missing, missing);
                    if(doc!=null)
                        System.Runtime.InteropServices.Marshal.ReleaseComObject(doc);
                    if (word != null)
                        System.Runtime.InteropServices.Marshal.ReleaseComObject(word);
                    word = null;
                    doc = null;
                    GC.Collect();
                    GC.WaitForPendingFinalizers();

    I know it's a very old issue and I reached to this page looking for a solution. Finally, I have found a fix to this problem.
    The problem is that we create an instance of Word and do not close it correctly. This makes program believe that the file is already open and hence you're getting the respective message of file being locked by you.
    Set the visibility of your application to true and then when you close it both file and instance should close and you will not get the problem again.

  • I am not able to use Firefox with Sharepoint - I can only open a file in read-only mode and cannot checkout the document and edit.

    I would like to use Firefox with Sharepoint.
    However, I am only able to open a file in "read only" mode whch means I cannot edit the document and save it. I am also not able to "check-out" a document in Sharepoint and edit it at the same time.

    This may not work for everyone, but I solved this problem by clicking on the file name in sharepoint, not the document icon to the left of the name. This then brought up the various options, including checking out, editing, version history etc. It seems obvious but I have only just realised this!

  • Can't save power pivot report back to power pivot gallery...file is read only

    Hi eb
    I have developed an excel pivot report in a power pivot gallery (all in 2013).
    Next time i open that report from the power pivot gallery and attempt to save it again to the gallery
    I am blocked with a msg: we cant save http://........./powerpivot gallery/myPwerPvt.xslx  file is read only.
    To keep your changes you'll need to save the woorkbook with a new name or different location.
    Please help!
    TIA
    Rea

    Hi Rea,
    When you try to edit the PowerPivot workbook, are you open it as read-only mode? Please see the screenshot below:
    The "Read Only" mode will not be able to save any changes to the workbook you are loading.
    In addition, is it work for you while you save the PowerPivot workbook with a new name?
    Regards,
    Elvis Long
    TechNet Community Support

  • Opening the file in read only mode

    hi all,
    i am using
    i want to open any type of files in read only mode using host command.so first i am setting the attribute to read only and then opening the file. But still the opened file is editable. i have written like below
    Host( 'cmd /c  attrib +r "\test_folder\testing\PURCHASE_ORDER\'||:PO_FILE_NAME||'"',NO_SCREEN);
    Host( 'cmd /c "\test_folder\testing\PURCHASE_ORDER\'||:PO_FILE_NAME||'"',NO_SCREEN);is this is the way to open the file in readonly mode?
    Along with the above the files which i opened with the help of above said code those files i am not able to delete also.(i have to delete the selected file)
    i thing when i am setting the attribute something is going for a mess!
    Please help.
    Thanks..
    Edited by: GD on Jun 23, 2011 2:25 AM

    hi,
    Read only means you cannot mofiy the file. This also includes that you cannot delete a readonly-file yes,
    what i am doing is i have three button in my layout 'save','view' and 'delete'.
    1.so when user press 'save' button after selecting the file then the file gets saved into the specified.
    2. when user press 'view' button the file has to open in read only mode.
    for this i have written above mentioned code(but still i am able to edit the file)
    3.when user press 'delete' button the file has to be deleted from the specified location.
    so my problem is after setting file to read only mode, i am able to edit but i am not able to delete it.
    What i am using to set the file to read only mode is right?
    Please help.
    Thanks..

  • VBA Code to save my excel 2013 file as Read Only (or Non Editable) ...

    Hi,
    ActiveWorkbook.SaveAs SFilePath & udds & ".xlsm", xlWorkbookNormal
    SetAttr SFilePath & udds & ".xlsm", vbReadOnly
    Application.DisplayAlerts = True
    I have used the above code to make my file readonly ...however it still allows to make changes to the file and sometimes the file does not get open and throws an error " Excel cannot open the file ".xlsm" because the file format or file extension
    is not valid......."
    Could you please help me this
    Regards, Hitesh

    Hi,
    ActiveWorkbook.SaveAs SFilePath & udds & ".xlsm", xlWorkbookNormal
    SetAttr SFilePath & udds & ".xlsm", vbReadOnly
    Application.DisplayAlerts = True
    I have used the above code to make my file readonly ...however it still allows to make changes to the file and sometimes the file does not get open and throws an error " Excel cannot open the file ".xlsm" because the file format or file extension
    is not valid......."
    Could you please help me this
    Regards, Hitesh
    Saving the file as read-only does not mean you cannot make changes, it merely means it is recommended that you open this file as read-only. Also using 'xlWorkbookNormal' is incorrect since this is basically the macro-free xml format. Use the 'xlOpenXMLWorkbookMacroEnabled'
    instead. Now as far as not allowing the user to make changes you will need to protect each worksheet, as well as protect the workbook. So something like
    Sub ProtectWorkbook()
    ThisWorkbook.Protect Structure:=True, Password:="test123"
    Dim sh As Worksheet
    For Each sh In ThisWorkbook.Worksheets
    sh.Protect Password:="Test1234"
    Next sh
    End Sub

  • Acrobat XI states file is read-only when trying to save

    For the last couple of weeks I have had this issue . . . when saving to our shared drive, Acrobat XI states file is read-only (pop-up below) and I must save as a different name or in a different folder.
    I must then save the file to a different folder or drive. No other Adobe product has this issue and it only occurs on our shared drive. IT states I have full permissions for the folder.
    Anybody else have this issue?

    I'm glad it was that easy, frankly! :-)
    Glad it solved the problem for you!
    Have a great day,
    Sara

  • File as Read Only

    Hello,
    When I am opening any file (DTR -> Edit ->) in NWDS, it' gets opened as Read only. I am unable to make any changes in it. Can anyone help?
    Regards,
    Shaun

    Hi Pavan,
    Yes. I have done this.
    We download code from Development server to our local systems. NOw we have observed that on any system if we download the code, files becomes read-only. What can be the problem? It's definetly not a local system problem.
    Regards,
    Shaun

  • HT2963 I have a 1 TG external drive that is formatted to Windows NTFS and is read only, how do i get it to read and write on my Mac OS X 10.6.3?

    I I have a 1 TG external drive that is formatted to Windows NTFS and is read only, how do i get it to read and write on my Mac OS X 10.6.3?

    Install software such as Paragon NTFS, or reformat it as Mac OS Extended (Journaled) or FAT32. Mac OS X 10.6.5 and newer can also read and write exFAT partitions.
    (97498)

  • Problems with file permissions (read only) from Migration Assistant

    So, I just got a new computer (Mac Pro / Leopard) and I used the Migration Assistant to bring in all of my information from my old Powerbook running Tiger. Once that was done I had two accounts: my old admin account (with all of my settings) and my new admin account (the default). I deleted the new admin account because I had no intent to use it any longer, and planned to continue using the old one.
    But since then, I have been having some permissions issues. Pretty much all of my files are Read Only, so I have to set the permissions on them one-by-one as I need to write them. This also prevented me from doing the 10.5.2 update in Software Update (I was able to get it manually from apple.com.
    I need to know if there's any way to fix this. I tried restoring from the discs, but that didn't affect anything. I've tried repairing permissions, and while that may have helped with some system folders, it doesn't help with the rest of the hundreds of files that I'm sure I'll need to "unlock" in the future.
    Please help!

    Repairing permissions won't fix this. Repair permissions can only work on system files and other files which have a bill of materials (BOM) receipt in /Library/Receipts.
    You need to change the ownership of the files. This is very easy to do with terminal if you know what you're doing:
    sudo chown -R username:staff
    where username is your short username (e.g. mine is blloyd).

  • I've been sent a scan of a document as an attachment. Clicking on it, I get the message, "Pixel aspect ration correction is for preview purposes only. Turn it off for maximum image quality." What is pixel aspect ration and how do I turn it off?

    I've been sent a scan of a document as an attachment. Clicking on it, I get the message, "Pixel aspect ration correction is for preview purposes only. Turn it off for maximum image quality." What is pixel aspect ration and how do I turn it off?

    It's "aspect ratio", not aspect "ration". 
    It's what determines whether you have square pixels ("normal") or, if rectangular pixels, what the aspect ratio (width : length)  of that rectangle is.
    It's explained in the Help files.  I cannot go into more detail because you have neglected to provide information about your platform and exact version of Photoshop.
    Example in next post

  • What are these .log files?  How do I turn them off/on?

    Recently I noticed that I am getting a .log file for every pdf I have.  I don't think I need them and would like to stop them from showing up.  How do I turn this off?

    When I looked up ghostscript, Wikipedia said "Ghostscript is a suite of
    software based on an
    interpreter<http://en.wikipedia.org/wiki/Interpreter_(computing)>
    for Adobe Systems <http://en.wikipedia.org/wiki/Adobe_Systems>".  Written
    by Artifax.  I do not remember loading any Artifax software.  Below is what
    is in one of these files.  they are named the same as the .PDF with an
    extension of .log (ie:  nu.pdf .. nu.log).   ???  Thanks, Mike
    Artifex Ghostscript 8.60 (2007-08-01)
    Copyright (C) 2007 Artifex Software, Inc.  All rights reserved.
    This software comes with NO WARRANTY: see the file PUBLIC for details.
    peelstring status: true: '% Copyright'
    peelstring status: true: '%!PS-Adobe-'
    Loading NimbusMonL-Regu font from %rom%lib/n022003l.pfb... 2495600 1177766
    1871424 586536 1 done.
    %%[ ProductName: Artifex Ghostscript ]%%
    %%[Page: 1]%%
    %%[LastPage]%%
    ps2pdf -sDEVICE=pdfwrite -dNOPAUSE -dNOSAFER -dAutoRotatePages=/PageByPage
    -dPDFSETTINGS=/prepress
    -dCompatibilityLevel=1.3 -sstdout=C:\Documents and Settings\MikeS\Local
    Settings\Temp\qwc13ek2 -sOutputFile=C:\Documents and Settings\MikeS\Local
    Settings\Temp\qwc13ek2.kry
    Mike
    Mike Schweichler
    [email address removed]

Maybe you are looking for