Replaced body when setting status_line

This is a special situation on a client system APEX. Before, we used mod_plsql, now we are on ADR 2.0.9.

The problematic part is a procedure within a package called via a URL, for example http://myschema.MyProcedure.MyFunction?param1=ABC & param2 = def

This function tests the input parameters, especially if this combination is allowed. In the case where it is not allowed, it returns the HTTP 401 status. This is done using:

BEGIN
    ...
    IF not_authorized
    THEN
        OWA_UTIL.status_line
          ( nstatus => 401
          , creason => 'This combination of input parameters is unauthorized!'
          );
        HTP.P('This combination of input parameters is unauthorized!');
    ELSE
        ..
    END IF;
    ...
END;

To using mod_plsql actually returned HTTP 401 and the string 'this combination of input parameters is not allowed!' in the body. Now, using ADR we seem to an error page, see here a curl response:

HTTP/1.1 401 Unauthorized
Date: Mon, 12 Jan 2015 17:22:13 GMT
Server: Oracle-REST-Data-Services2.0.9.224.01.05
X-DB-Content-length: 75
Content-Type: text/html;charset=UTF-8
Connection: close
Transfer-Encoding: chunked

<!DOCTYPE html>
<!--[if lt IE 7 ]> <html class="ie6"> <![endif]-->
<!--[if IE 7 ]>         <html class="ie7 no-css3"> <![endif]-->
<!--[if IE 8 ]>         <html class="ie8 no-css3"> <![endif]-->
<!--[if IE 9 ]>         <html class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html>
<!--<![endif]-->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<style type="text/css" media="screen">html,body,div,span,h3,p,ol,ul,li,header,hgroup{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}header,hgroup{display:block}body{font:normal 12px/16px Arial,sans-serif;margin:0 auto;background:#6a9cda}header#xHeader{border-bottom:1px solid #8fa4c0;position:relative;z-index:10;background:none #000}header#xHeader hgroup{width:974px;margin:0 auto;position:relative;height:36px;background:none #000}header#xHeader a#uLogo{margin:8px 0;display:inline-block;font:bold 14px/20px Arial,sans-serif;color:#AAA;text-decoration:none}header#xHeader a#uLogo span.logo{color:#F00}.no-css3 div#xContentContainer div.xContent{padding-top:14px}.no-css3 div#xContentContainer div.xContent div.xMainLeft h2{margin-top:0}div#xWhiteContentContainer{margin-bottom:30px}div#xWhiteContentContainer.xContentWide{background:#FFF;margin-bottom:0}div#xWhiteContentContainer.xContentWide div.xWhiteContent{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}div#xWhiteContentContainer div.xWhiteContent{width:974px;margin:0 auto;padding:0 0 20px 0;background:#FFF;min-height:500px;-moz-border-radius:0 4px 4px 4px;-webkit-border-radius:0 4px 4px 4px;border-radius:0 4px 4px 4px;-moz-box-shadow:0 1px 2px rgba(0,0,0,0.15);-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.15);box-shadow:0 1px 2px rgba(0,0,0,0.15)}div#xContentHeaderContainer{background:#6a9cda;-moz-box-shadow:0 -1px 0 rgba(0,0,0,0.15) inset;-webkit-box-shadow:0 -1px 0 rgba(0,0,0,0.15) inset;box-shadow:0 -1px 0 rgba(0,0,0,0.15) inset}div#xContentHeaderContainer div.xContentHeader{width:974px;margin:0 auto;padding:30px 0 32px 0;position:relative;min-height:60px}div#xContentHeaderContainer div.xContentHeader h3{font:bold 24px/24px Arial,sans-serif;color:#fff;text-shadow:0 2px 1px rgba(0,0,0,0.25);margin:0 0 20px 0}div#xFooterContainer{min-height:200px;border-top:1px solid rgba(0,0,0,0.15);background:#6a9cda}body.errorPage div#xContentHeaderContainer div.xContentHeader{min-height:30px}body.errorPage div#xContentHeaderContainer div.xContentHeader h3{font:bold 30px/30px Arial,sans-serif;color:#FFF;text-shadow:0 1px 2px rgba(0,0,0,0.25);margin:0}div.errorPage p{font:normal 14px/20px Arial,sans-seri;color:#666;padding:0 0 10px 0}div.errorPage ul{list-style:disc outside;padding:0 10px 0;margin:0 0 20px 0}div.errorPage ul li{font:normal 12px/16px Arial,sans-serif;color:#666;margin:0 0 8px 10px}pre{font-family:Consolas,"Lucida Console","Courier New",Courier,monospace}
</style>
<script type="text/javascript" charset="utf-8">
    'header hgroup'.replace(/\w+/g,
            function(n) {
                document.createElement(n)
            })
</script>
<title>Unauthorized</title>
</head>
<body class="errorPage">
    <header id="xHeader">
        <hgroup>
            <a id="uLogo" href="./"><span class="logo">ORACLE</span>
                REST DATA SERVICES</a>
        </hgroup>
    </header>
    <div id="xContentHeaderContainer">
        <div class="xContentHeader">
            <h3>
                <span class="statusCode">401</span> - <span
                    class="statusMessage">Unauthorized</span>
            </h3>
        </div>
    </div>
    <div id="xWhiteContentContainer" class="xContentWide">
        <div class="xWhiteContent">
            <div class="errorPage">
                <p>
                <ul class="reasons">
                </ul>
                </p>
                <p>
                <pre></pre>
                </p>
                <p>
                <pre></pre>
                </p>
            </div>
        </div>
    </div>
    <div id="xFooterContainer">
    </div>
</body>
</html>


Any ideas how to prevent this auto-generated error page and have my channel in the body again?

Kind regards

Peter

Update: some more information.

Above PL/SQL code extract works as expected when used within a Restful WS (GET PLSQL). Here, it shows the body comes out with htp.p.

It does NOT work correctly when called as a procedure via a URL.

Any ideas?

Post edited by: peter_raganitsch

Hi Peter,.

Thank you for your detailed report. This has always been an ADR/APEX listener behavior, if the OWA response headers contain an error state, then as soon as the status line is encountered, additional processing of the response is abandoned and the error page is generated.

If you want to set a custom error page, you can do so by the following the instructions here:

https://cdivilly.WordPress.com/2015/01/13/configuring-custom-error-pages-with-Oracle-rest-data-services/

Tags: Database

Similar Questions

  • a replacement lcd will set a screen with a gray screen or a screen that has lines

    a replacement lcd will set a screen with a gray screen or a screen that has lines

    To make sure that it is not software related, set it back to factory settings using iTunes on your computer.

    If the screen still has problems after that, have it repaired by Apple or an Apple authorized service provider.

    Use iTunes to restore your device to factory settings - Support Apple iOS

    Apple iPhone - contact Support - support

  • When setting up my computer, I put a password and would like to now remove someone can tell me how to do this

    When setting up my computer, I put a password for anyone else cannot access my computer and I need to remove it someone can tell me how to uninstall this password I can't sart menu or anything else thanks

    Go to the control panel and select "user accounts".

    Here, select the name of your account on the bottom and select "Remove password"

    Here, you will be asked to put your password in. Then click on 'Ok '.

  • When setting up my computer I put pop3 (for incoming & outgoing mail) and he was wrong. I can't get into my email. How can I change?

    I need to change my coming in and off-host goes and I don't know how. I did when setting up my computor and I don't know how I could even return in this category. I know that the error of Socker: 11001 and the error number: 0x800CCCOD.

    Windows Mail?
     
  • When setting type in photoshop for printing purposes what setting should the type set to crisp or too strong?

    When setting type in photoshop for printing purposes what setting should the type set to crisp or too strong?

    Never, ever, rasterized text for printing purposes.

  • 4.0 ai2 - cannot select and copy the code from a package body when opened in read-only mode

    4.0 ai2 - cannot select and copy the code from a package body when opened in read-only mode

    He was connected/buggy. It is not fixed yet. But it will be.

  • Error when setting the parameters on the tool

    Hi experts,

    I want to use ODIsqlunload, but it still gives the error. My win7 OS

    error:

    oracle.odi.oditools.OdiToolInvalidParameterException: error when setting the parameters on the tool
    at com.sunopsis.dwg.function.SnpsFunctionBase.getCoreOdiTool(SnpsFunctionBase.java:620)
    at com.sunopsis.dwg.function.SnpsFunctionBase.getSunopsisApi(SnpsFunctionBase.java:494)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.executeOdiCommand(SnpSessTaskSql.java:1415)
    at oracle.odi.runtime.agent.execution.cmd.OdiCommandExecutor.execute(OdiCommandExecutor.java:32)
    at oracle.odi.runtime.agent.execution.cmd.OdiCommandExecutor.execute(OdiCommandExecutor.java:1)
    at oracle.odi.runtime.agent.execution.TaskExecutionHandler.handleTask(TaskExecutionHandler.java:50)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2906)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2609)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:540)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:453)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1740)
    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$ 2.doAction(StartSessRequestProcessor.java:338)
    at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:214)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:272)
    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$ 0 (StartSessRequestProcessor.java:263)
    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$ StartSessTask.doExecute (StartSessRequestProcessor.java:822)
    at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:123)
    to oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$ 2.run(DefaultAgentTaskExecutor.java:83)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: java.lang.Exception: ODI-30044: invalid parameter:-file
    at com.sunopsis.dwg.function.SnpsFunctionBase.actionSetParameters(SnpsFunctionBase.java:251)
    at com.sunopsis.dwg.function.SnpsFunctionBase.setParameters(SnpsFunctionBase.java:799)
    at com.sunopsis.dwg.function.SnpsFunctionBase.getCoreOdiTool(SnpsFunctionBase.java:616)
    ... 18 more

    and the code is:

    "SnpsSqlUnload «-file=F:\temp/data_6001_1001.dat" "-driver oracle.jdbc.OracleDriver =" «-URL=jdbc:oracle:thin:@musty-Pc:1521:XE "-user = system-pass = < @= snpRef.getInfo ("SRC_ENCODED_PASS") @ > - file_format variable = - charset_encoding = UTF8 '-row_sep = \n" "-date_format = YYYY-MM-DD '-fetch_size = 1000 '-field_sep = #
    Select / * + * /.

    columns...
    table...
    where (1 = 1)

    I have try this - settings file:

    F:\data_6001_1001.dat
    F:\test.txt
    C:\Test\test.txt
    C:/data_6001_1001.dat
    C:\test/data_6001_1001.txt
    c:/test/data_6001_1001.txt
    C:\test/data_6001_1001.dat

    all of them same result :(

    Please help me experts :(

    Hi experts, I have solved my problem :))

    my code like this:

    "SnpsSqlUnload «-file=F:\temp/data_6001_1001.dat" "-driver oracle.jdbc.OracleDriver =" «-URL=jdbc:oracle:thin:@musty-Pc:1521:XE "- user = system-pass =<@=snpRef.getInfo("SRC_ENCODED_PASS") @=""> - file_format variable = - charset_encoding = UTF - 8 '-row_sep = \n" "-date_format = YYYY-MM-DD '-fetch_size = 1000 '-field_sep = #
    Select / * + * /.

    But it's really strange! I change only the file--> FILE and driver---> DRIVER and row_sep--> ROW_SEP and etc...

    I don't know why, but they should be higher. I did on linux OS 64 bit and no mistake.
    But win7 it gave me error.

    I thik it's a bug...

  • Red line appearing in audio clips to 0dB when setting the levels SEEN.

    Screen Shot 2014-03-16 at 1.47.35 PM.png

    Hello

    Did someone knowing which specifically indicates that red line? It appears when setting the levels SEEN from 0dB when the clip is reversed (speed). He disappears after the first reading, yet will reappear so once again changed and always remains in the position 0 dB potential.

    He didn't give me a warning that "this audio clip is upside down"?

    See you soon

    Dave o '

    He didn't give me a warning that "this audio clip is upside down"?

    Yes!

  • Install HA agent on ESXi 3.5u3 failed: ' year error occurred when setting up the HA agent on the host ".

    Hello!

    I of the improperly installed HA agent via vCenter to clean newly installed ESXi 3.5u3. It occurs in about 60% of the process 'Reconfigure for VMware HA': ' year error occurred when setting up the HA agent on the host ". Remote syslogI now have:

    Jan 14 14:19:56 80.251.112.51 pass: 2009-01-14 11:18:44.412 "TaskManager" 49156 info created task: haTask-ha-host - vim.host.NetworkSystem.refresh - 237

    Jan 14 14:19:56 80.251.112.51 spend: 2009-01-14 11:18:44.412 "NetworkProvider" 49156 info update the configuration of the entire network...

    Jan 14 14:19:56 80.251.112.51 pass: 2009-01-14 11:18:44.425 "NetworkProvider" 49156 information updated configuration of the entire network.

    Jan 14 14:19:56 80.251.112.51 pass: 2009-01-14 11:18:44.425 "TaskManager" 49156 info task completed: haTask-ha-host - vim.host.NetworkSystem.refresh - 237

    and no warnings or errors.

    In the list of features HA doesn't speak on the use of HA between the hosts, its all about the components within a single host HA capabilities.  You can cluster VMs on different hosts to VM HA, but not VMware ESXi HA

  • Error occurred when setting up HA

    Hello

    IM problems to configure HA, the error is "year error occurred when setting up the HA Agent on the host."  I understand that this could be a DNS issue, I checked the/etc/hosts and everything seems fine.  Please see below:

    Do not remove the next line, or various programs

    1. who require network functionality will fail.

    127.0.0.1 localhost.localdomain localhost

    192.168.7.92 esx2.hazeware.net esx2

    192.168.7.91 esx1.hazeware.net esx1

    192.168.7.11 vc.hazeware.net vc

    I also checked the /etc/resolv.conf and who also seems very well.  Please see below:

    Search hazeware.net

    nameserver 192.168.7.10

    The two hosts and the VM (Virtual Center) can ping each other, Vmotion works very well, the DRS configuration is fine.  I have check the DNS Setup all that I can, I don't know what else to do, am I missing something?

    Also try stopping and restarting the virtual Center on your VC Server service... Working from time to time. Today, actually.

  • Can you use the color picker when setting gradients in Illustrator?

    I am able to set up a custom in Illustrator without any problem gradient, but I wanted to know if there is a way to use the color picker when setting your custom colors or if you are limited to a narrow bar of color (which has all the colors but feels harder to use for me)?

    Click color to change in the Panel degraded stop / palette. Then, double-click on the fill area at the bottom of your tool palette/Panel. Who should bring up the color picker and color you choose apply until stop in the gradient you had clicked.

    Alternatively, double-click the area fill with nothing selected to bring up the color picker. Choose your desired color, and then drag the color from the fill box to the Swatches palette/Panel to create a new shade. Later, with the gradient panel/palette active, you can drag samples directly on the steps of color to change your gradient.

  • Maximum size of the message body when you use utl_mail.send

    I'm looking to get the documentation on the subject, but so far without success.


    By looking at the interface, I expect the max size to 32 KB (varchar2 in Pl/Sql),
    and when sending ascii using the value default mime_type ("text/plain; charset = us-ascii').
    I can almost send this amount.

    However when sending utf8 using the mime_type ' text/plain; Charset = UTF - 8',
    I send about 7970 characters / 12650 bytes before I started getting errors
    (ORA-06502: PL/SQL: digital error or value: raw variable length too long)

    Although it is beyond my current needs, I would avoid having to test this on all versions,
    customers could be going to use.

    Testicular above were made on:
    Oracle Database 11 g Release 11.2.0.2.0 - 64 bit Production running windows.
    The database character set is AL32UTF8

    The code which fails in UTL_MAIL seems to be the following:

    FUNCTION ENCODE_VARCHAR2(DATA IN VARCHAR2 CHARACTER SET ANY_CS)
        RETURN VARCHAR2 IS
    BEGIN
          RETURN UTL_RAW.CAST_TO_VARCHAR2(
                   UTL_ENCODE.QUOTED_PRINTABLE_ENCODE(
                     UTL_RAW.CAST_TO_RAW(DATA)));
    END;
    

    The DATA received as a parameter is your body of the email ( messageparameter). The following test case goes directly to these data in the code above:

    SQL> create or replace function FunkyString return varchar2 is
      2          msg  varchar2(32767 char);
      3          line varchar2(32767 char);
      4  begin
      5          line := '';
      6          for j in 1..10 loop
      7                  line := line || '123æøåÆØÅ ';
      8          end loop;
      9
     10          msg := 'Start_';
     11          for i in 1..80 loop
     12                  msg := msg || line || chr(13) || chr(10);
     13          end loop;
     14          msg := msg || '__end';
     15
     16          return( msg );
     17  end;
     18  /
    
    Function created.
    
    SQL>
    SQL> declare
      2          r       raw(32767);
      3  begin
      4          dbms_output.put_line( 'size='||length(FunkyString) );
      5
      6          r := utl_raw.cast_to_raw( FunkyString );
      7          r := utl_encode.quoted_printable_encode( r );
      8  end;
      9  /
    size=12971
    declare
    *
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error: raw variable length too long
    ORA-06512: at "SYS.UTL_ENCODE", line 277
    ORA-06512: at line 7
    

    If utl_encode.quoted_printable_encode () throws an exception. I think that the issue is that encoding special characters in your message string, drastically increases storage required as 3 tanks are used by the single character special for coding, correct?

  • Caching: Firefox behaves as expected when setting cache preferences

    I currently have an online game and replace my management of the cache. I set in preferences, the following parameters.

    Browser.cache.Disk.max_entry_size = 2000:
    Browser.cache.Disk.smart_size. Enabled = false

    However, when I check the properties of the cache folder it currently shows 2200.

    This is a subset of the problem that I am experiencing. He has a lot of files stored there in cache_001, 002, and 003 which not stored on the disc. I use mozillacacheview to display the cache. Is there a way to delete these files without deleting all of the cache.

    Hello, the preference of 'browser.cache.disk.max_entry_size' does not define the limit for the number of files in the cache folder, but the size limit for individual entries, so your records only less than 2 MB will be cached (default would be "52000" or 50 MB).

    https://developer.Mozilla.org/en/Mozilla_Networking_Preferences#cache

  • "Security error" when setting 'Microsoft Exchange Hosted Services' Exchange account (user in company)

    I am a user in a company with a very large company that actually uses Microsoft Hosted Exchange services hosted by Microsoft employees in their facilities.  I called Palm support and they were clueless and zero help.  The lady pointed me to some Palm article I had already read and only remotely had nothing to do with my problem.  I don't see anything about this error message in the forums and google searches. Sprint has even replaced my other reasons palm pre, and the same error occurs once I configured the exchange account. I also see the error when I set up my account on my pixi nine wives. Our pre and pixi have already exchange accounts set up with success on our phones that are hosted by sherweb. Sherweb's exchange accounts work fine. I tried to set up this account of microsoft hosted exchange 5 - 6 times with the same result. He accepts my configuration information and adds to the list of email accounts available in the meadow. However, it keeps popping up the message stating "error of security policy:"Exchange..." Tap for details"(with a yellow exclamation point). Then he said "Security policy error" the Exchange (first part of my email address) account is disabled because it is impossible to define security policies. "'Leave this option disabled' or 'delete account '. I know that something does not work because it applied a policy of password or PIN on my phone which is not necessary, unless the account has been added. I can also see it in the "Mobile devices" section of outlook web when I login. This is the place in web outlook where you can see the last time the device synchronized, if remote, you can wipe the phone etc. If anyone has an idea how to solve my problem please post. Any ideas? I'm fresh out of ideas on this issue and very frustrated by the Palm developers. Just another example of evil-development and practical tests by Palm. I hope they correct this problem on later versions, but I'm only slightly optimistic that they will never get this medium of exchange e-mail at the level necessary for the support of large corporations. What I know is that my Microsoft Hosted Exchange account works fine on a Windows Mobile phone and an iPhone 3GS (confirmed by the other coworks who have set up their phones using our Exchange services). Accordingly, I have no choice but Palm to blame for this problem instead of Microsoft. Please, Palm fully support microsoft exchange e-mail users!

    After a lot of research on the subject, here is my point of view on the State of support for MS Exchange @ Palm and other companies.

    Unfortunately, Palm Pre and Pixi, WebOS is not fully supported Microsoft Exchange.  This has led to numerous reports of frustrated customers and countless hours of time wasted by consumers and technical support trying to figure out how to connect these Palm devices to the MS Exchange e-mail servers.  Way to go Palm!  Provide support for all the free email accounts worldwide and decide not to develop a product that is able to support your most rich and more influential-based email clients.  These are the people who are most likely able to spend more money on your mobile products or make decisions for companies that are able to buy huge amounts of smart phones.  Way to go guys!  Penny wise and dollar foolish if you ask me!  Palm supports only partially a handful of MS Exchange security policies.  They document what they take in charge, but they do a very poor job of documenting or even explain the limitations of the software.  Their States of documentation that the security policies that are not supported will not be applied and that users will still be able to connect to the exchange server.  This is certainly not true based on the reported error and other similar user reports.  Here is how iPhone and Palm compare in regards to the support of MS exchange security policy.  Notice in the quotes below the iPhone supports the policy of 'require the encryption of devices' which is very probably used by your greater and more security conscious companies or Government institutions.  I'm sure that Palm's inability to support "device encryption" is why I get this error, even if I have really no way to prove it at the present time.  Come on Palm, if you go to support full POP3 and IMAP, you must provide the full support of the binding protocol and political security by Microsoft Exchange product.  Here is the comparison between iPhone and Palm WebOS:

    ' Said the site of Apple, the iPhone supports the camera allow, password enabled, allow a Simple password, alphanumeric password, Password Expiration, history of password, Maximum password attempts failed, minimum password length, maximum idle lock, policy, Minimum refresh interval complex character devices. ", require manual synchronization while roaming and - in iPhone OS 3.1 only - require Device Encryption". (13 security policies)

    "Palm Web site says its WebOS 1.1 and later support active password, alphanumeric password, password history, Maximum password attempts failed, maximum length password, lock of inactivity maximum, Minimum peripheral characters complex and Password Recovery." (8 security policies)

     

    Windows Mobile 6.1 supports all THE policies.

    BlackBerry does not support the EAS (MS Exchange)

    Google's Android is not compatible EAS (they may have recently released some support but not full)

    Conclusion: If you want a mobile device that fully supports MS Exchange, buy something that is running Windows Mobile 6.1 (or higher) or even an iPhone 3 g (or more).  At least, until Palm decides they want to throw a development more $$ to support Microsoft Exchange E-mail to enhance their level of support.

    Reference: "how to avoid the lie of the foreign exchange policy by smartphone' http://www.infoworld.com/d/mobilize/how-avoid-smartphone-exchange-policy-lie-004?page=0, 1

    Message edited by morgan1112 on 12/01/2010 15:00
  • When setting ' on: on ' new homepage on Firefox for Android after having restarted the program the on: on the page is empty and 'settings' are grayed out

    I can access is more about: config (even empty) and I can't export profile using the Copy Profile.xpi.

    New Session invited works normally

    By the way is anyway to export, then import prefs.js in firefox on a phone for?

    the source of the problem is: identity.fxaccounts.remote.webchannel.uri

    which is set at: https://accounts.firefox.com

    When the string is replaced by emptiness "" he causes the program freeze

Maybe you are looking for

  • Disable updates

    I just upgraded to version 42.0 and although my mozilla.cfg file, prefs.js file and the topic: config page shows that app.update.enabled and app.update.auto are fake, the ' Check for Updates ' button in help > on Firefox is still clickable. There is

  • Firefox 9.0.1 what UK seems to say everything is spelled wrong, why?

    Since the update to Firefox 9.0.1 UK soft seems to think that my language spelling should be Greek, as the right click shows Greek as my tongue! I set the language to British English in prefs and my whole system is English based. No other auditors sp

  • ThinkPad yoga - hdd a RAW or not?

    Hello HMM, the hard drive is not a CRU. On this Web site to register as a possibly independent servicable however. (Note: the site does not list as a VINTAGE basic coverage, even if it must be removed in order to access the HARD drive). Can you pleas

  • Rundll c:\windows\oruzafavinaso.dll

    I get up a mistake to power: rundll c:\windows\oruzafavinaso.dll.  It started yesterday and I have not installed anything new.  I use Windows XP Professional SP 3.  I Googled that DLL and getting no results.  Any ideas on what is this DLL?  Thanks in

  • Everybody plays Tankaar? What game? I don't know how they made such a wonderful game...

    It seems to be a platform independent game of artillery...