Unable to unwatch a forum

I inadvertently clicked on the "Watch Forum" link in the SQL and PL/SQL forum and now I appear to have no way to undo that action.
I know that there is a Your Watches link on my Control Panel page which hits the URL (http://forums.oracle.com/forums/editwatches!default.jspa). When I click that link, however, the page times out. I've tried a dozen or so times over the past hour, always with the same result. I suspect I may have a slightly abnormal volume of watches, so I'm guessing that this is not a general failure but a failure that is related to my account.
Is there any chance that there is an admin interface that could disable this forum watch for me? Or a different page that I could hit that won't time out?
Thanks,
Justin

Apparently, I was not only dense enough to inadvertently start watching the forum, I was dense enough to miss the fact that the same link became and "Unwatch forum" link, so I didn't have to go through the Control Panel at all. Total user error on my part.
Justin

Similar Messages

  • Unable to Install MVC Forum Website

    I signed up for Free Azure trial. Trying to Install MVC Forum Website. Unable to create MVCForum tables. I get a message login failed for user.
    Exception Details: System.Data.SqlClient.SqlException: Login failed for user 'ja1nrakesh'.
    Please guide. Thanks

    Hi Jain,
    From your description, I am not sure how to set the MVC forum website database on process of creating the website.
    I tried to reproduce this issue, and I used a existed database to create a new site and it worked. According to the error message, I suggest you can try to create a new database or server and set the username and password. And then click next step by step.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Nokia x6 -- unable to browse this forum on defaul...

    I am able to browse many other websites with the default browser in my X6, include full screen ones, not just mobile sites. But I am NOT able to come to this forum. Everytime the X6 download about 50% (~500kb) of stuff, it just quit. I am using my WLAN connection.
    Is there something wrong with this website or the browser?

    It could be due to some setting that controls the amount of data to be downloaded via internet on your phone
    OR
    Your phone RAM might be being used too much. Close some applications and try again
    OR
    Keep your phone on the charger and try this site again.

  • Unable to Import Discussion Forum Packaged Application

    I'm attempting to import the Discussion Forum Packaged Application into a 3.2.0.00.27 instance of APEX running on Oracle 10g XE (Windows XP). When I attempt to import the workspace, I am presented with the following error message:
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-06550: line 2, column 100: PLS-00103: Encountered the symbol "'; end;" when expecting one of the following: ( - + case mod new null <an identifier> <a double-quoted delimited-identifier> <a bind variable> avg count current max min prior sql stddev sum variance execute forall merge time timestamp interval date <a string literal with char
    I was able to import the Document Library application without issue. Any suggestions?

    Installing the updated Web Toolkit did fix the problem. However, the installer script also was missing the last "end;" statement, which caused it to fail. But is now working. Thanks.

  • Unable to log into forums

    i had to create a new account because when i tried to log in with the original one i created under community it gives me message about a one time password reset and to folllow link in email.  problem never get email.  tried to register under personal account says email is in use.  how do i get my original account ihave had for over 3 years?

    Garreth Curran wrote on 10/6/2010 10:31 AM:
    I can log in to Enterprise Cafe but not into the forums on it.  I can log into the forums through a browser.  Can anyone help?
    That usually only happens with Adobe employees
    1 Which Adobe ID are you using in Enterprise cafe?
    2 Which Adobe ID are you using in your browser?
    3 Which browser are you using?
    4 If you are on Windows and not using IE, can you try logging in on the
    forums through IE?
    5 Which version of Enterprise cafe do you have?
    If that doesn't provide any clues, would you be comfortable running a
    packet sniffer?

  • Unable To Login To Forums/Wiki Using BlackBerry (Browser)

    Native, Firefox, or Internet Explorer emulation modes. Anyone else experience the same?

    Yes: I assumed (and still wouldn't rule out) that it is the restrictive security policies that my work implements on the BB server.

  • Unable to find SWT forum, so posting here

    Hi,
    Has anyone worked on SWT? I am new to it.. and facing this problem.
    In my app, I have a login Page and after giving the credentials the next page is displayed. Implementing this in swing is very easy but I have no idea how to implemt in SWT can anyone give me the sample code for the same.
    Sorry for posting here.
    Pankaj

    I am posting a sample code in which from LoginPage i have to go to a TestPage . I guess if i will achieve this, i can achieve the table. Right now, I am getting SWTException : Subclassing not allowed when i press enter key in the password field. Ideally , it should display a TestPage when i press "ENTER" hey in PASSWORD field. here are the files:
    //LoginPagenew.java
    package com.qwest.bpm.swt.designer;
    import org.eclipse.swt.SWT;
    import org.eclipse.swt.events.KeyAdapter;
    import org.eclipse.swt.events.KeyEvent;
    import org.eclipse.swt.layout.FormAttachment;
    import org.eclipse.swt.layout.FormData;
    import org.eclipse.swt.layout.FormLayout;
    import org.eclipse.swt.layout.GridLayout;
    import org.eclipse.swt.widgets.Button;
    import org.eclipse.swt.widgets.Composite;
    import org.eclipse.swt.widgets.Display;
    import org.eclipse.swt.widgets.Group;
    import org.eclipse.swt.widgets.Label;
    import org.eclipse.swt.widgets.Shell;
    import org.eclipse.swt.widgets.Text;
    public class LoginPageNew {
    private Shell shell;
    public LoginPageNew() {
    super();
    public static void main(String[] args) {
              new LoginPageNew().initialize();
    protected void checkSubClass() {
    private void initialize(){
    Display display = new Display();
    shell = new Shell(display);
    shell.setText("QBPM");
    shell.setMaximized(true);
    this.setupWidgets(display, shell);
              shell.pack();
              shell.open ();
              while (!shell.isDisposed ()) {
                   if (!display.readAndDispatch ()) display.sleep ();
              display.dispose();
    private void setupWidgets(Display display, Shell shell){
    final Display newDisplay = display;
    FormLayout formlayout = new FormLayout();
              shell.setLayout(formlayout);
              Composite gridComp = new Composite(shell, SWT.NONE);
              GridLayout gridLayout = new GridLayout();
              gridLayout.numColumns = 2;
              gridComp.setLayout(gridLayout);
              final Group group = new Group(gridComp, SWT.NONE);
              group.setText("Credentials");     
              Label label1 = new Label(group, SWT.NONE);
              label1.setText("User Name");
              label1.setBounds(60, 60, 120, 20);
              Text username = new Text(group, SWT.BORDER);
              username.setBounds(200, 60, 120, 20);
              Label label2 = new Label(group, SWT.NONE);
              label2.setText("Password");
              label2.setBounds(60, 90, 120, 20);
              Text password = new Text(group, SWT.BORDER);
              password.setEchoChar('*');
              password.setBounds(200, 90, 120, 20);
              password.addKeyListener(new KeyAdapter() {
              public void keyPressed(KeyEvent e) {
              // close the text editor and copy the data over
              // when the user hits "ENTER"
              if (e.character == SWT.CR) {
                   System.out.println("Enter is pressed kya");
    TestPage form = new TestPage(LoginPageNew.this.shell);
    form.show();
              Label label3 = new Label(group, SWT.NONE);
              label3.setText("JNDI Server URL");
              label3.setBounds(60, 120, 120, 20);
              Text serverurl = new Text(group, SWT.BORDER);
              serverurl.setText("t3://localhost:7001");
              serverurl.setBounds(200, 120, 120, 20);
              Label label4 = new Label(group, SWT.NONE);
              label4.setText("Designer Server");
              label4.setBounds(60, 150, 120, 20);
              Text servername = new Text(group, SWT.BORDER);
              servername.setText("com.qwest.bpm.designerserver.DesignerServerRemoteHome");
              servername.setBounds(200, 150, 240, 20);
              Label label5 = new Label(group, SWT.NONE);
              label5.setText("Database");
              label5.setBounds(60, 180, 120, 20);
              Button database = new Button(group,SWT.RADIO);
              database.setBounds(200, 180, 120, 20);
              database.setText("MDW");
              Button login = new Button(group,SWT.PUSH);
              login.setBounds(150, 240, 120, 25);
              login.setText("Login");
              //login.addSelectionListener(page);
              FormData formGrid = new FormData();
              formGrid.top = new FormAttachment(0,120);
              formGrid.left = new FormAttachment(0,150);
              //formGrid.right = new FormAttachment(100,-10);
              //formGrid.bottom = new FormAttachment(10);
              gridComp.setLayoutData(formGrid);
    //TestPage.java
    package com.qwest.bpm.swt.designer;
    import org.eclipse.swt.SWT;
    import org.eclipse.swt.layout.FillLayout;
    import org.eclipse.swt.layout.GridLayout;
    import org.eclipse.swt.widgets.Display;
    import org.eclipse.swt.widgets.Group;
    import org.eclipse.swt.widgets.Label;
    import org.eclipse.swt.widgets.Shell;
    import org.eclipse.swt.widgets.Text;
    public class TestPage extends Shell{
    private Shell shell = null;
    private Text firstName = null;
    private Display display;
         public TestPage(Shell arg0) {
              this(arg0, SWT.APPLICATION_MODAL);
         * @param arg0
         * @param arg1
         public TestPage(Shell arg0, int arg1) {
              super(arg0, arg1);
    protected void checkSubClass() {
    public void show(){
              shell = new Shell(display);
              shell.setText("Edit");
              shell.setLayout(new FillLayout());
              //new Button(shell,SWT.PUSH).setText("Go");
              this.initWidgets();     
              shell.pack();
              shell.open();
              //Display display = new Display();
              while (!shell.isDisposed()) {
                   if (!display.readAndDispatch())
                   display.sleep();
    public void initWidgets(){
    Group group = new Group(shell, SWT.NONE);
              group.setText("Person");
    GridLayout layout = new GridLayout();
              layout.numColumns=2;
              group.setLayout(layout);
              new Label(group, SWT.SHADOW_OUT).setText("FirstName");
              firstName = new Text(group, SWT.BORDER);
              firstName.setText("Pankaj Bhomia");
    }

  • Where is the forum for Xbox one media apps

    Our company is developing a xbox one media app. We want to get support for app packaging, but we are unable to find the forum for xbox one media apps, or xbox one itself.
    Where is the forum for xbox one apps ?
    Thanks.

    It is private. You need to join the developer program to access the developer forum for xbox one. See http://www.xbox.com/en-us/Developers/id.
    Visual C++ MVP

  • Error in Safari Forum

    Been unable to enter Safari forum for a while this morning. Keep getting error message?
    mwn :o)
    Well it's gone now. Sorry to bother. It was there (at least for me) for about an hour. The error message said to report if error persisted.
    mwn :o)
    Message was edited by: much wiser now

    Hi mwn,
    That happens all too often, more than anybody likes.
    Does not matter the browser, computer, or part of the world...
    Joe

  • Problem with loading some forum sites

    I am unable to load some forum websites such as macrumors, droidfourms, and androidforums. Sometimes it works, but only for about a minute or two, then proceeds to go back to being unable to load it. The problem is that it loads just the top of the website, but none of the forum topics. It's a little strange. I use safari, and I tried it with mozilla and the same problem occured.
    Any help would be appreciated

    HI Trizzle77,
    Welcome to the forums.
    Next time your having the issue you might want to try.
    Resetting DNS Cache. you can do this with a program like http://www.squashedsoftware.com/products-dns-flusher.php
    Resetting Safari's Cache.
    http://docs.info.apple.com/article.html?path=Safari/3.0/en/9300.html

  • Forum Search contents

    Dear all,
    Plz do help me.
    I am unable to search the forum contents.
    It is displaying the following message:
    No search results for "vendor". You should try a less restrictive search.
    I could not even search "Vendor".
    What might be the reason, i have been facing through yesterday.
    Thanks and regards,
    Sri

    Hi,
    Please see attached thread : Regarding Search
    Apparently the search indexes are corrupted.... and the SDN developers are fixing them now. Until then, please use the main SDN search (upper left corner of the page) as advised in the thread.
    Hope this helps.
    Cheers,
    Gimmo

  • Page Errors accessing Adobe Forums, Please Help !!

    Hey Folks,
    My work and personal laptop are unable to access any forum on the Adobe site using Internet Explorer. If I enable debugging, the errors that I receive before the webpage fails to respond include:
    'Jive' is undefined
    'JiveSpotLightSearch' is undefined
    'JiveViewThreads' is undefined
    Line: 2325 Error: Object Expected
    These all seem to be related to Jive Softwares "Clearspace" software that is used on the Adobe site. None of the forums, Yahoo, or google seem to have any information on this problem. It has got to be a missing add-on, a security setting, or some other inocculous problem.
    I had to load Firefox just to access this forum to post this thread !
    Thanks in advance for your help,
    Eric
    Ps    Please don't advise me to use a difference browser or update to I.E. 8. My work has me locked into I.E. 7

    I get the same thing on my personal Laptop as well.
    I am running:
    JAVA  version 1.6
    J2SE Runtime Enviroment 5.0
    Microsoft .NET Framework Version 1.1
    I have tried disabling WinPatrol and Norton Antivirus and the problem remains.
    What specifically should I be looking for in Security and Privacy Settings?
    Eric
    Ps      The post to thread via e-mail function does not work either. When I send a reply, I get a bounced e-mail message (See below)
    This is the mail system at host mail.sgaur.hosted.jivesoftware.com.
    I'm sorry to have to inform you that your message could not be delivered to one or more recipients. It's attached below.
    For further assistance, please send mail to <postmaster>
    If you do so, please include this problem report. You can delete your own text from the attached returned message.
                       The mail system
    <[email protected]>: host
        10.137.24.42[10.137.24.42] said: 553
        <[email protected]> address
        unknown. (in reply to RCPT TO command)

  • Unable to connect to Nokia Music Unlimited. Please...

    I m unable to connect to Nokia unlimited subscription for music... plz help
    Moderator's Note: We have moved your post and changed the title into a subject-related title. This is to keep the forum organized and let other forum users easily see and respond to this post.

    Hi unable
    Welcome to Nokia forum! 
    Make sure that your device has correct GPRS/3G connection settings in place. Also, check with your mobile network operator that the accesspoint (AP) that the phone is using to access GPRS/3G services, is capable of accessing the Nokia Music store. As some AP's defined in the handset as a default connectivity method are for Wireless Application Protocol (WAP) services and email only.
    If my post helped you, please don't forget to click on the "White Star" and if it resolved your issue click on "Accept as Solution"

  • 451 4.4.0 Primary target IP address responded with: "421 4.2.1 Unable to Connec

    server 2012 r2 full udpate with current state dc, exchange 2013 sp1 cumulative update 7 patch installed on
    new fresh setup, will use exchange with outside mail hosting domain and will send mails via smart host, this already setted up
    mapilab pop3 connector will get mails and deliver to exchange mailboxes
    int his scenario
    we can send mail to any domain from exchange owa like gmail,hotmail etc... no problems so far
    however can not send email within exchange mailboxes getting the 451 4.4.0 error as the header states
    There is no mail in any of our exchange inbox all stays at quoue with the error above
    checked dns, firewall, av everything for 2 days no solution
    help please

    Hi Mehmet,
    Thank you for your question.
    From your original post, do you mean the pop account of the user can send emails successfully but the Exchange account of the user failed to send external emails? If there are any misunderstanding, please correct me.
    Because email was sent by smart host, when we create send connector, send connector must point smart host instead of MX record.
    Configuring smart host could refer to the following link:
    http://technet.microsoft.com/en-us/library/cc779371(v=ws.10).aspx
    Creating a send connector to route outbound email through a smart host by the following link:
    http://technet.microsoft.com/en-us/library/jj673059(v=exchg.150).aspx
    We could use tool (for example: ExTRA) to analysis mail flow by the following link:
    http://blogs.technet.com/b/exchange/archive/2006/08/07/3394688.aspx
    we could refer to the following links to troubleshoot:
    https://social.technet.microsoft.com/Forums/en-US/4918c353-c6f7-466a-9d21-66f7bf732761/451-440-primary-target-ip-address-responded-with-421-421-unable-to-connect?forum=exchangesvrsecuremessaginglegacy
    https://social.technet.microsoft.com/Forums/en-US/66e3759d-571a-4740-8124-e95c6b7c14bd/451-440-primary-target-ip-address-responded-with-421-421?forum=exchangesvrsecuremessaginglegacy
    If there are any questions regarding this issue, please be free to let me know. 
    Best Regard,
    Jim

  • Microsoft Vision unable to run

    Microsoft Visio standard upon installing, starts but soon after the following is posted " Vision stop working" 
    Have contacted tech support in Malaysia via toll free number 800 188 6009. They did trouble shooting - the following carried out;-
    a) Run uninstall followed by clicking change. On completion the same problem encountered.
    Assistance required

    Hi,
    Could you tell us is there any other error code or message about Visio crash?
    1. First let’s try to launch Visio in safe mode by typing Visio.exe /safe in command line.
    2. We can perform a clean boot in Windows to remove conflict with other applications.
        About how to perform a clean boot: http://support2.microsoft.com/kb/929135/en-us
    3. The cause may be the installation resource is corrupted. You can also download the installation from website and reinstall.
    For more information about unable to start Office:
    https://social.technet.microsoft.com/Forums/en-US/ac9f4578-f0bf-471c-94ee-bce2e9ce7b3e/microsoft-vision-unable-to-run?forum=visiogeneral
    If this issue persists, please collect the event viewer logs and upload it to OneDrive. I’ll analyze this issue in detail as soon as getting it.
    More information about event logs:
    http://windows.microsoft.com/en-us/windows/what-information-event-logs-event-viewer#1TC=windows-7
    Best regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

Maybe you are looking for

  • How to resolve attribute errors

    Hi, When I am trying to click on an lov item I am getting the following error Attribute TransactionTypeId in CreateArInvoiceAM.CljReceivableSlipsEOVO1 is required I would get the TransactionTypeId only when I select an item from the lov but before se

  • Slow Logons from branch office

    We just moved an office of ours in a branch office to another building. The office is in Miami and is normally connected to our Tampa main office via an MPLS connection. The connectivity to our Tampa office is down now because of issues with the MPLS

  • New iMac doesn't switch off!

    just bought a new imac 3 days back. When I shut it down last night it didn't shut down for a really long time. Today I needed to restart it and it wouldn't shut down. The the desktop screen with a 'waiting' icon that goes round and round kept flashin

  • Phone adds a 1 before dialing local numbers

    All of my contacts include the area codes in their numbers, and my phone adds a 1 to them before dialing which prevents connection. Anyone know how to stop this? Thanks.

  • What are touch tablets and how to program for it?

    Hi I have to develop the application for POS/retailer shops where consumer can browse thru the list of products on the touch table deveice. But i m new to this technology and really dont know much. I tried to look into net but i didnt get anything us