I use a browser application called Changepoint...a project time recording tool. It does not navigate to the project folders or interact at all using Firefox, only IE. What do I need to ask the tech team to troubleshoot why it doesn't work with Firefox?

See question. I'm assuming that I or them are missing something with the handshake once the basic appl is launched. The Changepoint appl does launch in the browser...it just doesn't function when you get into it, e.g. clicking on a hyperlink on the screen doesn't launch a sub-appl/module to show project folders. It doesn't crash the browser or window, it just doesn't do anything.

Check with Changepoint support and ask if that application is made to be compatible with Firefox, and which versions of Firefox it has been tested with.

Similar Messages

  • I hate my Motorola Droid Razr!  After 3 years it has turned out to be a real crappy cell phone.  Does not belong in the "smartphone" category.  Forever freezes up, doesn't respond to anything I ask it to do.  I am purchasing another brand of smartphone an

    I hate my Motorola Droid Razr! After 3 years it has turned out to be a real crappy cell phone. Does not belong in the "smartphone" category. Forever freezes up, doesn't respond to anything I ask it to do. I am purchasing another brand of smartphone and will NEVER go back to Motorola again. I have tried many help/support tutorials and solutions and nothing works.I HATE THIS PHONE!!!

    If you've had the phone for 3 years, then it's time for something new. The Motorola phones I've had have been pretty solid, but if you want to switch brands or even providers, then go for it. 
    Technology changes so quickly that a 3 year old phone, regardless of manufacturer, is likely to seem slow, buggy, laggy - simply because it doesn't have the power to match the network capabilities NOW.  If it's only capable of 3G speeds, it will be slow compared to a phone with 4G capability.  After three years of use, the internal memory may be maxed out, especially if you haven't cleared stuff out, wiped the cache, etc, causing freezing and non-responsiveness.  It may not have enough RAM to effectively run updated apps....
    I would say you are due for a new phone - so compare the newest models, go to a store and try them out, and then get whatever brand and model will work best for you.

  • Hyperlink on html to a word document does not navigate to the bookmark

    i am trying to navigate to a word document bookmark from an html page
    <p><a href = "file:///D:\temp.docx#my_bookmark">my_bookmark</a></p>
    When we click on the link, we get a pop up from internet explorer asking "What do you want to do with temp.docx?"
    When, we click on "Open", the work document opens up but does not navigate to the bookmark.
    i am able to navigate to the same bookmark when i create a hyperlink inside another word document
    ie. navigation from one word document to another work document bookmark works.
    i am using windows 7  , microsoft office 2010 
    Thanks for your Support

    Hi,
    After adding this link into your HTML page, did you check the URL of the link in browser? Did you see the complete URL with the
    #my_bookmark at the end?
    It should be a query about HTML code, there is not so much we can do on Office client side. For your case, I would suggest you post in the MSDN forum of
    Word for developer, where you can get more experienced responses.
    Regards,
    Ethan Hua
    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.

  • How do I Restore my iPhoto library from my time machine if it does not give me the restore option?

    How do I Restore my iPhoto library from my time machine if it does not give me the restore option?
    When I go into my backups and click on the iPhoto library it does not come up with an option to restore it just says open and of course then won't let me open it because it is a back up in time machine? I need these photo very important.

    Mac Basics: Time Machine backs up your Mac - Apple Support
    For detailes TM support post in the forum for your OS rather than the iphoto forum
    LN

  • Why EL doesn't work with custom tags ?!

    I don't know why expression lang. doesn't work with me.
    here's an example, and please tell me why :
    --- the jsp page with EL ==> doesn't work :
    <%-- In the name of ALLAH most gacious most merciful --%>
    <%@ page language="java" %>
    <%@ taglib uri="/cartlib" prefix="cart" %>
    <html>
    <jsp:useBean id="product" class="ch16.cart.ProductCatalog" scope="application" />
    <cart:showCatalog productCatalog="${product}" addToShoppingCartUri="<%= response.encodeURL("AddToShoppingCart.jsp") %>" />
    </html>
    when using expressions instead, the page works .
    the new page is :
    <%-- In the name of ALLAH most gacious most merciful --%>
    <%@ page language="java" %>
    <%@ taglib uri="/cartlib" prefix="cart" %>
    <html>
    <jsp:useBean id="product" class="ch16.cart.ProductCatalog" scope="application" />
    <cart:showCatalog productCatalog="<%= product %>"
    addToShoppingCartUri="<%=
    response.encodeURL("AddToShoppingCart.jsp") %>" />
    </html>
    The error was :
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: jsp.error.beans.property.conversion
    org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper
    .java:512)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    org.apache.jasper.JasperException: jsp.error.beans.property.conversion
    org.apache.jasper.runtime.JspRuntimeLibrary.getValueFromPropertyEditorManager(Js
    pRuntimeLibrary.java:885)
    org.apache.jsp.ShowProductCatalog_jsp._jspService(ShowProductCatalog_jsp.java:77
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.20 logs.

    Regarding setup, see this post reply #6
    http://forum.java.sun.com/thread.jspa?threadID=629437&tstart=0
    Other potential things to check: make sure you are getting the right value passed in
    productCatalog="${applicationScope.product}"
    ${product} by preference would take a pageContext, request or session attribute before the application level one (it uses pageContext.findAttribute).
    What do you get if you just print out ${product} on the screen?
    It should call a toString() on it for rendering purposes.

  • HT1212 it does not give me the option to input a password so i cannot sync with itunes,anybody have a solution?

    Ipod is disabled and asks for a password to connect to itunes, but does not give me the option to input a password.

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        

  • How can I order an iphone 6 and pick it up from one of the apple stores in London. It doesn't work with reserve and pick up because the 64 gb is never in stock.

    How can I order an iphone 6 and pick it up from one of the apple stores in London??? It doesn't work with reserve and pick up because the 64 gb is never in stock.

    Thank you for replying.    Yes I deleted the old email address..   

  • I don't like some features in the new iTunes and my favorite visualizer doesn't work with it . I threw everything to do with iTunes away and tried to install an earlier version but the installer kept giving us this error page telling us to quit iTunes !

    The installer is crazy . It keeps thinking that iTunes is running even though we dumped everything we could find ( preferences , application , libraries ) . Did I miss something ? Is there an uninstaller? I need an earlier than 10.5 version . I don't like the side swipe ( it feels unbalanced ) effect and my favorite visualizer doesn't work right with it . Thanks!

    No problem, glad to help!
    Update: my PC USB hub was connected to a USB 3 port, I connected the 30 pin cable directly to my PC, And the restore worked just fine. Restored phone from iCloud backup and seems to be working fine.

  • The character count when sending a message doesn't work with the new iOS 5.

    Hi,
    After I upgraded to the new iOS 5, the message counter no longer appears.  I've gone into the settings to verify that it is turned on. I've turned it off and then back on. I've rebooted the phone, but to no avail.  Has anyone else encountered this new "feature"?
    Thanks,
    Allan

    The only way I can get character count back is to disable both iMessage and MMS.  I agree it is annoying.  iMessage only works between iOS 5 devices, and since the whole world does not use Apple products, it's not like I still won't be sending plain old SMS text messages to people.  If you type more then the SMS character limit, AT&T still happily sends it, their servers just truncate it, so the character count feature is hardly an outdated or pointless feature.
    I have been sending fewer and fewer texts though anyway, and using email instead. but this just pushes me further away from texting.  Most of my work texts are to blackberry users, so no iMessaging with them, but having to go back and forth into settings to enable/disable iMessage means I will likely just leave iMessage off all the time anyway.

  • Review Quiz button does not navigate to the first quiz question..

    Hi,
    so I have created an interactive software simulation guide for users of my organisation. At the end of this guide there is a quiz (multiple choice, true or false questions) with 15 slides. At the end of the quiz the results screen is displayed with the "Review Quiz" button. Clicking this navigates the user to slide 72/245 rather than the beginning of the quiz, the first question.
    How can this be fixed?!
    Many thanks,
    Achello

    You have an interactive object somewhere on that slide that is scored to be added to the quiz.
    Open the Advanced Interaction dialog (F9) and look for the object there.  Remove the score.

  • An XSD Exception occurred. The kind 'Note' does not exist in the CMS. (FWM

    Hi,
    I am trying to get the Know Rights for a report object without any success. Everytime my code hits this method it throws an exception
    An XSD Exception occurred. The kind 'Note' does not exist in the CMS. (FWM 04030) (WBP 42029)
    I am stuck with this problem for past two days and am not able to figure out any solution
    Can anyone please help me in this issue?
    Public Function GetObjectRights(ByVal CUID As String) As RightInfo()
            Try
                Dim m_BiPlatform As BusinessObjects.DSWS.BIPlatform.BIPlatform
                Dim urls() As String = _Session.GetAssociatedServicesURL("BIPlatform")
                m_BiPlatform = BusinessObjects.DSWS.BIPlatform.BIPlatform.GetInstance(_Session, urls(0))
                Dim _RightInfo() As RightInfo = m_BiPlatform.GetKnownRights(CUID)
                Return _RightInfo
            Catch ex As DSWSException
            End Try
        End Function
    Thanks,

    Hmm... I can't think of anything else that could be causing the problem.
    I don't know of any way to exclude the 'note' right since GetKnownRights() returns all known rights (RightInfo) for the type of object passed into the method.
    A suggestion might be to try getting the knownRights using the BOE .NET SDK (not web services) to see if the same error occurs.  There is some simple sample code that you can use as a test in the [BOE .NET SDK developers guide|http://help.sap.com/businessobject/product_guides/boexir31/en/boesdk_net_dg_12_en.chm].
    If this fails as well, then I can only assume that there is some problem with your install of Enterprise as I have tried many ways to reproduce the error you are getting, but cannot.

  • After importing images from my card using LR 5.4, the GPS data does not show in the metadata panel. However, when I look at the imported images using Bridge, the GPS data is visible. Anybody know why LR is not seeing the GPS data? Camera is Canon 6D.

    After importing images from my card using LR 5.4, the GPS data does not show in the metadata panel. However, when I look at the imported images using Bridge, the GPS data is visible. Anybody know why LR is not seeing the GPS data? Camera is Canon 6D.

    Ok, the issue seem to be solved. The problem was this:
    The many hundred files (raw and xmp per image) have been downloaded by ftp in no specific order. Means - a couple of files in the download queue - both raw and xmps. Most of the time, the small xmp files have been finished loading first and hence the "last change date" of these xmp files was OLDER than the "last change date" of the raw file - Lightroom then seem to ignore the existence of the xmp file and does not read it during import.(a minute is enough to run into the problem)
    By simply using the ftp client in a way that all large raw files get downloaded first followed by the xmp files, we achieved that all "last changed dates" of the xmp files are NEWER than the related raw files. (at least not older)
    And then LR is reading them and all metadata information has been set / read correctly.
    So this is solved.

  • FM Transmitter used to work fine but stopped working, bought 2 new ones and neither work, they work with other Ipods in the house, IPOD Usb syncs fine with Computer, why won't it work with the FM transmitters anymore?

    FM Transmitter used to work fine but stopped working, bought 2 new ones and neither work, they work with other Ipods in the house, IPOD Usb syncs fine with Computer, why won't it work with the FM transmitters anymore?

    Are the other iPods models, same version as yours. The 2 New FM Tx may need a new iPod software, which you can update via iTunes.
    Good Luck!

  • Why do I get the following message when I open an APP. Connect to ITUNES to use push notifications. What do I need to do to resolve this issue.

    Why do I get the following message when I open an APP. Connect to ITUNES to use push notifications. What do I need to do to resolve this issue.

    I have had the same problem since the iOS 7 update, but with regards to the Find Friends app. uninstalling and reinstalling the app has not fixed the problem

  • I cannot get my Acrobat Pro to open. I already uninstalled it and re installed it. But still does not open. The program pops to ask for permission to open the program, but it never actually opens.  I  trouble shoot it and it says incompatible application.

    I cannot get my Acrobat Pro to open. I already uninstalled it and re installed it. But still does not open. The program pops to ask for permission to open the program, but it never actually opens.  I  trouble shoot it and it says incompatible application.

    It sounds like an issue of trying to run XI on VISTA. That combination does not work. Info on both the Acrobat full version (including sub-version) and OS would help. It might also be an issue of running 11.0.0 on a system that needs the updates to work.

Maybe you are looking for