Can not edit the index.html site

I designed a Site www.alter-porthhof.de and maked it ready
for editing with contribute. Everything works fine, but I seems
that I maked one mistake: I edited the index.html on my computer
for testing, and than I gave the user domainowner the admin rights.
He can edit everything and it works fine except the index.hmtl
site.
How can I change this? Is it possible to delete the hole
contribute thing, and than to from the beginning?

1. when you use dreamweaver to build and maintain the
website, check in the index.html file, so the lock-file
(index.html.lck) will be removed
2. wehen you use Contribute too, check if you have a draft
open of the index.html file, publish the draft or discard the draft
3. check with an ftp program on the server for index.html.lck
and delete this file, this will remove the lock on the page

Similar Messages

  • Adobe Reader XI Pro does not recognize Samsung Multifunction Xpress M2875FD. I can not edit the PDF documents that I scan it. What do I do?

    Adobe Reader XI Pro does not recognize Samsung Multifunction Xpress M2875FD. I can not edit the PDF documents that I scan it. What do I do?

    We need to find out what you actually have here. There is no Adobe Reader Pro. There is Adobe Reader and Adobe Acrobat Pro.
    With Acrobat Pro, you may be able to do some editing after running OCR. With Adobe Reader, you cannot edit.
    Which one do you have?

  • I can not edit the form that I am filling in

    I can not edit the form that I am filling out. I saved it to Desktop and was allowed to fill it in. But I can not erase some words that I want to change.

    Are the words you want to change in form fields that you previously typed in?

  • Can not edit one particular HTML page

    I would like someone from Adobe to reply to this issue:
    I have a Contribute user in my company who can edit all pages in Contribute with the exception of one particular html page.  Every time she visits that one page she is prompted to 'Create Connection'.  Her permissions are fine, she hass access to that html page and the folder containing that and many other html pages.  She experiencies no issues with other html pages, nor is she ever prompted to 'Create Connection' on any other of out html pages.
    I have tried to edit this one page myself without any issues.  I have tested it out with other Contribute users and found no issues.  I even had our IT people take a look at her machine, and there was no issue.
    Please offer some solutions.

    She is using Windows 7 and CS5,  and has a customized role.
    I have confirmed that other users of the same role and are not facing this particular issue. We tried using Contribute in another machine connecting and editing the same page and are not experiencing this particular issue.
    Thank you.
    Aurelio Zappia
    Nelson Education Ltd.
    1120 Birchmount Road, Toronto, ON, Canada M1K 5G4
    Tel: 416-752-9100 Ext 4421
    [email protected]

  • Can not edit the sales order draft

    Hi All,
    we are using SAP 2005 B PL 44. we are not able to edit the sales order in the approval stage once it is approved or even not approved. for e.g. if the user sends a sales order to the higher level for approval but the higher level wants some modifications in the sales order to be done by the user and so approval request is rejected by the approver. now when the user opens the draft to change it, no row at sales order detail is editable. please let us know if there is some problem with the Patch.
    thanks,
    Binita

    hi binita,
    Check this wiki page -march-2009.
    Why a draft document in an approval process cannot be modified by the originator?
    https://www.sdn.sap.com/irj/scn/wiki?path=/label/b1/eop_march09
    Jeyakanthan

  • Can not get the index number from a StartDrag Function

    var t:Array=new Array();
    t=[d1,d2,d3,d4,d5];
    var d:Array=new Array();
    d=[t1,t2,t3,t4,t5];
    var ust:int;
    for(var i:int=0;i<t.length;i++){
    t[i].addEventListener(MouseEvent.MOUSE_DOWN, mouseDowner);
    for(var j:int=0;j<t.length;j++){
    t[j].addEventListener(MouseEvent.MOUSE_UP, mouseReleased);
    function mouseDowner(event:MouseEvent):void {
    event.target.startDrag();
    trace(t.indexOf(MovieClip(event.target)));
    var ast:int;
    ast=t.indexOf(MovieClip(event.target));
    trace(ast);
    ust=ast.valueOf();
    function mouseReleased(event:MouseEvent):void {
    event.target.stopDrag();
    if(d.indexOf(MovieClip(event.target).dropTarget.parent)!=-1){
    trace(d.indexOf(MovieClip(event.target).dropTarget.parent));}
    else{trace("not appropriate");}
    //trace(MovieClip(event.target).dropTarget.parent.name);
    var tf1:TextField = new TextField();
    tf1.text="LIGHT";
    tf1.x=-30;
    tf1.y=-30;
    t1.addChild(tf1);
    tf1.mouseEnabled=false;
    var tf2:TextField = new TextField();
    tf2.text="EASY";
    tf2.x=-30;
    tf2.y=-30;
    t2.addChild(tf2);
    tf2.mouseEnabled=false;
    var tf3:TextField = new TextField();
    tf3.text="IMPOSSIBLE";
    tf3.x=-30;
    tf3.y=-30;
    t3.addChild(tf3);
    tf3.mouseEnabled=false;
    var tf4:TextField = new TextField();
    tf4.text="FAST";
    tf4.x=-30;
    tf4.y=-30;
    t4.addChild(tf4);
    tf4.mouseEnabled=false;
    var tf5:TextField = new TextField();
    tf5.text="UGLY";
    tf5.x=-30;
    tf5.y=-30;
    t5.addChild(tf5);
    tf5.mouseEnabled=false;
    var tf6:TextField = new TextField();
    tf6.text="DARK";
    tf6.x=-30;
    tf6.y=-30;
    d1.addChild(tf6);
    tf6.mouseEnabled=false;
    var tf7:TextField = new TextField();
    tf7.text="DIFFICULT";
    tf7.x=-30;
    tf7.y=-30;
    d2.addChild(tf7);
    tf7.mouseEnabled=false;
    var tf8:TextField = new TextField();
    tf8.text="POSSIBLE";
    tf8.x=-30;
    tf8.y=-30;
    d3.addChild(tf8);
    tf8.mouseEnabled=false;
    var tf9:TextField = new TextField();
    tf9.text="SLOW";
    tf9.x=-30;
    tf9.y=-30;
    d4.addChild(tf9);
    tf9.mouseEnabled=false;
    setChildIndex(d5, 1);
    var tfh:TextField = new TextField();
    tfh.text="BEAUTIFULL";
    tfh.x=-30;
    tfh.y=-30;
    d5.addChild(tfh);
    tfh.mouseEnabled=false;
    setChildIndex(d[0], 0);
    setChildIndex(d[1], 0);
    setChildIndex(d[2], 0);
    setChildIndex(d[3], 0);
    setChildIndex(d[4], 0);
    trace(ust);

    var t:Array=new Array();
    t=[d1,d2,d3,d4,d5];
    var d:Array=new Array();
    d=[t1,t2,t3,t4,t5];
    var ust:int;
    var alt:int;
    for(var i:int=0;i<t.length;i++){
    t[i].addEventListener(MouseEvent.MOUSE_DOWN, mouseDowner);
    for(var j:int=0;j<t.length;j++){
    t[j].addEventListener(MouseEvent.MOUSE_UP, mouseReleased);
    function mouseDowner(event:MouseEvent):void {
    event.target.startDrag();
    trace(t.indexOf(MovieClip(event.currentTarget)));
    ust=t.indexOf(MovieClip(event.currentTarget));
    trace(ust);
    trace(ust);
    function mouseReleased(event:MouseEvent):void {
    event.target.stopDrag();
    if(d.indexOf(MovieClip(event.currentTarget).dropTarget.parent)!=-1){
    trace(d.indexOf(MovieClip(event.currentTarget).dropTarget.parent));
    alt=d.indexOf(MovieClip(event.currentTarget).dropTarget.parent);
    trace(alt);}
    trace(alt);
    trace(ust);
    if(alt==ust){trace("ok");}
    else{trace("not appropriate");}
    var tf1:TextField = new TextField();
    tf1.text="LIGHT";
    tf1.x=-30;
    tf1.y=-30;
    t1.addChild(tf1);
    tf1.mouseEnabled=false;
    var tf2:TextField = new TextField();
    tf2.text="EASY";
    tf2.x=-30;
    tf2.y=-30;
    t2.addChild(tf2);
    tf2.mouseEnabled=false;
    var tf3:TextField = new TextField();
    tf3.text="IMPOSSIBLE";
    tf3.x=-30;
    tf3.y=-30;
    t3.addChild(tf3);
    tf3.mouseEnabled=false;
    var tf4:TextField = new TextField();
    tf4.text="FAST";
    tf4.x=-30;
    tf4.y=-30;
    t4.addChild(tf4);
    tf4.mouseEnabled=false;
    var tf5:TextField = new TextField();
    tf5.text="UGLY";
    tf5.x=-30;
    tf5.y=-30;
    t5.addChild(tf5);
    tf5.mouseEnabled=false;
    var tf6:TextField = new TextField();
    tf6.text="DARK";
    tf6.x=-30;
    tf6.y=-30;
    d1.addChild(tf6);
    tf6.mouseEnabled=false;
    var tf7:TextField = new TextField();
    tf7.text="DIFFICULT";
    tf7.x=-30;
    tf7.y=-30;
    d2.addChild(tf7);
    tf7.mouseEnabled=false;
    var tf8:TextField = new TextField();
    tf8.text="POSSIBLE";
    tf8.x=-30;
    tf8.y=-30;
    d3.addChild(tf8);
    tf8.mouseEnabled=false;
    var tf9:TextField = new TextField();
    tf9.text="SLOW";
    tf9.x=-30;
    tf9.y=-30;
    d4.addChild(tf9);
    tf9.mouseEnabled=false;
    setChildIndex(d5, 1);
    var tfh:TextField = new TextField();
    tfh.text="BEAUTIFULL";
    tfh.x=-30;
    tfh.y=-30;
    d5.addChild(tfh);
    tfh.mouseEnabled=false;
    setChildIndex(d[0], 0);
    setChildIndex(d[1], 0);
    setChildIndex(d[2], 0);
    setChildIndex(d[3], 0);
    setChildIndex(d[4], 0);

  • Bug? Create Index can not edit index name

    Hi,
    when I want to create an index I can not edit the index name which is always tablename_index1 after I create the index with this name, delete it again and create a new one I can edit the indexname.
    this happens when you use the tabs in edit table. It works when you use context menu create index
    Regards, Juergen
    Message was edited by:
    Juergen.Schuster
    Message was edited by:
    Juergen.Schuster

    This seems to be specific to Oracle 9. I could not reproduce in 10 but did just reproduce in 9. The only way to get the index created was to refresh the connection, just refreshing the table or all tables did not do it. I will log a bug now.
    -- Sharon

  • Captivate 8, HTML5: Unable to drag objects using the index.html

    Using Captivate 8 and publishing to SWF and HTML5. In the published index.html file, I'm unable to drag anything in my drag and drop interaction.
    Disabled Master Slide Objects on Top
    Accept All disabled in Accepted Drag Sources
    Set opacity of drop targets to 0%
    The interaction works in the swf version of the course and the [project_name].htm file, just not in the index.html. When previewing in the browser from CP8, the interaction works, but not when previewing HTML5 in the browser.
    Is there something I need to do to make the drag and drop interaction work in HTML5? Something I need to activate? Edit in the code?
    Thanks,
    Kelly

    I have not upgraded at this time, but I can if that will fix the issues I'm having with the published files.
    To clarify, my project is NOT a responsive project. I'm just selecting HTML5 on the publish. And I am testing it locally, on our company server, and online. The drag and drop does not work in any instance of the index.html any of these locations.

  • Can I edit the rpt file & change the datasource before loading the report?

    We are an ISV and our application has a lot of reports.  Our reports use a SQL Server database as the data source and each SQL Server at our customer sites has a different name.
    In our testing we have determined that ReportDocument.Load tries to connect to the SQL Server that is saved in the RPT.  If it can't fine the SQL Server saved in the RPT the load take about 60 seconds while it is waiting for the SQL Server Connection to time out.
    We are using the Visual Studio 2008 version of Crystal Reports.  This did not seem to be a problem with VB6/CR8.5.
    We would like to edit the RPT and change the data source to the appropriate SQL Server before we call ReportDocument.Load.
    Is it possible to edit the rpt file and change the data source before loading the report?
    Or is there some way to tell Crystal not to try connecting to the DB
    during the report.load?
    In our case we will NEVER use the data source that is saved in the RPT, we will always change the data source using ApplyLogOnInfo.
    Thanks

    HI Todd,
    You Can Not edit the report document before ReportDocument.Load() because if you dont load the report then you dont have anything to Edit
    But as far as changing the datasource is concerned you can change that at runtime.
    For changing the datasource following code will help you if both databases have a same schema :
    Code for changing the database
    ConnectionInfo crConnectionInfo = new ConnectionInfo();
    crConnectionInfo.ServerName = "SERVER";
    crConnectionInfo.DatabaseName = "DATABASE";
    crConnectionInfo.UserID = "USERID";
    crConnectionInfo.Password = "PASSWORD";
    // Loop through the ReportObjects in a report and find all the subreports
    foreach(ReportObject crReportObject in crReportDocument.ReportDefinition.ReportObjects)
         // Check the kind of the ReportObject, if it is a subreport
         // proceed. If not skip.
         if(crReportObject.Kind == ReportObjectKind.SubreportObject)
              // Get the SubReport in the form of a ReportDocument
              string sSubreportName = ((SubreportObject)crReportObject).SubreportName;
              ReportDocument crSubReportDocument = crReportDocument.OpenSubreport(sSubreportName);
              // Use a loop to go through all the tables in the main report
              foreach(Table crTable in crSubReportDocument.Database.Tables)
    // Get the TableLogOnInfo from the Table and then set the new
    // ConnectionInfo values.
    TableLogOnInfo crLogOnInfo = crTable.LogOnInfo;
    crLogOnInfo.ConnectionInfo = crConnectionInfo;
    // Apply the TableLogOnInfo
    crTable.ApplyLogOnInfo(crLogOnInfo);
    // Set the location of the database. This value will vary from database to
    // database.
    crTable.Location = "DATABASE.OWNER.TABLENAME" or crTable.Locations;
    The sample for doing this is available on support site.
    Thanks,
    Prasad

  • How to edit the same iWeb site on 2 different Macs?

    How can I edit the same iWeb site on 2 different Macs? I know we create a folder with the files, but when copying that to Mac2, iWeb on Mac2 doesn't see that folder - I can't see what the linkage is between the app's interface and the folder of site files....

    The answer is Domain.sites (extension hidden by default). You'll find this on the Mac you used to create the site at Users/YourUserName/Library/Application Support/iWeb. Copy that file to removable media and drag it to the same location on the other Mac. Launch iWeb and you'll see the site structure in the Site Organizer.
    Once you keep the Domain package in sync between the two machines everything will work smoothly no matter which you use. There's a neat tip here which may help in this respect, but you use whatever strategy you prefer:
    http://discussions.apple.com/message.jspa?messageID=1525121#1525121
    [ Visit here for iWeb Tips, Tricks and Hacks ]

  • Can not startup the server on Enterprise server 4.1 on webadmin

    For Iplanet Enterprise webserver 4.1, why I get the message the Server is off on the Web Administrator screen but actually the web is running fine. But I can not use the Admin web site to modify something. I tried to start up the server but it appeared the errors " startup server failed". Do you has any idea?

    Caused by: java.net.UnknownHostException: Unknown protocol: 'ORMI'<<How is ORMI referenced by your configuration?

  • (bug?)Movie clip contains an object with a z value will not edit the object in place, it goes into a seperate window.

    When a movie clip contains an object with a z value, I can not edit the object in place, it goes into a seperate window.
    This changes the vanishing point relative to the movieclip instead of the stage (allong with everything else).
    This makes it very hard to keep track of where the movieclips will end up when actualy playing the animation.

    I should have explained my situation a little better. I have a machine that's made up of a number of parts, some of them are fairly large and some are quite small. When a user clicks on a part, I want to center that part on the screen and then move whole machine toward the screen until the selected part either fills the screen (for the larger parts) or the part bumps up against the front clip plane (for the smaller parts).
    I didn't think of checking for a collision with the ViewPlatform's TG, thanks for mentioning that. I wasn't sure how the ViewPlatform's location relates to the clipping plane, but I'll dig into it. I'm still learning how the ViewingPlatform, the image plate, and the clipping planes all relate to each other.

  • Can Not Edit JSP Page

    Running SJSC2.1 on XP
    I have a project which uses tables and DB
    I can not edit the JSP page (the tab for the Page1.jsp page has an asterisk) after the name.
    The IDE can not edit the page either, I add a table column for display and the design mode shows the added column but the JSP page does not show the new column, nor does the new column show when the app is deployed..
    I can edit the file with wordpad outside of the IDE
    What gives???
    Thanks

    Actually, I did say that I am able to edit the file and save it in WordPad..
    Outside of the IDE..
    Thanks anyway...
    I have restarted the IDE, Rebooted the system (which reboots the app server) made sure there are no "hanging" "app module" entries in the domain.xml file...
    Anybody know why the "*" is shown with the filename on the SJSC Design tab..
    There was also a series of very small "red somethings" to the upper left of the file name in the Files> listing
    The red somethings looked like:
    | | | |
    | o |
    I have no idea what this red something is.. I thought if might say something but even with a magnifying glass it is unreadable, if in fact the somethings is text
    Thanks
    any help would be appreciated...

  • Sharepoint Online Can not edit anything in Sharepoint designer as Site collection administrator

    Dear all,
    I am using sharepoint online and sharepoint designer 2013. Things were working fine but one day it suddenly stopped working. I have assigned site collection administrator to several accounts and I tried on different computers. I can not edit anything in
    sharepoint designer 2013. Can not edit workflows, can not edit lists. Everything seems to be bugging out. I have reinstalled sharepoint designer and tried on different computers, all of them behave the same. I checked on all accounts I assigned site collection
    admin to, they all have full control over everything. I can edit lists on the sharepoint site with no problem. Anyone knows what's going on?
    I also created another blank site, same thing happens.
    -Timothy

    Are you able to edit site in IE?
    Try below:
    http://blogs.technet.com/b/namkh/archive/2013/04/18/quot-the-web-site-has-been-configured-to-disallow-editing-with-sharepoint-designer-quot.aspx
     One straight forward way of doing it is from the UI (Which did not work in my case though :(  )
      1.  Right-click the ONET.XML file ( at \Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\SiteTemplates\<var><Service></var>\xml) for the site definition and open it with Notepad
           If you see “DisableWebDesignFeatures=wdfopensite” section in the one.xml that means your site has been configured to disallow SharePoint designer.
          You can remove this section from the file and should be able to access the site in designer now
    2.   If you are unable to get rid of “DisableWebDesignFeatures=wdfopensite” or find the correct onet.xml corresponding to your site definition, here is a simple script I put together to see if Designer is disabled on the site using the property
    vti_disablewebdesignfeatures2 and update it as required.
    Manage Permissions and Control Access to Sharepoint Designer
    http://support.microsoft.com/kb/2592376
    If this helped you resolve your issue, please mark it Answered

  • HT1338 My kid down loaded mackeeper and now I can not get rid of it.  I have tried all techniques suggesting on several sites and still can not empty the trash can.  keep getting error code -8003.  Help.

    My kid down loaded mackeeper and now I can not get rid of it.  I have tried all techniques suggesting on several sites and still can not empty the trash can.  keep getting error code -8003.  Help.

    http://reviews.cnet.com/8301-13727_7-20020873-263.html
    This should help you empty what's currently in the trash, but is no guarantee you got everything related to MacKiller off the drive. See Ogelthorpe's link.

Maybe you are looking for