How to register to post a constructive comment in a help discussion?

I started out by asking a question, and wanted to post a comment after I found the answer was ambiguous. Everything says in order to post a comment or ask a question I must register: to register, I must ask a question (I did). This is a circularity. There was no evident way to register: register links on those pages are greyed out. (The whole thing is illogical - I don't want to ask a question, but make a comment.) The system literally gives me the run-around.
I finally had to use Mozilla query to get here (indirectly). I had to categorize the type of question I I didn't really want to to ask. I finally reach a register page, then this query page. Now I may be able to go back and post a clarification.
Registration & sign-in are fundamental processes, and when required, the necessary links should be active and easy to find. A direct, unambiguous question on such a matter deserves a straight answer. (It seems this has been a long-standing problem which should be easily fixed: previous Mozilla answer "there is no explicit "register" button [actually there ARE (greyed out) at the top of pages where one might want to post a comment in a discussion] if you want to sign up as a contributor, you can do so through https://support.mozilla.org/get-involved [not an obvious place to look] - if you just want to ask a question in the support forum (as you have just done), you have already registered through the username/email you have provided there". ) And if you want to make a comment, there is no provision for registration, thanks to greyed out buttons.
It should be easy to register and sign in! The current situation is unfriendly, wasting your resources and my time, apparently quite unnecessarily. There was no need for me to ask this question here, which someone has to look at, but I'll take the opportunity to bitch. Why not have your register links active and pointing to the previous page (that's a moments work), so I can register & offer my clarification? The result is ultimately the same. Why is register tied to asking a question or collaborating?
There is more: below this message box is a button that says "Troubleshooting information". If I click on it Firefox blocks installation of a program (what program? If Firefox calls it, why would it block it? I give up.)
CEG

