Display non-secure items browser alert

Hi All,
I am working on Portal version 7.0 and I get an annoying browser security alert asking whether to display non-secure items whenever I navigate to another workset. If I click 'NO' it displays a Action Canceled screen.
Is there any way to avoid this alert from appearing? Thanks in advance.
Kiran

if it IE do like this
tools-internet options-advanced-security-uncheck warn if changing between secure and nonsecure mode
if it firefox
tools-options-security-settings-deselect the appropriate security warning
reward points if helpful

Similar Messages

  • Disable non secure items alert in apex

    Hi
    every time when a page in apex loads i see an alret
    This page contiains both secure and non secure items !! do yiu wnt to display non secure items ?
    Button Options ( Yes <> No <> Cancel )
    i dont wnt this to be happen , imean i would like to disable this alert
    pls advice
    thanks in advance
    Raj

    user13316561 wrote:
    Hi
    every time when a page in apex loads i see an alret
    This page contiains both secure and non secure items !! do yiu wnt to display non secure items ?
    Button Options ( Yes <> No <> Cancel )
    i dont wnt this to be happen , imean i would like to disable this alert
    pls advice
    thanks in advance
    Raj This is definitely a browser alert not an APEX one, essentially you have some component urls using HTTP and some using HTTPS, I've seen this with the standard Flash chart substitution strings, you will need to edit these to ensure they are consistent to your HTTPS domain.

  • Avoid bar to display or not non secure items

    When I insert to
    http://paphoscarhire.com/
    pickup date bigger than drop off date, to get error (in ie7 only) ,
    appears a window to display or not non secure items, and to
    document window a bar, well why this ? what to do to avoid this
    ?

    please clarify what it is you are asking?
    there are two possibles i see-
    One, you have a flash .swf file that will need to be
    double-clicked to work
    and will probably bring up an activeX warning.
    The fix for that is to edit the page in dw8.02 or CS3 or to
    use different
    code to display it. Google .swf eolas lawsuit
    the other possible is that the form's action is to an https
    url.
    I don't know why that is used, unless in the next step or so
    of the form
    process you are asking for credit card or other sensitive
    info.
    If i load the script page itself without submitting, i see
    there the css
    file has a path to Your hard drive.
    <link
    href="file:///C|/Documents%20and%20Settings/User/My%20Documents/My%20Webs/pc
    h/styles.css"
    that could cause the page to display a warning that there is
    a mix of secure
    and insecure data on the page.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Secure and Non-secure Items

    Is anyone else getting a "secure"/"non-secure" items warning when iTunes is being launched from a webpage?
    The page with the problem lives on "https://deimos.apple.com". I don't think that I can fix the problem locally, but the warning stops iTunes from launching and some of my users are getting upset.
    It looks like the solution could be a quick fix, the address to the .css file, and some of the images is "http://deimos.apple.com" (NO "S" in the httpS://deimos...).
    How can I report this type of problem? Who do I send the issue to?

    I think this is your web browser warning you that the web page you are view has https and http URLs. Its not directly an iTunes U issue.

  • Displaying non contract items also in the contract catalogue

    Hi SRM guru's
    While i am doing a shop using the contract catalogue in SRM 5.0.The non contract items are also displaying in the contract catalogue.
    Please let me know what i have to do for displaying only contract items in the contract catalogue.
    Thanks in advance.

    Hi,
    Please check help.sap.com.
    http://help.sap.com/saphelp_ccm20/helpdata/en/6e/89c4e2038c49969ab5ede5f6e24bd5/frameset.htm
    Regards,
    Masa

  • SSL problems with "non-secure elements"

    hello all
    We have made a WEB application based on Tomcat and Apache Struts. We have setup with SSL.
    SSL goes to Apache HTTP server, which speaks with Tomcat via apj13.
    The problem is that IE sometimes shows error message "This page contains both secure and non-secure elements. Do you want to
    display non-sescure elements ?". I think it has to something with javascript, because after that error massage
    javascript doesnt work anymore. If I click javascript error icon, it says "access is denied".
    That erorr happens randomly, I cant repeat it at the same place.
    Can anyone help me somehow ?
    At what circumstances IE displays that error ? We use version 6.0
    Maris Orbidans

    It turned out to be a Micro$oft bug
    http://support.microsoft.com/default.aspx?scid=kb%3ben-us%3b269682
    It seems that IE 6.0 has the same bug as 5.5.
    SYMPTOMS
    When you are using Secure Sockets Layer (SSL) and you click a link, you may receive the following warning message:
    This page contains both secure and non secure items. Do you want to display the non secure items?

  • How to value non-table items in Forms

    Portal 3.0.7.6.2 on NT
    I am trying to display non-table items on a Form. I want to do things like: Display the Credit Card Type (non-table item) based on the Credit Card Number (table column). Use a foreigh key (table column) to retrieve related data for display/information only on the Form. The doesn't appear to be p_session variables for these 'added' Form items so I can't use the p_session functions. Any ideas??? I'd prefer a PL/SQL solution.

    Hi Michael,
    As Dmitry said that values for non table form field cannot be displayed completely using pl/sql, u can use some pl/sql and some javascript to achieve this .
    Say, take the example of the Emp table where I would like to display the department name for the deptno. Here I'll use pl/sql to retrieve the value of department name using the deptno and use javascript to display the results in the new field added to the form.
    Steps :
    1> Create a form say, on the emp table
    2> In the field formatting section, add a new item of the type text box and add a javascript event onFocus and give the foll javascript function call for the same :-
    javascript:getval(this)
    3> In the additional pl/sql section, for the "after displaying page ..." part we'll add the following pl/sql code :-
    declare
    l_dno number(4) default null;
    l_desc varchar2(100);
    begin
    l_dno := p_session.get_value_as_NUMBER
    (p_block_name => 'DEFAULT',
    p_attribute_name => 'A_DEPTNO',
    p_index => 1);
    if l_dno is not null then
    begin
    select dname into l_desc
    from scott.dept
    where deptno = l_dno;
    exception
    when others then
    null;
    end ;
    end if;
    htp.p('<script>');
    htp.p('function getval(ele){'&#0124; &#0124;chr(10)&#0124; &#0124;
    'ele.value = "'&#0124; &#0124;nvl(l_desc,' ')&#0124; &#0124;'";}');
    htp.p('</script>');
    end;
    4> Run the form and perform a query. Place the cursor on the desc field after the page reloads with results. The department name would come up.
    Hope this helps.

  • Pick List with Non Stock Items

    Is there anyway to edit the Pick List so that it displays Non Stock Items?
    Our client does not want to track certain Items as Stock and as such they are all created as Non Stock. The Pick List is required to show that stores that the Non Stock Items are included, however they are not displayed.

    Hi Kevin,
    As the name suggests, the Pick list will only work for Items which are Inventory Items.  A non inventory item is not recoganized to have the need to be picked.
    Therefore a NON-INVENTORY Item cannot be made to print / be available on the Pick List.
    Suda

  • Flash causes "page contains secure and non-secure..."

    Hi All,
    I have a flash menu on my web store .php pages and am getting
    a "this page contains secure and non-secure items..." in IE7 in
    Vista. I think this is because of the Flash menus, but thought I
    had taken care of this by making the codebase embedding to
    "https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
    Any suggestions on how to deal with this?
    Thanks, Scott

    Thanks so much ShadowKnyte for the reply. Turns out it wasn't
    the Flash menu, after all, as it did have the embedding links set
    to https. In fact, it was my Google analytics call at the end of
    the page. It needed to be changed to:
    <script src="https://ssl.google-analytics.com/urchin.js"
    type="text/javascript"></script>
    In case that helps anyone else out.
    Cheers, Scott

  • My Firefox browser will only open websites starting with "https". What is preventing my browser to open a non-secure (http) website ? Please help!!

    I have checked my Firewall settings and added Mozilla Firefox to the list of programs accepted. I have also uninstalled Firefox & reinstalled it twice. I have turned off my antivirus & I still can't open a non-secure browser.

    Thank you, thank you, thank you FredMcD!! It was my AVAST anti-virus software. I had the "Web Shield" turned on, so all I did was turn it OFF, so now I can browse on the Internet on any website. When you first install Avast anti-virus, the Web Shield by default is turned on. This really should be turned off as not to freak out new users, especially by those that are not computer savvy. I cannot thank you enough! Take care. :-D

  • Disable Security  Alert while redirecting for secure to non secure mode.

    Hi Experts,
    I am new to the portal and came accross a very different kind of requirement for which i need you advice.
    On pressing the Logout button on the portal, the navigation/control is redirecting to the non secure Http website. My portal is on Https site. Now the issue is upon logging out I am getting the security Alert " You are about to direct to a connection that is non secure. Do you want to continue? "
    Now I have a requirement to suppress or remove this pop up. I do understand that this is the IE functionality to show the pop message and I have already uncheck the check box under Internet Options -> Advanced -> miscellaneous -> Warn if changiung between Secure to non secure.
    Please suggest !
    Thanks
    Shobhit Taggar

    Shobhit,
    Which version of IE?
    Regards,
    Sandeep Tudumu

  • Disable security Alert while redirecting from secure to non secure mode

    Hi Experts,
    I am new to the portal and came accross a very different kind of requirement for which i need you advice.
    On pressing the Logout button on the portal, the navigation/control is redirecting to the non secure Http website. My portal is on Https site. Now the issue is upon logging out I am getting the security Alert " You are about to direct to a connection that is non secure. Do you want to continue? "
    Now I have a requirement to suppress or remove this pop up. I do understand that this is the IE functionality to show the pop message and I have already uncheck the check box under Internet Options -> Advanced -> miscellaneous -> Warn if changiung between Secure to non secure.
    Please suggest !
    Thanks
    Shobhit Taggar

    Shobhit,
    Which version of IE?
    Regards,
    Sandeep Tudumu

  • SSO to ITS through WebSEAL gives secure/non-secure messages

    Hi
    We running the following setup:
    EP6 SP14
    Stand-alone ITS 6.20 patch 18
    4.7 R/3 Enterprise
    TAM/WebSEAL 5.1
    We are running SSO through WebSEAL to the portal and everything seems to be working just fine.
    But when we try to access a transactional iView or an IAC iView running on the ITS server I get a pop-up message saying "This page contains both secure and nonsecure items."
    We are accessing WebSEAL through HTTPS, we are running HTTPS between WebSEAL and the portal and HTTP between WebSEAL and ITS.
    I have tried to access the ITS through WebSEAL without using the portal, and I still get the message. So it must be something between the WebSEAL and the ITS server.
    Does anybody have any ideas what is causing this?
    Cheers,
    Jacob Vennervald

    The "secure and non-secure" message, displayed when accessing ITS through WebSEAL when using IE and HTTPS, is caused by an empty source reference (<IFRAME ... SRC="" ...>) within the ITS menu page (...d_menu.html).
    The integration guide, available on the <a href="http://www-1.ibm.com/support/docview.wss?uid=swg24003605">IBM website</a> and the <a href="http://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/developerareas/ibm">SAP SDN</a>, contains the information on how to stop the message from appearing.
    The message should not be displayed when accessing ITS through WebSEAL using HTTP.
    Regards,
    Peter Tuton.

  • Non secure webApp showing unauthorised access on submission ?

    I've created a page (non-secure) which has a web app (non-secure) but when I a entries to my fields and submit it displays system unauthorised page access. Can anyone enlighten me on this issue?

    Not to display, if you want to output a list of web app items then you can, unless you have made them secure.
    But to be able to have an edit or add form you have to be logged in.
    Dayle is correct that you can run a trick to run in the background a guide by Mario is on these forums for example on that but you do need to know javascript/jQuery to be able to implement that.

  • Mail form editor: error message regarding "non-secure active code"

    Hi,
    I'm using the editor for mail forms in CRM 2007. I'd like to create a form containing pictures, personalized fields (e.g. salutation) and hard-coded text.
    However, when stepwise adding all of these elements, error message "The content you have entered may contain non-secure active code; so it has been deleted." is displayed in the screen where all elements are shown, so, some kind of WYSIWYG error message. It's not a message of the browser, it's displayed directly in the middle of the content screen and all text, images and fields inserted in the mail before are gone.
    Any idea?
    Regards
    Wolfgang

    Hi,
    In one of my previous project I had similar type of issues when designing the mail form, the HTML code changes were happening. SAP follows specific HTML version and you have to stick to that version when coding. Ideal would be design the HTML code and test it bit by bit to ensure that the same is acceptable.
    Regards,
    Deepak
    P.S. English word for ausführbaren is probably executable
    Edited by: Deepak Ahuja on Feb 10, 2009 1:28 PM

Maybe you are looking for

  • Help me please! I can't get my music back

    Well one day i was restoring my entire computer and i deleted my itunes.( i forgot to back it up =/) Then i went on vacation and somehow my iPods touch screen no longer worked so i took it back to the store and they gave me a refurbished one. Now i d

  • Report on Production Control

    Hi everybody, The production manager in my company requires a report which should have the fields exactly as described in the sql I have written so far - SELECT Distinct T0.[DocNum] as 'Production Order No.', T0.[Type] as 'Production Order Type', T0.

  • System copy of HA EP

    Has anyone done a system copy of Portal on MSCS? I'm refreshing another box using ep prod as source and the java sys copy doc is generic and very high level. Thanks

  • How do I add a cross hair to a xy chart

    I am trying to add a cross hair to a xy chart to make the current point being plotted clearer and was wondering if there is a way to do this?

  • Help downloading Keynote for Mac OS X 10.5.8

    Hey there, I have mac os x 10.5.8 and trying to find a Keynote that will work for this version. To buy keynote it says I must have 10.6.6 but even doing the software update and restarting my computer, its still staying at 10.5.8. Please let me know w