When i go to gmail it says "Not Found. The requested URL/accounts/service login was not found on this server" but it used to work and I need help getting it to work again.

I used to go to gmail all the time. Now it says "Not Found" whenever I go to gmail. Is there a reason for this and is there a way I can access gmail again?
== URL of affected sites ==
http://gmail.com

You've been really helpful and I did what you said, but I'm still having a problem. I click on "tools", then click on "Add-ons", and when the box opens I click on "extensions". This is the problem" In the "Add-on" box under "extensions", it says "'''Microsoft.NET Framework Assistant''' 1.0. Adds ClickOnce support and the ability to report installed .NET versions to the web server. '''Not compatible with Firefox 3.6.3.'''" And underneath there are 3 boxes to click on: "options", "enable", and "uninstall". But it won't let me click on any of them. Also, the first thing before the text I just copied, is a red explanation point. This is the only thing that comes up under "Extensions". Any ideas? I'd appreciate any input. Thanks

Similar Messages

  • HT1657 I rented movies on my iPad, they all downloaded, but when I click 'play' it says 'The requested URL was not found on this server'. What does it mean and how can I restore my rented movies?

    I rented movies on my iPad, they all downloaded, but when I click 'play' it says 'The requested URL was not found on this server'. What does it mean and how can I restore my rented movies?

    See this previous discussion:
    https://discussions.apple.com/message/16962474#16962474

  • I downloaded Mac OS X Lion and when I go to install, it says file cannot be verified, may have been corrupted during download.  How do I determine if it is corrupt and how do I get a clean copy of Lion, since I have already paid for it?

    I downloaded Mac OS X Lion and when I go to install, it says file cannot be verified, may have been corrupted during download.  How do I determine if it is corrupt and how do I get a clean copy of Lion, since I have already paid for it?

    Download again, move the existing file out of the applications folder first.

  • The requested URL /Site/Home.html was not found on this server - HELP!

    NOT FOUND: The requested URL /Site/Home.html was not found on this server.
    This comes up when I type in my website address. I am new to this, have created my website on iweb, bought the domain name and purchased web hosting with 123-REG. I ask for their help but have only received the same rote info and nothing that has solved my problem.
    I am using Cyberduck as my FTP client but tried Classic FTP for macs before this and although it says that I am connected, it is saying that it can not change to the directory hosting10.123-reg.co.uk and asks if I have permission to be using it? I am not sure what to do?
    Please could someone advise me?
    Thanks!

    Welcome to the Apple Discussions. Since you're not using MobileMe these pages might be of some help to you:
    http://homepage.mac.com/thgewecke/iwebserver.html
    http://iwebfaq.org/site/iWebFolderFTP.html
    http://docs.info.apple.com/article.html?path=iWeb/2.0/en/6838.html
    OT

  • Not found - The requested URL /apex/wwv_flow.show was not found on this ser

    I have a very simple anonymous block (see below) which I am using to test an area of the database I am developing using OE and APEX. Sometimes the block works and other times it fails with the following error message------
    Not found - The requested URL /apex/wwv_flow.show was not found on this server
    Before the error message is displayed a pop-up window appears with a submit button ( the heading on the window contains --- Enter Bind Variables - windows internet explorer), which I do not understand.
    Is the problem I am experiencing due to some memory limitation ? or do I have a corrupt oracle system (everything else appears OK though).
    Any help or advice would be much appreciated.
    Best Regards
    Lawrence Cattell
    Here is the anonymous block (please no comments on the code). If I extend the number of DBMS_OUTPUT.PUT_LINES beyond the current number of 3 it fails everytime, sometimes it works with 3, sometimes it fails. Is it related to the number of variables I am binding to the WSI_QUOTE Type ?
    DECLARE
    v_dir VARCHAR2(20):='WSI_REPORTS';
    V_COUNT NUMBER(2,0);
    V_QTE_REF_NBR WSI_QUOTES.QTE_REF_NBR%TYPE;
    V_CTR_ID WSI_QUOTES.CTR_ID%TYPE;
    v_QTE_REC_NBR WSI_QUOTES.QTE_REC_NBR%TYPE;
    v_QTE_DTE WSI_QUOTES.QTE_DTE%TYPE;
    V_PEB_NBR WSI_QUOTES.PEB_NBR%TYPE;
    V_QTE_COM WSI_QUOTES.QTE_COM%TYPE;
    V_SAI_NBR_01 WSI_QUOTES.SAI_NBR_01%TYPE;
    V_QTY_01 WSI_QUOTES.QTY_01%TYPE;
    V_SAI_NBR_02 WSI_QUOTES.SAI_NBR_02%TYPE;
    V_QTY_02 WSI_QUOTES.QTY_02%TYPE;
    V_SAI_NBR_03 WSI_QUOTES.SAI_NBR_03%TYPE;
    V_QTY_03 WSI_QUOTES.QTY_03%TYPE;
    V_SAI_NBR_04 WSI_QUOTES.SAI_NBR_04%TYPE;
    V_QTY_04 WSI_QUOTES.QTY_04%TYPE;
    V_SAI_NBR_05 WSI_QUOTES.SAI_NBR_05%TYPE;
    V_QTY_05 WSI_QUOTES.QTY_05%TYPE;
    V_SAI_NBR_06 WSI_QUOTES.SAI_NBR_06%TYPE;
    V_QTY_06 WSI_QUOTES.QTY_06%TYPE;
    V_SAI_NBR_07 WSI_QUOTES.SAI_NBR_07%TYPE;
    V_QTY_07 WSI_QUOTES.QTY_07%TYPE;
    V_SAI_NBR_08 WSI_QUOTES.SAI_NBR_08%TYPE;
    V_QTY_08 WSI_QUOTES.QTY_08%TYPE;
    V_SAI_NBR_09 WSI_QUOTES.SAI_NBR_09%TYPE;
    V_QTY_09 WSI_QUOTES.QTY_09%TYPE;
    V_SAI_NBR_10 WSI_QUOTES.SAI_NBR_10%TYPE;
    V_QTY_10 WSI_QUOTES.QTY_10%TYPE;
    V_CTR_NME WSI_CUSTOMERS.CTR_NME%TYPE;
    CURSOR GET_QUOTE_INFO_CUR IS
    SELECT *FROM WSI_QUOTES WHERE QTE_REC_NBR = 2;
    BEGIN
    DELETE WSI_QUOTE_TEMP_HOLD;
    OPEN GET_QUOTE_INFO_CUR;
    LOOP
    FETCH GET_QUOTE_INFO_CUR INTO V_QTE_REC_NBR,V_QTE_REF_NBR,V_CTR_ID,v_QTE_DTE,V_PEB_NBR, V_SAI_NBR_01,V_QTY_01,V_SAI_NBR_02,V_QTY_02,V_SAI_NBR_03, V_QTY_03,
    V_SAI_NBR_04, V_QTY_04, V_SAI_NBR_05, V_QTY_05,V_SAI_NBR_06, V_QTY_06,V_SAI_NBR_07,V_QTY_07,V_SAI_NBR_08, V_QTY_08, V_SAI_NBR_09, V_QTY_09,
    V_SAI_NBR_10,V_QTY_10,V_QTE_COM;
    EXIT WHEN GET_QUOTE_INFO_CUR%NOTFOUND;
    SELECT CTR_NME INTO v_CTR_NME FROM WSI_CUSTOMERS WHERE CTR_ID = V_CTR_ID;
    END LOOP;
    CLOSE GET_QUOTE_INFO_CUR;
    V_COUNT :=1;
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_01|| '***' ||V_QTY_01);
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_02|| '***' ||V_QTY_02);
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_03|| '***' ||V_QTY_03);
    END;

    The interpreter could be choking on the "*from" (no space before "from") might not be parsing the SQL as intended .
    The "Enter Bind Variables" dialog box is coming from something undefined, I'd suggest putting that block into an .sql file and run it via sqlplus.
    To demonstrate how a bind variable is handled try setting up a file with:
    select * from sometablename where somecolname = &somekeyval;
    -- or '&somekeyval' if its varchar2When you connect with sqlplus and run that file it will prompt for the value to use for "somekeyval".
    Only other thing is to ensure the "select * ..." has the same column names and in the same order as expected by the fetch, perhaps the table layout has changed and you could be getting an added column or maybe missing one at the end of the list.
    If you try running that block in a sqlplus session enable serveroutput to see the dbms_out result (set serveroutput on size 50000)

  • The requested URL /apex/wwv_flow.accept was not found on this serve: 404err

    Hi Everyone,
    I have 10 tabs to dispaly, I was able to click each tab but when I reach last 2tabs I am getting this error
    The requested URL /apex/wwv_flow.accept was not found on this server: 404 Error
    I tried searching in forums, but I didnot get the answers. Could any one help me in solving this issue.
    I am using APEX 4 and Oracle 11g. Before I used APEX 3, but I didnt get this type of problem.
    Thanks in advance,
    Suma.

    Any suggestions?

  • The requested URL /OA_HTML/AppsLocalLogin.jsp was not found

    Dear,
    i was just upgrade the OracleAS 10g Release 3 (10.1.3.0) Patch Set 4 (10.1.3.4.0) and Java 6.0 JDK on this system (ebs r12.0.6) OUL5x64
    and run adautoconfig with no error.
    Before the upgrade the system was fine.
    but when i connect to the URL got this error.
    NOT FOUND the request URL "The requested URL /OA_HTML/AppsLocalLogin.jsp was not found on this server."
    looked into the apache error log and it complained , could not find the file, but i compared with a good system there were no file and DIR OA_HTML/AppsLogin.
    /u01/oracle/CRPXX/inst/apps/CRPXX_xxx/portal/OA_HTML/AppsLogin.
    from Apache error log:
    File does not exist: /u01/oracle/CRPXX/inst/apps/CRPXX_xxx/portal/OA_HTML/AppsLogin.
    Please advise.
    Regards,

    Hi,
    Have a look at this thread.
    Login Page not getting Displayed after 10.1.3 Home Upgrade in R12
    Login Page not getting Displayed after 10.1.3 Home Upgrade in R12
    Regards,
    Hussein

  • My old iMac and OS 10.4 will not accept the New iTunes Version 10 application and I can't get past the screen offering to download iTunes 10.  This is wrong and I need help getting past this situation. Help!

    My old iMac and OS 10.4 will not accept the New iTunes Version 10 application and I can't get past the screen offering to download iTunes 10.  This is wrong and I need help getting past this situation. Help!

    Sure, you can get around it if you don't need the newest version of iTunes. I still use version 7.5 because the newer versions didn't strike me as offering anything I needed.
    If you do need a version 10-something then you will have to upgrade your operating system to Leopard (fi your computer will support it) at least.  If you need 10.5 for some reason then there's no getting around it, you will have to buy a new computer.

  • Can't start httml db. the requested URL /pls/beta/htmldb was not found on t

    Hi, I'm trying to login to htmldb but are getting the following errors:
    The requested URL /pls/beta/htmldb was not found on this server.
    Oracle HTTP Server Powered by Apache/1.3.22 Server at Matea Port 7777
    My database is 9.2.0.4. These are the values in conf files:
    LISTENER.ORA:
    # TNSNAMES.ORA Network Configuration File: /home/oracle/app/oracle/product/9.2.0/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    BETA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Matea)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = BETA.world)
    ROM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Matea)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = ROM.world)
    INST1_HTTP =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Matea)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = SHARED)
    (SERVICE_NAME = MODOSE)
    (PRESENTATION = http://HRService)
    TNSNAMES.ORA:
    # TNSNAMES.ORA Network Configuration File: /home/oracle/app/oracle/product/9.2.0/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    BETA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Matea)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = BETA.world)
    ROM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Matea)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = ROM.world)
    INST1_HTTP =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Matea)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = SHARED)
    (SERVICE_NAME = MODOSE)
    (PRESENTATION = http://HRService)
    HTTPD.CONF:
    Alias /i/ "/home/oracle/app/oracle/product/9.2.0/images/"
    wdbsvr.app:
    [DAD_htmldb]
    connect_string = 89.0.0.4:1521:beta
    password = !YmV0YWh0bWw=
    username = htmldb_public_user
    default_page = htmldb
    document_table = wwv_flow_file_objects$
    document_path = docs
    document_proc = wwv_flow_file_mgr.process_download
    reuse = No
    enablesso = No
    stateful = STATELESS_RESET
    nls_lang = American_America.WE8ISO8859P1
    Values in nls_database_parameters:
    SQL> select * from nls_database_parameters;
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET WE8ISO8859P1
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    PARAMETER VALUE
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_RDBMS_VERSION 9.2.0.4.0
    20 rows selected.
    I can start http server and login to http server index page, but can't go any further. There seems to be a problem with database descriptor.
    What's wrong ? Can I enable any trace on ?
    Help will be greatly appreciated ....!

    OK. Some plsql objects are not valid:
    1 select object_name,object_type ,status from dba_objects where owner like 'FLO%'
    2* and status='INVALID'
    SQL> /
    OBJECT_NAME OBJECT_TYPE STATUS
    VRN FUNCTION INVALID
    WWV_BIU_FLOW_COLLECTION TRIGGER INVALID
    WWV_BIU_FLOW_COMPANIES TRIGGER INVALID
    WWV_CREATE_FORUM_DEMO_SCRIPT PROCEDURE INVALID
    WWV_CRYPT PACKAGE BODY INVALID
    WWV_FLOW_CSS_API PACKAGE BODY INVALID
    WWV_FLOW_DEBUGTAB_BIU_FER TRIGGER INVALID
    WWV_FLOW_FILE_API PACKAGE BODY INVALID
    WWV_FLOW_FILE_MGR PACKAGE BODY INVALID
    WWV_FLOW_FND_USER_API PACKAGE BODY INVALID
    WWV_FLOW_GENERATE_DDL PACKAGE BODY INVALID
    OBJECT_NAME OBJECT_TYPE STATUS
    WWV_FLOW_GEN_API2 PACKAGE BODY INVALID
    WWV_FLOW_HTML_API PACKAGE BODY INVALID
    WWV_FLOW_IMAGE_API PACKAGE BODY INVALID
    WWV_FLOW_IMPORT_EXPORT_RESET PROCEDURE INVALID
    WWV_FLOW_IMPORT_EXPORT_UPDATE PROCEDURE INVALID
    WWV_FLOW_IMP_PARSER PACKAGE BODY INVALID
    WWV_FLOW_LOAD_DATA PACKAGE BODY INVALID
    WWV_FLOW_LOAD_EXCEL_DATA PACKAGE BODY INVALID
    WWV_FLOW_PARSER PACKAGE INVALID
    WWV_FLOW_PARSER PACKAGE BODY INVALID
    WWV_FLOW_PARSER_PUBLIC PACKAGE INVALID
    OBJECT_NAME OBJECT_TYPE STATUS
    WWV_FLOW_PARSER_PUBLIC PACKAGE BODY INVALID
    WWV_FLOW_SCRIPT_EXPORT PACKAGE BODY INVALID
    WWV_FLOW_SW_API PACKAGE BODY INVALID
    WWV_FLOW_XLIFF PACKAGE BODY INVALID
    26 rows selected.

  • The requested URL /apex/wwv_flow.accept was not found on this server

    I'm trying to create a report query in Apex 3.2.1
    Home>Application Builder>Application 100>Shared Components>Report Queries>Edit Report Query
    There are 5 queries and I'm trying to add additional queries, but when I click on Add Query I get the /apex/wwv_flow.accept was not found on this server error message page.
    I've had this message before in tabular view forms, where one cell will contain text that causes the error on update, but when the data is removed the page saves OK.

    Any result to this post?

  • I try toopen up my e-mails and keep on getting this error:;The requested URL /dc/launch was not found on this server. I use att mail. pls help

    My e-mails worked last night but this morning it did not. My aol emails work just fine only the att mails do not open up.
    Keep on getting this error: The requested URL /dc/launch was not found on this server.

    If you have Panda Cloud Antivirus installed, please see this thread: https://support.mozilla.com/en-US/questions/798059
    Otherwise, follow co-rel's instructions in this one: https://support.mozilla.com/en-US/questions/784695

  • After updating to latest version of itunes i get error -3212 when trying to connect to itunes store, says not connected to internet.  But internet status is ok and can use browser

    just updated to the latest version of itunes for windows.  i can't stream any of my radio stations and when i try to connect to the itunes store i get an error -3212 message saying i'm not connect to the internet, yet my browser works and my wireless status is ok.

    I also had this issue when one day itunes stopped working for me on windows 8...
    the error message I received first was: C:Programme files\common files\Apple\Apple Push service.dll is either not designed to run on windows or contains an error.
    followed by: ITunes not installed Error 7 (Windows error 193)
    Your response addressed how to fix this issue with earlier windows operating systems, but not for windows 8, so what ended up working for me was your advice applied a little differently. For anyone running windows 8 needing to know how to resolve this issue by repairing the Apple Application Support program, try following these simple steps - what a relief it was to have itunes working again after applying b noir's answer to the windows 8 operating system!
    1. Swipe in from the right edge of the screen, tap Settings, and then tap Control Panel.
    (If you're using a mouse, point to the lower-right corner of the screen, move the mouse pointer up, click Settings, and then click Control Panel.)
    2. Click the Programs and Features icon.
    3. In the list of programs and features, find the Apple Application Support feature and click to select it.
    4.  In the gray title bar above it, click Repair.
    5. Approve the window prompts that follow until the repair has been completed.
    6. Relaunch iTunes.
    Hope this helps & good luck!

  • HT201406 when I on my IPad it say '' not enough storage this IPad cannot be backed up because there is not enough icloud storage avalible

    when I on my Ipad says. ''Not enough storage this IPad cannot be backed up because there is not enoughICloud storageavailible you manage your storage in settings. ''
             When I touch setting here is no response

    Yes, try it again. And what does this mean exactly?
    hoosiersec wrote:
    And it will not let me hold down the sleep botton and the home button.
    How does iCloud prevent you from holding down on the sleep and home buttons at the same time? What will not let you hold down buttons on the iPad?

  • "The requested URL /apex/wwv_flow.show was not found on this server "

    Hello, I am getting a "Not found" error, along with the error message displayed in the Subject title, when executing pl/sql commands in the "Home> SQL> SQL Commands" window.
    Not all the time, it is intermittant. If I shut down and restart, that same command will often run ok later.
    It only happens when I edit the PL statement. Sometimes if I remove the edit, the error stops occurring, sometimes the error contiinues to appear.
    If I paste in a previously saved version of the same statement that worked prior to an edit, sometimes it works, sometimes it will still cause the error once they start to occur.
    This is a new install of Oracel 10G Express Edition, downloaded direct from Oracle and installed within the past two weeks.
    It is installed on a Lenovo T60 with WinXP SP2.
    I am an admin on this laptop, and for this install of Oracle. Since this is a standalone install on a workstation, there is no DBA support other than me.
    I am an experienced IT developer, but not a DBA. though I have taken some administration courses. I am new to PL though.
    I also had a problem with not having authority to run utl_file, but I was able to correct that with a grant as SYS. Could this be related in some way? (doubtful).
    Possibly some odd execution authority issue on a DB object?
    It is being used strictly for application development, so that I can avoid impacting testers and users in the normal development environment on a project where we have development and testing running concurrently.

    You said: "... Oracle SQL Developer uses the existing DB. ..."
    I think, just like TOAD, SQL Developer can connect to whatever database you tell it to as long as you give it the right username/password@host.
    For example, with XE, after I unlocked the sample "HR" account*, I can connect to the sample database on XE with HR/HR@XE.
    *with XE running on your local machine, see http://127.0.0.1:8080/i/doc/getting_started.htm#CHDGDHID
    (more direct URL)
    Message was edited by:
    grypysc

  • Hey new to Macs need help getting one(s) running again...

    Hey all,
    So I acquired some old Macs from a local schools surplus sale. I have managed to get one operational (a G3 tower) but am now trying to get a MacBook running and have had a few issues. I have gotten it to the flashing folder screen but have been unable to get it to boot from the HDD. The HDD drive works I have installed OSX 10.3 on the drive via firewire but it seems that the Mac wont recognize that the drive is there. When I get into the Startup Manager screen nothing shows up except the mouse (which I can move around). The MacBook is an a1181 with 1GB of Ram installed. Being new to Macs I have no clue on how to continue. I know Macs do not have a BIOS but is there something similar that can be accessed? What about Firmware updating? I would prefer not to have to take it (and others) to the local Apple store. Any and all help would be much appreciated.
    Thanks.

    I have the same MacBook (a1181) and had the same problem. My solution was to simply re-install snow leopard. Just buy a snow leopard CD from the apple store. Don't buy a mountian lion CD because it is not compatible with your MacBook. One you have the SL CD, insert it into the optical drive (CD drive) and boot the computer. When you hear the chime, press and hold down "C" on the keyboard and it should boot. If this fails, reboot and brews and hold option/alt when you hearths chime, then select the CD as it appears. Then simply install snow leopard, and enjoy your Mac! Hope this helps, and I will be happy to help with any problems or questions :)

Maybe you are looking for