''cegraham wrote:''
to register, I must ask a question
No, you don't have to.
* https://support.mozilla.org/questions/997814#answer-565630
''cegraham wrote:''
It should be easy to register and sign in!
There's a Sign In link right a the top of this page, then you get to fill out your login information, so I don't see how that's an issue. As for registering,<br>
''Feel free to vote for the report to keep track of any progress, but please don't post comments unless you have technical information to add. See [https://bugzilla.mozilla.org/page.cgi?id=etiquette.html the Bugzilla etiquette page] for details.''
* [https://bugzilla.mozilla.org/show_bug.cgi?id=1004969 Bug 1004969] - Add signup / registration link to the Sign In page
''cegraham wrote:''
There is more: below this message box is a button that says "Troubleshooting information". If I click on it Firefox blocks installation of a program (what program? If Firefox calls it, why would it block it?
The troubleshooter add-on, which is an extension, not a program.
* https://addons.mozilla.org/firefox/addon/troubleshooter/
I don't know why the installation ended up being blocked; I'm pretty sure you're just supposed to get an installation prompt as with any other add-on. In any case, hopefully this functionality will be built-in at some point in the future.
* [https://bugzilla.mozilla.org/show_bug.cgi?id=732527 Bug 732527] - add a DOM API for retrieving about:support data
Until then, you can type ''about:support'' into the address bar and press Enter if you want to include the information manually.

Similar Messages

  • How to register itunes with out credit card? need help

    i got mac but i don't have credit card what should i do to register with i tunes. can i link with paypal or debit card? need help cos i am new to mac thing cant use or download any stuff  since my itunes account is not fully active

    You can use an iTunes gift card to start an account. See the I do not have an iTunes Store account section of the How to redeem an iTunes Gift Card on a computer section of the following document:
    iTunes Store: How to redeem an iTunes Gift Card

  • How to register artissts feat. other artists without multiple posts?

    How to register artists feat. other artists without multiple posts? If someone understand waht I mean.
    For example, in the list of artist I have "Missy Elliot" but on several songs
    she sings with someone i.e "Missy Elliot feat. Bill Clinton" than thats going to be another post in the artist list.
    Are there any trick to get those posts to register under just one category and still keep the "featuring" information in the artist category.
    Thx
    friss
    iBook   Mac OS X (10.3.9)  

    Thanks for your answer peeble. I thought so to, but I had to ask. But it is little bit annoying. It would have been nice if you could put some info within brackets for example without creating new posts. I might send an mail to Steve.
    iBook    

  • How to register a Navigation Connector in EP6

    Hi,
    I am trying to build a navigation connector in EP6 SP2 and I see that the PDK documentation says "The Portal Development Kit (PDK) contains a navigation connector implementation to navigate to the content of the PDK." but I cannot find it anywhere.
    I think I figured out how a navigation connector should look like, but I am stuck at one point: according to the PDK the navigation connector has to be registered in the afterInit() of the navigation connector service via a call of the registerConnector(String connectorKey, INavigationConnector connector)-method of the INavigationConnectorRegistration interface . What I cannot find out is how to get a reference to this INavigationConnectorRegistration ? Any help is greatly appreciated !
    Thanks,
    Heiko

    Excellent, Detlev. Thanks. Your reply answers my posting, although some questions (in my mental representation) remain.
    Specifically, I do not understand the separation of Navigation Service and Navigation Connector.
    In my understanding my navigation iView retrieves a navigation tree structure from my navigation service.
    Option 1:
    in the getXXXNodes() methods of my navigation service I construct (from whatever source) a navigation tree structure (implementing INavigationNode/NavigationNodes). No need for a navigation connector here. Is that acceptable (though probably not recommended) behaviour ?
    Option 2:
    my navigation service in turn retrieves the navigation tree structure from a navigation connector which I built.
    Three questions follow from that:
    a) Do I (my navigation service, that is) select which connector should be used ?
    b) If the answer to a) is yes, why is it then necessary to register my custom navigation connector at all ?
    c) what is the role of the ConnectorKey with which I register my connector ? If I got a) and b) wrong, then somebody (who ?) must use this ConnectorKey and select the appropiate connector.
    I am grateful for any advice.
    Thanks.

  • How to register the recipient when create job by function

    I am now use JOB_OPEN , JOB_SUBMIT and JOB_CLOSE to create a job in the program. And need to post the result of the report to the person by email.
    Can you tell me how to register the recipient when create the job.
    ( in sm36, it is easily to do but how to do in coding? )
    regards,
    slam

    Hi
    I think in Back ground using the above fun modules you can't send a mail to the receipient.
    see the use of the above fun modules;
      IF p_bjob = 'X'.
        CONCATENATE sy-cprog sy-datum sy-uzeit
                    INTO jobname SEPARATED BY '_'.
        CALL FUNCTION 'JOB_OPEN'
          EXPORTING
            jobname          = jobname
          IMPORTING
            jobcount         = jobcount
          EXCEPTIONS
            cant_create_job  = 1
            invalid_job_data = 2
            jobname_missing  = 3
            OTHERS           = 4.
        CALL FUNCTION 'GET_PRINT_PARAMETERS'
          IMPORTING
            out_archive_parameters = arc_params
            out_parameters         = print_params
            valid                  = valid
          EXCEPTIONS
            archive_info_not_found = 1
            invalid_print_params   = 2
            invalid_archive_params = 3
            OTHERS                 = 4.
        IF valid = chk.
          SUBMIT ybrep
                          WITH < sel Screen>
                          AND RETURN
                          USER               sy-uname
                          VIA JOB            jobname
                          NUMBER             jobcount
                          TO SAP-SPOOL
                          SPOOL PARAMETERS   print_params
                          ARCHIVE PARAMETERS arc_params
                          WITHOUT SPOOL DYNPRO.
          CALL FUNCTION 'JOB_CLOSE'
            EXPORTING
              jobcount             = jobcount
              jobname              = jobname
              strtimmed            = 'X'
            EXCEPTIONS
              cant_start_immediate = 1
              invalid_startdate    = 2
              jobname_missing      = 3
              job_close_failed     = 4
              job_nosteps          = 5
              job_notex            = 6
              lock_failed          = 7
              invalid_target       = 8
              OTHERS               = 9.
          IF sy-subrc <> 0.
           MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ELSE.
            MESSAGE i029 WITH jobname.
          ENDIF.
        ELSE.
          MESSAGE s000 WITH text-003.
          STOP.
        ENDIF.
      ENDIF.
    Reward points if useful
    Regards
    Anji

  • How to register adobe media encoder cs6

    Please anyone could explain to me how to register Adobe Media Encoder CS6. When I installed the new AP 10. I began to prepare my presentation and when I tried to import a video from my hard drive to a slide. It prompt a message Thanks for using AP 10. The product you have installed have not been registered yet. ....
    Thanks in advance

    El 25-08-2014, a las 2:05, Jay13 <[email protected]> escribió:
    How to register adobe media encoder cs6
    created by Jay13 in Adobe Presenter - View the full discussion
    Hi terapaca,
    Is your AP 10 licensed? if not can you please License it and then Check.
    If it is  licensed and still you are getting the same issue then please do the following.
    Please provide us with the Screen shot of the prompt and "oobelib.log" file.
    The location of "oobelib.log" is :-
    If you are using windows:
    C:\Users\<User name >\AppData\Local\Temp
    OR
    just open the run the window and type %TEMP%
    For Mac
    /Users/<user name>/Library/Logs
    Please provide the above files so that we can look into the issues soon.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6670470#6670470
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe Presenter by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How To Register/Sign Up For The Forum - Video

    You can search for available solutions in the Forum as much as you want.
    However, if you need to ask a question in the forum or answer to somebody’s post, you need to be a member of the community. It is very easy to register in our Forum and the new registration process is even more compact than before.
    There are just 3 simple steps to be followed, to get registered.
    Step 1 - Open the online Registration form:
    On the top right, click on the Register link.
    This will open a short online form, which takes you to the next step.
    Step 2 - Fill your basic personal details:
    The form will have several fields for you to fill, all of which are mandatory. All the information entered here will not be publicly visible and only be used in HP Forum's internal database. 
    The most important field among this, is the email address. If you forget your password in future, this will be handy to reset it. Also any alert or notification from the Forum, including your future topic subscriptions will be sent to this email ID.So, please choose wisely.
    Once the form is filled, click on the  button. Now, you are almost done.
    Step 3 - Choose your Screen Name:
    Finally, you will be asked to choose your screen name, which will be your identity in the Forum. Write your desired name and then click on  button.
    Congratulations! You are now a member of our community! 
    The complete process is demonstrated here in this short video.
    To learn how to create an effective post in the Forum - please check the following thread:
    How To Make A Post
    I work for HP, supporting HP experts and trying to help this community as much as I can.

    I think there will be a link in this... Cloud Plans https://www.adobe.com/products/creativecloud/buying-guide.html

  • How to register iTunes Connect if i do not have a Tax account no

    Can anyone please advice , how to register iTunes Connect if i do not have a Tax account no?
    I am interested to register iTune Connect and sell ibook, but I am not US citizen and do not live in US. I do not have an US Tax account no. How can i proceed ?

    Hi there fishlady,
    This article covers printing from the ipad with your 3051a. Give the steps outlined a shot and let us know if it helps.
    Best of Luck!
    I work with HP my posts and opinions are my own.

  • How to register Package in oracle apps?

    Hi All
    How to register package in oracle apps?
    If package contains 3 procedure, i want to call 2nd procedure of the package when i submit the concurrent program in srs window.. Can any one give the registration for the same

    To add to Gyan's comment:
    Go to system adminstration responsibility
    Create a conc. executable. Select execution method as pl/sql stored program and then enter your second procedure name as follows
    package_name.procedure_name.
    Then create conc. program that uses the above executable.
    Add the program to a request group.
    Add the request group to a responsibility.
    Now you will be able to run your procedure.
    Hope this helps,
    Sandeep Gandhi

  • How to register ePrint

    how to register ePrint

    Click on the link below and follow instructions under SET UP YOUR ePrint.
    http://h71036.www7.hp.com/hho/us/en/ep/articles/setting-up-mobile-printing.html
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • How to register for class while using ActiveX

    Hi
    I am trying to use ActiveX to send an email with Microsoft Outlook. I have found an example Vi. but i was getting an error with code "-2147221164" (Class not registered in Outlook_Mail-1.vi). How to register for that class and what are the files required for that registration.
    Attachments:
    Outlook_Mail-1.vi ‏31 KB

    Here is a picture of the Photosmart eStation:
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • How to register a new list of JDBC driver to ODI?

    Hi Guys,
    How to register a new list of JDBC driver to appear on ODI?
    exam :
    When I defined a new master repository that resides on MSSQL 2005
    I already had sqljdbc.jar (This is mssql2005 jdbc driver) on the ..\oracledi\drivers
    But when I browsed jdbc driver list it will not appear any new driver we just put them in the driver folder.
    I knew this is a common issue.
    So I need to manually define a driver class and url to match exactly with the jdbc document say for sqljdbc.jar
    which is
    Driver Class : com.microsoft.sqlserver.jdbc.SQLServerDriver
    URL : jdbc:sqlserver://localhost:1084
    I think that the driver list will have to store in somewhere in the xml files OR some records on the master repository database.
    But where ?
    Because I saw the new list driver (Microsoft SQL Server 2005 driver for JDBC) on the vmware image that I had (actually it is ODI Training workshop VMware Image).
    But I don't know where to looks.
    Here are some proof that they actually appear in the driver list
    [Original MSSQL 2000 Driver List|http://img.ihere.org/uploads/1f6d1601bb.png]
    [New MSSQL 2005 Driver List|http://img.ihere.org/uploads/94cc91e1ac.png]
    How comes?
    Thank you in advance.
    Somchai
    Edited by: somchai on Feb 12, 2009 8:24 AM

    Hi CTS !
    Then, its impossible add new drivers into ODI ? So, if I need to add a driver and this exist in Oracle list drivers, what can I do in this case ?
    I have problems with Oracle JDBC driver in ODI. When I try generate web services the "Not suitable driver" message is shown. In Design, module part, when i generate web service i have the "*name of data source*" field and I put into "oracle.jdbc.driver.OracleDriver". Ok, this isn&acute;t a correct sintax, then I read in this manual "*note that the name of the data source must be consistent with the entries in context.xml and web.xml, prefixed with:java:/comp/env/*".
    Ok, In other post (Re: Not found web.xml and content.xml files into ODI folders
    you said me only necessary to change the web.xml and context.xml is only necessary if I use Tomcat. Then, how to discover a correct sintax to put into this field and generate my web service ?
    Best regards,
    Joao.
    Edited by: JohnnyBeGood on 16/02/2009 09:00
    Edited by: JohnnyBeGood on 16/02/2009 09:29

  • How to register Rest web services in Cold Fusion 9 ?

    I am building a Rest web service using Cold Fusion 9 and Cold Fusion Builder 3 and now I want to register it on Cold Fusion 9 admin console, but I didn't see any option there as in CF 10 and CF 11 Data Services ---> Rest Web service. So, please tell me how to register my Rest web service in CF 9 either through admin console or through code?

    You've posted this question twice.  Please delete this one and people can respond to the other one.
    -Carl V.

  • How to register InfoView licenses as the incremental purchase?

    Hi all,
    I am in charge of the report development for an internal project by Business Object XIR2 for the company and get confused about how to register the product keys for more InfoView users.
    There are a number of InfoView users for the next release for our reporting system, so we bought a dozen of licenses from BO company. When I recieved the Delivery Note I was quite strange by how to proceed in the CMC.
    Item: 51-00636-085 SAP Temp Key Letter V3
    Is this a slip containing the prerequisite information for next operation or this should be received as a email with the necessary temporary keys?
    I have found this item in the product package and I am not aware of how to do then.
    Thanks in advance for the assistance.
    Regards,
    Joshua

    Hello Joshua,
    I recommend to post this query to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • If my ipad was stolen, how to register my ipad for the stolen goods, and lock the hardware requirements?

    If my ipad was stolen, how to register my ipad for the stolen goods, and lock the hardware requirements?

    It's really disappointing as a newly converted Apple customer who has already had his iPad stolen, that Apple just sits back and let's this happen. 
    I've viewed a number of posts regarding stolen iPads.  Yes, I did have the "find my iPad" enabled.  That's how I knew when the iPad was gone for good.  It's a useless function in the case of theft because the thieves know how to hack into your iPad.  It disappeared from my list of devices in the "find my iPad" utility that very same day. 
    Apple loves the fact that their devices get stolen all the time!  That way they sell more of them.  Theft could easily be significantly reduced if Apple chose to give users a means to report stolen devices on the Apple site.  They choose not to do this.  If the black market for Apple devices was limited to hackers who know they have a stolen device, the items wouldn't be such a hot commodity!  Apple knows this... I guess they want to get their devices into as many households as they can.... Legally or not. 
    So for all you hard working folks out there, find a way to make sure your Apple products are secure because if they get stolen, you're out of luck.  Apple refuses to help when they could easily do so. 

Maybe you are looking for

  • Activation problem photoshop cs2

    My photoshop cs2 will not activate on the internet or with telephone activation how can i  get this fixed

  • Link Action in datatable header not working!!!

    hi all i want to sort the datatable rows when link in the header of a column in datatable is clicked. I am using Sun Creator but it doesnot provide functinality to directly add link action in header. So i changed the jsp page to add the following cod

  • Multi level navigation menus in iweb

    Hi iweb experts I am creating a website that has multi levels. Basically a main page that links to 2 other main pages one for each of my kids and would like to have the navigation menus reflect that fact in iweb. So on the main page should have only

  • Background image moves when previewing the site

    I set up my background in the master. When I preview my site in the browser, the background location jumps around slightly as I navigate between pages.  Any ideas?

  • Multi_node install

    I have reviewed O9i AS Overview Guide (a87353), O9i AS install guide (a86240-01), and O9i AS TWP Nov 2000. I am now looking for a guide/doc to describe how to perform a multi-tier with cache installation as illustrated on page 49 of the TWP 11/2000.