How to disable warning attacked page on single website?

The website is my own site. It been attacked but already fixed it.

Hmm, that should be warning should be disabled by default.
Is it possible that you have a modified *-config.xml that sets <warn-no-constructor>true</warn-no-constructor> or additional command-line arguments that set -warn-no-constructor=true?

Similar Messages

  • How to disable the "turn page" event triggered by the scroll/swipe function?

    The problem is as follows.
    The default behaviour of Acrobat Reader (both stand alone and browser plug-in) is to allow scrolling/swiping with the mouse wheel/trackpad. This is useful when the pdf's page length is greater than the screen's own length, because you can read the pdf with no need to distract your attention from the text to the scrollbar button. However, the same scroll/swipe function turns into a usability problem when the pdf is embedded in a html page and the pdf's page length is smaller than the browser's length. In this case, the scroll/swipe turns the page, distracting your attention from the text to the unintended behaviour of the browser. What happens is that you are so used to scrolling/swiping that you did it unintentionally in the pdf's caption area. You really did not want to turn pages in the pdf. Furthermore, if the pdf takes the whole html page, being a website, the scroll/swipe function flips the website pages in ways that neither the reader nor the writer had ever intended. Hence the question. How to disable, in this case, the "turn page" event triggered by the scroll/swipe function? A JavaScript should do, but the SDK documents did not help so far...
    Message was edited by: 41457173
    Message was edited by: 41457173

    ... or release a patch for the API,
    ... or suggest an alternative route to achieve the intended result.

  • Forms personalisation - Vendor Form - How to Disable a Tab Page

    Hi,
    I am not a Forms 6i/9i programmer, although I have an appreciation of the concepts and can look at forms in Form builder. I have been looking at forms personalisation and have used it to execute plsql via the built in 'execute a procedure'. I can also see how to disable blocks, or items, but I haven;t managed to disable a form tab page i.e. On the vendor form there are tabs for GENERAL, CLASSIFICATION etc.
    I have tried using the object type Tab Page, but the poplist doesn;t list any tab pages. Also if you choose Canvas, the list of Canvases appears but generates errors when you try and use the form (complaining of tab page ids).
    I understand that to disable a tab page programatically, you would use SET_TAB_PAGE_PROPERTY i.e. in a forms trigger or in CUSTOM.pll
    I would have thought Forms personalisation could do this.
    Any ideas would be appreciated
    mark
    I under

    What you can do is hiding the tabs (see pic below) and force the active tab programmaticily
    Hope this helps
    Message Edité par TiTou le 09-20-2006 10:35 AM
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"
    Attachments:
    Clipboard01.png ‏151 KB

  • How to disable a JSP page caching?

              Hello there,
              How do I can disable a JSP page caching? This is becoz when the first time i ran
              a EJB calling from a JSP, it works, but after the second time, it unable to call
              the same EJB again, I double check the console and the database, the same records
              does not appears after the second calling, i suspect is caching problem.
              TQ
              Neo
              KL
              

    Neo, wls does not cache jsp page by default. We do have a custom tag for
              it as you can see here
              http://e-docs.bea.com/wls/docs61/jsp/customtags.html#overview.
              Regards,
              Joseph Nguyen
              BEA Support
              "Neo" <[email protected]> wrote in message
              news:3d4a428d$[email protected]..
              >
              > Hello there,
              >
              > How do I can disable a JSP page caching? This is becoz when the first time
              i ran
              > a EJB calling from a JSP, it works, but after the second time, it unable
              to call
              > the same EJB again, I double check the console and the database, the same
              records
              > does not appears after the second calling, i suspect is caching problem.
              >
              > TQ
              >
              > Neo
              > KL
              

  • How to publish only select pages of a website

    I have built multiple websites using iWeb, which I publish through MobileMe. Is there a way to publish the files from one of iWeb websites (or one page from one website for that matter) without iWeb and MobileMe publishing every updated file in iWeb?
    I cannot find any information about this in the iWeb online Help. It is very frustrating because some of my sites and pages are not ready to be published, but when I click the Publish button in iWeb, iWeb/MobileMe publishes every file in iWeb.
    How do I publish just one site or just one page from one site? Please help.
    Cheers, TruthMaker

    For ease of updating and publish it is better to build all your sites on separate domain files.....
    http://iwebfaq.org/site/iWebMultiplewebsites.html
    When publishing to MobileMe its not so easy to not publish a page or two.
    What you can do is create a second site on the same domain file and drag the pages you don't want to be seen down to this. They will be published but will not be seen on the website as their files will be in a different folder in Finder/Go/iDisk/My iDisk/Web/Sites.
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • How can I disable warning: "This page contains some SWF objects..."

    "This page contains some SWF objects that may not work properly in the most recent version of IE..."
    Is there a way to suppress this warning?! I'm doing a find and replace on an old web site, which does not pay well! and this pops up on every page. I have to click on it to continue every time. Making me mad.
    Thanks

    Thanks for answering. In my case that won't work because I'm doing a global find and replace of some text.
    I agree though, that process would eliminate the message when I have to come back to edit the site again. It's just the thought of many dozens of pages that would need it and to be honest, I'm really not feeling that motivated to do all the up front work right now
    Like I said, there should have been a setting for this...

  • How to disable JTable Column Dragging (only single column)

    How could i disable a single column from being dragged in JTable?
    I need to fix the first column from being dragged in JTable and all other columns except the first can be dragged. how would i accomplish this task ?
    well, i know how to fix all column in jtable from being dragged using
    table.getTableHeader().setReorderingAllowed(false);But dont know how to fix only a single column. is there any method for doing this. or i have to implement any other logic?
    Please help me !
    Thanks

    The question is why do you have this requirement. I figure if the user wants to reorder the colum, let them, the table won't break.
    Maybe something like this would be acceptable:
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.table.*;
    public class FixedColumnScrollPane extends JScrollPane
        public FixedColumnScrollPane(JTable main, int fixedColumns)
            super( main );
            //  Use the table to create a new table sharing
            //  the DataModel and ListSelectionModel
            JTable fixed = new JTable( main.getModel() );
            fixed.setFocusable( false );
            fixed.setSelectionModel( main.getSelectionModel() );
            fixed.getTableHeader().setReorderingAllowed( false );
    //        fixed.getTableHeader().setResizingAllowed( false );
            fixed.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
            main.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
            //  Remove the fixed columns from the main table
            for (int i = 0; i < fixedColumns; i++)
                TableColumnModel columnModel = main.getColumnModel();
                columnModel.removeColumn( columnModel.getColumn( 0 ) );
            //  Remove the non-fixed columns from the fixed table
            while (fixed.getColumnCount() > fixedColumns)
                TableColumnModel columnModel = fixed.getColumnModel();
                columnModel.removeColumn( columnModel.getColumn( fixedColumns ) );
            //  Add the fixed table to the scroll pane
            fixed.setPreferredScrollableViewportSize(fixed.getPreferredSize());
            setRowHeaderView( fixed );
            setCorner(JScrollPane.UPPER_LEFT_CORNER, fixed.getTableHeader());
        public static void main(String[] args)
            //  Build your table normally
            JTable table = new JTable(10, 8);
            table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
            JScrollPane scrollPane= new FixedColumnScrollPane(table, 1 );
            JFrame frame = new JFrame("Table Fixed Column Demo");
            frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
            frame.getContentPane().add( scrollPane );
            frame.setSize(400, 300);
            frame.setVisible(true);
    }Or maybe you should be using a Row Header. A row header is like the column header of JTable. It remains fixed on the left side of the scroll pane. Search the forum for examples using "setrowheaderview".

  • How to disable iCloud sync for a single app/game

    Since I bought the infinity blade game for it, I have a problem. Normally, both my sons play games one on my iphone and the other on the ipad, Now, we found the game syncing without us telling it to over iCloud and both the devices behave as if the game continues from the previous player on the last played device.
    Going through all the menus in icloud settings, there does not seem to be an easy way of disabling the game from syncing apart from disable all apps from syncing meaning all my Pages and Numbers documents wont sync.
    I did try the game and the game forums itself, which does not have any way to disable icloud sync.
    Both devices run the latest iOS and game updates. Can anyone help please.

    Your client needs their own Apple Developer account.

  • How to disable Warning 1104

    Just switched my project to use the new compiler, and I get tons of these warnings:
    1104: No constructor function was specified for class MyClass
    As I understand, this is not a real problem, but somehow by default the warning is turned on.
    Is there a way to disable it?

    Hmm, that should be warning should be disabled by default.
    Is it possible that you have a modified *-config.xml that sets <warn-no-constructor>true</warn-no-constructor> or additional command-line arguments that set -warn-no-constructor=true?

  • Firefox 3.6.10 update won't load on restart (tried many times) and exits after warning to restart again - how to disable warning so don't have to start twice every time I use Firefox?

    I regret agreeing to download Firefox 3.6.10 update, as it is somehow corrupted, and will not load when I restart. Subsequently, every time I start Firefox, it warns "Update Ready to Install", then when I don't restart (if I restart, it won't load) it exits, and I have to start Firefox a second time. Then it works without the warning, but when I exit and start Firefox again, the warning returns and the cycle repeats. This is such a nuisance I have gone back (reluctantly) to Explorer. Is there anyway for me to get rid of this corrupted update and go back to before I downloaded the fateful update?

    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Shockwave Flash 9.0 r999
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    In Firefox 3.6 and later versions you need the Next-Generation Java™ Plug-In present in Java 6 U10 and later (Linux: libnpjp2.so; Windows: npjp2.dll).
    http://java.com/en/download/faq/firefox_newplugin.xml
    See also http://java.sun.com/javase/6/webnotes/install/jre/manual-plugin-install-linux.html

  • How to disable warning message?

    i design a form. when i close the form by using default close button, it showing a message box
    do you want to save changes you made?
    can i deisable this message, how?
    thanks
    yash

    i used:
    create a program unit contain code:
    PROCEDURE emp_birth IS
    l_count number :=0;
    cursor c1 is
    SELECT A.EMP_NO,A.FIRST_NM,A.MIDDLE_NM,A.LAST_NM,B.BIRTH_DT,
    C.DESIG_DESC
    from HRT_EMP_MST A,HRT_EMPOTH_MST B,HRT_DESIG_MST C
    WHERE A.EMP_NO=B.EMP_NO
    AND C.DESIG_CD=A.DESGN_CD
    AND A.COMP_CD='COMP2'
    AND A.ACTIVE_FLG='Y'
    AND to_char(B.birth_dt,'DD-MM')=TO_CHAR(SYSDATE,'DD-MM');
    begin
    FIRST_RECORD;
    FOR I IN C1
         LOOP
         :HRT_EMP_MST.EMP_NO:=I.EMP_NO;
         :HRT_EMP_MST.FIRST_NM:=I.FIRST_NM;
         :HRT_EMP_MST.MIDDLE_NM:=I.MIDDLE_NM;
         :HRT_EMP_MST.LAST_NM:=I.LAST_NM;
         :HRT_EMP_MST.BIRTH_DT:=I.BIRTH_DT;
         :HRT_EMP_MST.DESIG_DESC:=I.DESIG_DESC;
         IF C1%NOTFOUND     THEN
              EXIT;
         END IF;
         NEXT_RECORD;
         END LOOP;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    Exit_Form(No_Validate);
    end;
    this program unit is called at when-new-form-instance trigger.
    please advice changes sothat mesage do not display..
    Edited by: yash_08031983 on Feb 7, 2011 1:03 AM
    Edited by: yash_08031983 on Feb 7, 2011 1:05 AM

  • How to disable warning messages in Acrobat CC?

    For example, the cropping feature.
    Thanks.

    You better ask in the Acrobat forum (this is the Acrobat.com forum) and provide some additional information.

  • How to disable safari autofill for a specific website

    Hi!
    I'm using Safari 6.1 and would like to disable autofill for a specific website. I'm learning french on duolingo, and it involves typing phrases, and similar ones tend to come up. Now safari saves every phrase I write, and tries to autocomplete other ones, which is quite annoying since i can't write a shorter sentence without it being autocompleted to something wrong. I've figured out how to remove the site from autofill, but it keeps coming back every time I write something new, and I don't want to keep removing it. Can I permanently disable autofill (or autocomplete, or whatever it's called) for that specific website?
    Thank you!

    From your Safari menu bar click Safari > Preferences then the Privacy tab.
    Click:  Remove All Website Data
    Quit and relaunch Safari then try that website.

  • How do i add a page to my website that includes a list of items for sale? We need to be able to add items, sort them and delete them? Each line item will have a video icon to view the items for sell.

    I'm building a website for a cattle broker who needs to post cattle lots for sale, which includes a description of the cattle(several bits of information) and a video of the cattle. This will be a list that can be sorted by key fields.

    lesliebrownadobe wrote:
    would need to have a video icon/link associated with each record to show the buyer what the cattle look like prior to purchase.
    No problem Les, the video link could be included in any table cell in the same row as the associated data.
    The code for the first row in the example would look like
    <tr class=" odd">
    <td>1</td>
    <td>Z</td>
    <td>01-01-2006</td>
    <td>€ 5.00</td>
    <td><a href="https://www.youtube.com/watch?v=kYalp3Wyw50">Video</a></td>
    </tr>
    This method assumes ongoing updates would be done by you, rather than the client.

  • How to disable parent window while popup window is coming

    Hi,
    I am working on Oracle Applications 11i.
    I am able to get the popup window using the Java script in the controller.
    Please see the below code for the reference.
    String pubOrderId = pageContext.getParameter("orderId");
    StringBuffer l_buffer = new StringBuffer();
    StringBuffer l_buffer1 = new StringBuffer();
    l_buffer.append("javascript:mywin = openWindow(top, '");
    l_buffer1.append("/jct/oracle/apps/xxpwc/entry/webui/AddAttachmentPG");
    l_buffer1.append("&retainAM=Y");
    l_buffer1.append("&pubOrderId="+pubOrderId);
    String url = "/OA_HTML/OA.jsp?page="+l_buffer1.toString();
    OAUrl popupUrl = new OAUrl(url, OAWebBeanConstants.ADD_BREAD_CRUMB_SAVE );
    String strUrl = popupUrl.createURL(pageContext);
    l_buffer.append(strUrl.toString());
    l_buffer.append("', 'lovWindow', {width:750, height:550},false,'dialog',null);");
    pageContext.putJavaScriptFunction("SomeName",l_buffer.toString());
    But here the problem is, even though popup window is there, i am able to do the actions on the parent page.
    So how to disable the parent page, while getting the popup window.
    Thanks in advance.
    Thanks
    Naga

    Hi,
    You can use javaScript for disabling parent window as well.
    Refer below link for the same:
    http://www.codeproject.com/Questions/393481/Parent-window-not-disabling-when-pop-up-appears-vi
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                           

Maybe you are looking for