HELP! Editing the masterpage made the site go completely down.

I get an Error File not found. now on every page.  I downloaded the master page (because they have editing with sharepoint designer disabled) and altered it.  I then tried to upload it to overwrite the master page.  Then I got the error.  Every
page I try to go to just gives me the error.  How do I set this right?
I can't use SharePoint designer because they've disabled it for editing the site.
I did open a web folder and successfully navigated tot the master page, but I can't do anything to it. I tried to replace it with an unedited version of the master, but I get a message saying "Could not find this item".

I got it... sort of.  I was able to hit back on my browser to a cached page and access site settings that still worked.  Then i set the master page to an earlier version. For some reason, the other one is now corrupt and won't roll back, but
at least now I can continue.

Similar Messages

  • Help editing the imageTracing.jsx Script

    Hello, I am looking for guidance on how to properly edit the imageTracing.jsx script in Illustrator CC. At the moment it only defaults to using a basic black and white trace, I need the trace to use one of my presets, expand the trace and save it. I need to run thousands of frames of bitmap animation through a batch trace process essentially. I've tried to batch it through Bridge, but it just throws up and error (59 I believe) and I've set up an action to try and batch that way but it never completes the batch by expanding the trace.
    I've tried editing the script myself, but if I change the preset numeral it appears to break the save and close functionality of the script. Not quite sure what I am doing wrong. I've also tried adding a line for expanding the trace but I may be using the wrong syntax  --- tracing.expandTracing(); ---
    Below is the default script as shipped with Illustrator, no changes made.
    // Main Code [Execution of script begins here]
    // uncomment to suppress Illustrator warning dialogs
    // app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
    // Collectable files
    var COLLECTABLE_EXTENSIONS = ["bmp", "gif", "giff", "jpeg", "jpg", "pct", "pic", "psd", "png", "tif", "tiff"];
    var destFolder, sourceFolder;
    // Select the source folder
    sourceFolder = Folder.selectDialog( 'Select the SOURCE folder...', '~' );
    //sourceFolder = new Folder("C:/Users/<Username>/Desktop/1");
    if(sourceFolder != null)
        // Select the destination folder
        destFolder = Folder.selectDialog( 'Select the DESTINATION folder...', '~' );       
        //destFolder = new Folder("C:/Users/<Username>/Desktop/2");
    if(sourceFolder != null && destFolder != null)
            //getting the list of the files from the input folder
            var fileList = sourceFolder.getFiles();
            var errorList;
            var tracingPresets = app.tracingPresetsList;
            for (var i=0; i<fileList.length; ++i)
                if (fileList[i] instanceof File)
                     try
                            var fileExt = String(fileList[i]).split (".").pop();
                            if(isTraceable(fileExt) != true)
                                continue;
                            // Trace the files by placing them in the document.
                            // Add a document in the app
                            var doc = app.documents.add();
                            // Add a placed item
                            var p = doc.placedItems.add();
                            p.file = new File(fileList[i]);
                            // Trace the placed item
                            var t = p.trace();
                            t.tracing.tracingOptions.loadFromPreset(tracingPresets[3]);
                            app.redraw();
                            var destFileName = fileList[i].name.substring(0, fileList[i].name.length - fileExt.length-1) + "_" +fileExt;
                            var outfile = new File(destFolder+"/"+destFileName);
                            doc.saveAs(outfile);
                            doc.close();
                    catch (err)
                            errorStr = ("Error while tracing "+ fileList[i].name  +".\n" + (err.number & 0xFFFF) + ", " + err.description);
                            // alert(errorStr);
                            errorList += fileList[i].name + " ";
           fileList = null;
           alert("Batch process complete.");
    else
           alert("Batch process aborted.");
    sourceFolder = null;
    destFolder = null;
    function isTraceable(ext)
         var result = false;
         for (var i=0; i<COLLECTABLE_EXTENSIONS.length; ++i)
              if(ext == COLLECTABLE_EXTENSIONS[i])
                result = true;
                break;
        return result;
    And this is the amended version with my change to lines 57 and 58.
    // Main Code [Execution of script begins here]
    // uncomment to suppress Illustrator warning dialogs
    // app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
    // Collectable files
    var COLLECTABLE_EXTENSIONS = ["bmp", "gif", "giff", "jpeg", "jpg", "pct", "pic", "psd", "png", "tif", "tiff"];
    var destFolder, sourceFolder;
    // Select the source folder
    sourceFolder = Folder.selectDialog( 'Select the SOURCE folder...', '~' );
    //sourceFolder = new Folder("C:/Users/<Username>/Desktop/1");
    if(sourceFolder != null)
        // Select the destination folder
        destFolder = Folder.selectDialog( 'Select the DESTINATION folder...', '~' );       
        //destFolder = new Folder("C:/Users/<Username>/Desktop/2");
    if(sourceFolder != null && destFolder != null)
            //getting the list of the files from the input folder
            var fileList = sourceFolder.getFiles();
            var errorList;
            var tracingPresets = app.tracingPresetsList;
            for (var i=0; i<fileList.length; ++i)
                if (fileList[i] instanceof File)
                     try
                            var fileExt = String(fileList[i]).split (".").pop();
                            if(isTraceable(fileExt) != true)
                                continue;
                            // Trace the files by placing them in the document.
                            // Add a document in the app
                            var doc = app.documents.add();
                            // Add a placed item
                            var p = doc.placedItems.add();
                            p.file = new File(fileList[i]);
                            // Trace the placed item
                            var t = p.trace();
                            t.tracing.tracingOptions.loadFromPreset(tracingPresets[1]);
      tracing.expandTracing();
      app.redraw();
                            var destFileName = fileList[i].name.substring(0, fileList[i].name.length - fileExt.length-1) + "_" +fileExt;
                            var outfile = new File(destFolder+"/"+destFileName);
                            doc.saveAs(outfile);
                            doc.close();
                    catch (err)
                            errorStr = ("Error while tracing "+ fileList[i].name  +".\n" + (err.number & 0xFFFF) + ", " + err.description);
                            // alert(errorStr);
                            errorList += fileList[i].name + " ";
           fileList = null;
           alert("Batch process complete.");
    else
           alert("Batch process aborted.");
    sourceFolder = null;
    destFolder = null;
    function isTraceable(ext)
         var result = false;
         for (var i=0; i<COLLECTABLE_EXTENSIONS.length; ++i)
              if(ext == COLLECTABLE_EXTENSIONS[i])
                result = true;
                break;
        return result;
    Thanks in advance for your help, as you can imagine, manually tracing thousands of images for a client job will be a nightmare if I can't sort out a batch.

    hello,
    after line 32 :
    var tracingPresets = app.tracingPresetsList;
    do an alert :
    alert( app.tracingPresetsList );
    it'll show you the name of the differents presets
    then line 57, call the good preset :
    t.tracing.tracingOptions.loadFromPreset('here the name of your preset');
    for expanding :
    change line 58 like that :
    t.tracing.expandTracing();
    you forget (t.) at the beginning
    best wishes for the new year

  • I created a website and a phone version with Adobe Muse. In order to add schema tags, I downloaded Dreamweaver and edited the website. Will these tags remain if I edit the site with muse again? Does Dreamweaver have to download the phone layout separately

    Also, I want to add Schema tags to the Muse master page copy, particularly serviceArea tags, but I'm not seeing the elements in Dreamweaver. Where are elements from the master found in Dreamweaver?

    Hi,
    I checked the first site, and there is no phone/tablet layout. On My phone, you desktop version appears fine.
    regarding second site, I see the phone layout with template content, so I doubt, if you have deleted the phone layout folder from the server, but did not delete the layout in Muse file. Hence when you publish the site again, the folder was created again.
    could you please confirm this, so I can test it further.

  • Can't edit the text in drop down css navigation menu bar

    Hi All,
    I'm just setting up contribute for a client to be able to edit a particular page on their website. The page they need to edit is essentially a huge CSS menu from which customers can choose location, then product and it will show them the price per product.  The menu is a hover menu so as someone progresses through the menu they reach the price.
    The client needs to be able to review and amend the prices reasonably regularly and can't afford to have full blow CMS so I thought contribute might work for them.  I've connected to the web page and can select the CSS menu tree but when I then go to select the text for any of the hover overs the menu disappears back down to the initial menu item i.e. the hovered menu item doesn't stay visible and so I can't amend it.
    Does anyone know if this is possible to do in contribute and if so can you explain how for me please?
    Thanks
    Andy
    PS. The page in question can be found at http://www.visionltd.co.uk/price-calculator.html

    Hi,
         He can try editing that web page in an external application through Contribute. So, after browsing to the web page, he can click Ctrl+Shift+E, to edit the web page in an external application, there he can change the prices, save his changes, and publish the web page.
    Hope this helps.

  • Edit the "new account" drop down

    Is it possible to edit the drop down menu for the mail "new account wizzard"?? I would like to make an entry for my POP server and take the .Mac off the #1 spot.

    Thanks for the responce Mulder.
    I am not clear as to what I am lookng for.
    Open mail, go to accounts, and create a new account (the plus at the bottom of the window). This brins up the "wizzard". I want to edit what you see in that wizzard, where the 1st drop down has
    - .Mac
    - Pop
    - IMAP
    - Exchange
    I have seen somewhere a way to edit that wizzard so when you make a NEW account, you can preconfigure some of the settings.
    Powerbook G4 I have never met a computer wizzard that I liked...

  • Unable to edit the site in sharepoint designer 2013

    Hi,
    I have created a custom list for one of my requirement, and I want to change the look and feel of the custom list view, so I was trying to edit this list in SharePoint Designer 2013, I'm able to open the list in SPD 2013, but unable to edit anything since
    I'm getting the "This page does not contain any regions that you have permission to edit." error.
    It will highly appreciated if anyone help in resolving the issue.
    Thanks in advance.
    Anil

    Anil,
    Below links will help you. Please use them.
    SharePoint
    Designer 2013 – How to modify List View web part filters and parameters
    Create
    a custom list view using SharePoint Designer
    Share point list view custmization
    in sharepoint 2013
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Crashes in yahoo games before the site is completely loaded

    Every time i try and browse games on yahoo i get kicked out and off of safari

    Do the games have their own app versions in your country's App Store that are compatible with iOS 5 ?
    If not then you could try clearing Safari's cache : Settings > Safari > Clear Cookies And Data and also Clear History
    And try closing Safari via the iPad's taskbar and do a soft-reset and see if that helps. To close Safari : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.
    (I've asked for your post to be moved to the Using iPad forum, this forum is for questions about the iTunes store.)

  • I cannot access itunes store from itunes. Is the site server still down?

    I cannot access itunes store on itunes. Is the server still down?

    Hey fanilow12,
    The article linked below details a number of troubleshooting steps that can help restore your ability to connect to the iTunes Store.
    Can't connect to the iTunes Store
    https://support.apple.com/en-us/HT201400
    Regards,
    Allen

  • Is the Adobe cloud completely down?

    Creative cloud down?? No matter what I do it keeps asking for my *&)() birthday. Is this a scam, crashed Adobe site? Even the installed versions on the desktop say "unable to complete your request, the internal signature is incorrect". I should have stuck with the full license I guess.
    We changed the password, sent back the verification email, relogged in. Rebooted PC.
    Help? Gotta go to a shoot, but HAVE to edit tonight. Do we have to buy a full boxed copy as well? This isn't supposed to happen!
    Kevin

    It must not be down or this forum would be going crazy with posts. I will have to try it again tomorrow. Seriously, no one else is having issues like this?
    I have an old laptop at home with CS4 on it, will try to use that tonight.

  • Is it good to let the battery run completely down?

    Or should it always be plugged in? Does it wear out faster to keep charging it? I would think it would.

    Glorfindeal wrote:
    I agree all the way to the point of the calibration. You only need to calibrate if the battery indicator seems to be reporting the wrong information. lithium ion/polymer batteries can be damaged if you discharge all the way. I only calibrate mine when I have to, no more.
    Glor
    Glorfindeal... I agree completely. I actually don't remember the last time I calibrated my battery. I'm just usually a little reserved when it comes to recommending something different from what Apple says:
    *Calibrate the battery in your MacBook or MacBook Pro every month or two to keep your battery functioning at its fullest capacity.*
    Typically you need to really really really discharge a Li Ion/Poly battery to damage it. You basically need to let it run down until your machine won't start... and then leave it unused for a few months to let the charge drop even lower. The circuitry in the battery is specifically designed to not permit a recharge if it drops below that super-low point.
    Regardless... I do the same thing... Unless I'm having a problem, I don't calibrate it. If I plan on being in a situation where I'll be using my MacBook on battery quite a bit... I'll usually let it run down just to make sure it has good battery life (as I don't do this often because it's almost always plugged in).

  • My macpro is not being able to connect for battery charging and could not be open since the battery is completely down

    my battery is not charging

    It still should work with the power adapter connected.  If not, then an appointment at an Apple store genius bar is your best option.
    Ciao.

  • I can't edit the page, because somebody else is logged in

    I recently had to purcahse a new contribute package and link it up to the same website that we update. However, the original person who used the existing contribute has now moved overseas, and it says at the top:
    'You cant edit this page because XXXX is currently editing it. Please contact XXXX for assistance.
    can anyone please advise on how to deal with this sittuation.

    I had the same sort of problem but there was never anyone else entitled to edit the site - all that happened is that I upgraded from Contribute 3.11 to Contribute CS4 and since that time I cannot edit a previously edited page as the draft cannot be saved due to a lock file problem.
    I have deleted the one and only .LCK file from my site - but it was for a different page anyway and of course made no difference.
    I was administrator.  I am still administrator.
    I suspect a silly conflict between residual Contribute 3.11 files and new CS4 files but of course the documentation assumes that everything is hunky dory and doesn't help much.
    Any thoughts appreciated - any directories that I can just delete to start again without impacting my content?
    Best Regards
    Ian

  • Control order of CustomAction.. added to the 'Site Action' menu drop down?

    Hello,
    I have a module through which I am using <CustomAction ...> to add some desired action items to the 'Site Action' drop down. Custom actions are added successfully; however, the order in which they appear is the
    problem.  'sequence' attribute is no help at this point as i have tried setting it to '0', '10', and '20' but no go.
    You time and response is greatly appreciated.
    +Shahzad.

    Here's a few from the 2013 Settings menu:
    Menu Group
    Sequence
    ID
    2013 display name
    100
    110
    MenuItem_ShareThisSite
    Shared with…
    200
    210
    MenuItem_EditPage
    Edit page
    200
    220
    MenuItem_CreatePage
    Add a page
    200
    230
    MenuItem_Create
    Add an app
    200
    240
    MenuItem_ViewAllSiteContents
    Site Contents
    300
    310
    MenuItem_ChangeTheLook
    Change the look
    300
    320
    MenuItem_Settings
    Site settings
    300
    330
    MenuItem_SwitchToMobileView
    2147483647
    Getting started
    Mike Smith TechTrainingNotes.blogspot.com
    Books:
    SharePoint 2007 2010 Customization for the Site Owner,
    SharePoint 2010 Security for the Site Owner

  • Where does a sharepoint admin find the site settings for a mysite site collection?

    We are using sp 2010 service pack 2.
    When I look at another user's mysite, logged in as an admin (spsadmin2 is my daily admin type account), I don't seem to have access to the site settings.
    However, if I log in as the fundamental farm admin account (spfarm), I do see the site settings drop down.
    The site settings I see are not the site settings for a specific user's site collection. It is, instead, the settings for "mysites" in general.
    So, how can I look at the site settings for a specific user's site collection?
    I wanted to be able to look at their site collection recycle bin to see if something deleted was still there.
    Thank you!

    So, our mysites are associated with a web application separate from our other sharepoint sites.
    The mysites root site collection has our SharePoint admins listed as full control owners.
    The SharePoint admins also are listed as Farm admins.
    Because there is only 1 secondary site collection owner permitted, if that is the means by which someone gets access to the site collection settings and permissions, then it seems like we would have to keep changing the secondary owner quite frequently.
    You mentioned being able to set permissions on "the group" to have rights.
    Which group? The Personal Sites Owners group of our mysites web app? Or another group?
    Thank you for your help!

  • How do you open the site definition in Sharepoint Designer?

    Hi,
    I am looking to open this to try to edit it. Where is it and how do you open it?
    Thanks

    Hi,
    According to your post, my understanding is that you wanted to edit the site definition in SharePoint Designer.
    A site definition is a collection of files stored on the server used for all new sites and templates created in SharePoint.
    They provide preconfigured lists, Web Parts, navigation bars, features, and so on for each site.
    The role of the site definition becomes especially important the next time you perform server-wide maintenance, for example upgrading the server, applying a solution upgrade, or a branding exercise.
    Not only is the site definition updated, but all the pages associated with it are updated, which keeps them consistent and easily manageable.
    Microsoft SharePoint Designer 2010 is a Web and application design program used to design, build, and customize Web sites running on SharePoint Foundation 2010 and Microsoft SharePoint Server 2010. With SharePoint Designer 2010, you can create data-rich
    Web pages, build powerful workflow-enabled solutions, and design the look and feel of your site.
    The following articles about the SharePoint Designer and use the Designer to edit the master page, I think they are the good beginning for you.
    Get Started with SharePoint Designer 2010
    Managing SharePoint Designer 2010
    Customize a master page to brand your site
    How to create and change the master page via SharePoint Designer
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

Maybe you are looking for