Why does this system take me round in circles and not let me ask a question?

I have just updated from Firefox 26.0 to 27.0 and it's lost most of my Bookmarks.
How do I recover them?

Did have a backup?
*[https://support.mozilla.org/en-US/kb/recover-lost-or-missing-bookmarks?esab=a&s=bookmarks&r=7&as=s Recover lost or missing Bookmarks]
*[https://support.mozilla.org/en-US/kb/restore-bookmarks-from-backup-or-move-them Restore bookmarks from backup or move them to another computer]
*[https://support.mozilla.org/en-US/kb/import-bookmarks-html-file?esab=a&s=bookmarks&r=12&as=s Import Bookmarks from a HTML file]
Maybe the bookmarks are in your old profile try access it and get your bookmarks back:
*[https://support.mozilla.org/en-US/kb/Recovering%20important%20data%20from%20an%20old%20profile?esab=a&s=recover+bookmarks&r=5&as=s Recovering important data from an old profile]

Similar Messages

  • Why does my php export feature work in IE and not firefox?

    Why does my php export feature work in IE and not Firefox? I've written a web application which contains a SigmaGrid. The grid controls reload, add update delete, print and export to csv all work in IE8. The export feature does not work in Firefox.

    I'm not sure what's going on for you. I've had 4 other developers - two on Comcast and two on Fios review my work and they get the control and export action in the IE8 version but not the FF10 version.
    Thanks for looking into this for me, though. I appreciate the effort. '' The operation was a success doctor, but the patient died.''

  • Why does the English keep defaulting back to US and not British

    Why does the English keep defaulting back to US and not British.
    This is clear enough it does what it says in English British English

    Where do you get this problem?
    Is this with the spell checking dictionary or with the language setting?
    *Tools > Options > Content > Languages
    If you do not keep changes after a restart or otherwise have problems with preferences, see:
    *http://kb.mozillazine.org/Preferences_not_saved

  • HT204053 Why does my apple id work on my phone and not my ipad?

    Why does my apple id work on my phone and not my ipad?

    Try resetting the iPad and try again >  iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting

  • Why does the tab button in Safari close safari and not open a new tab?

    Why does the tab button in Safari close Safari and not open a new tab?

    Try a reset: Simultaneously hold down the Home and On buttons until the device shuts down. Ignore the off slider if it appears. Once shut down is complete, if it doesn't restart on it own, turn the device back on using the On button. In some cases it also helps to double click the Home button and close all apps BEFORE doing the reset.

  • Why does my system currency Aging Summery in my Query  not tie to the BP aging in System Currency

    This query works but why does the amount not tie by account in System Currency from the BP. The amounts are off slightly and I am wondering if I am missing something in my query. This same query in local currency ties to the BP but when I did it in USD it does not tie. Best Danielle SELECT CardCode, CardName, PymntGroup, SUM(Balance) BALANCE, SUM(A) FUTURE, SUM(B) '0-30', SUM(C) '31-60', SUM(D) '61-90', SUM(E) '91-120', SUM(F) '121+' FROM ( SELECT T1.CardCode, T1.CardName, T2.[PymntGroup], T0.RefDate, T0.Ref1 'Document_Number',     CASE  WHEN T0.TransType=13 THEN 'Invoice'           WHEN T0.TransType=14 THEN 'Credit Note'           WHEN T0.TransType=30 THEN 'Journal'           WHEN T0.TransType=24 THEN 'Receipt'           END AS 'Document_Type',     T0.DueDate, (T0. [BalScDeb]- T0.[BalScCred]) 'Balance'     ,ISNULL((SELECT T0.[SYSDeb] - T0.[SYSCred] WHERE DateDiff(day, T0.DueDate, getdate())=0 and DateDiff(day, T0.DueDate,getdate())30 and DateDiff(day, T0.DueDate,getdate())60 and DateDiff(day, T0.DueDate,getdate())90 and DateDiff(day, T0.DueDate,getdate())=121),0) 'F' FROM JDT1 T0 INNER JOIN OCRD T1 ON T0.ShortName = T1.CardCode Left outer join  OCTG T2 On T1.GroupNum = T2.GroupNum WHERE  T1.CardType = 'C'  and BalSccred + balscdeb <>0 ) T100 GROUP BY CARDCODE, CARDNAME, PymntGroup ORDER BY CARDCODE

    Try This
    SELECT CardCode, CardName, PymntGroup, SUM(Balance) BALANCE, SUM(A) FUTURE, SUM(B) '0-30', SUM(C) '31-60',
    SUM(D) '61-90', SUM(E) '91-120', SUM(F) '121+',Rmk FROM ( SELECT T1.CardCode, T1.CardName, T2.[PymntGroup], T0.RefDate, T0.Ref1 'Document_Number',
        CASE  WHEN T0.TransType=13 THEN 'Invoice'           WHEN T0.TransType=14 THEN 'Credit Note'    
          WHEN T0.TransType=30 THEN 'Journal'           WHEN T0.TransType=24 THEN 'Receipt'     
          END AS 'Document_Type',     T0.DueDate,  (T0. [BalScDeb]- T0.[BalScCred]) 'Balance'     ,
    CAST(T1. [Free_Text]  as varchar(250)) as Rmk,
      ISNULL((SELECT T0.[SYSDeb] - T0.[SYSCred] WHERE DateDiff(day, T0.DueDate, getdate())=0) ,0)  as A,
      ISNULL((SELECT T0.[SYSDeb] - T0.[SYSCred] WHERE  DateDiff(day, T0.DueDate,getdate())between 1 and 30 ),0 )as B,
      ISNULL((SELECT T0.[SYSDeb] - T0.[SYSCred] WHERE  DateDiff(day, T0.DueDate,getdate())between 31 and 60 ),0) as c,
      ISNULL((SELECT T0.[SYSDeb] - T0.[SYSCred] WHERE DateDiff(day, T0.DueDate,getdate()) between 61 and 90  ) ,0) as d ,
      ISNULL((SELECT T0.[SYSDeb] - T0.[SYSCred] WHERE DateDiff(day, T0.DueDate,getdate()) between 91 and 120 ),0)as e,
       ISNULL((SELECT T0.[SYSDeb] - T0.[SYSCred] WHERE DateDiff(day, T0.DueDate,getdate()) > 120 ),0)as f
      FROM JDT1 T0 INNER JOIN OCRD T1 ON T0.ShortName = T1.CardCode
    Left outer join  OCTG T2 On T1.GroupNum = T2.GroupNum WHERE  T1.CardType = 'C' ) T100 GROUP BY CARDCODE,
    CARDNAME, PymntGroup,Rmk ORDER BY CARDCODE
    Regards,
    Kennedy

  • Why does the Firefox icon on my desktop read1788 and not Mozilla?

    Recently the Mozilla icon on my desktop changed from reading Mozilla to 1788 (the writing right under blue the Mozilla Firefox symbol) . Is this something Mozilla has done or is there an issue I need to resolve and if so how to I resolve this issue?
    Also are there any free virus protection, that work with Mozilla?
    Thank you in advance for any help you can give me in this matter.

    No, the desktop shortcut hasn't been renamed. First, make sure it's really pointing to Firefox and not something else:
    1. Right-click the icon and choose Properties.
    <br>2. In the Properties window, click the Shortcut tab.
    <br>3. Make sure the Target field says<br>
    "C:\Program Files\Mozilla Firefox\firefox.exe"
    4. If it does, then click the General tab.
    <br>5. In the text box at the top, enter the name you want for the shortcut.
    <br>6. Click the OK button when done.
    I take it you're having problems with the avast! Online Security add-on, which is why you have it disabled? Any add-on that scans every link on every page is bound to add a delay to loading time. If you're having more severe issues, you can ask for help on the Avast forum:
    * http://forum.avast.com/index.php?board=2.0
    That add-on isn't required for virus and malware protection. Here are some alternatives to the features it provides:
    * WebRep (reputation rating system for visited websites)
    ** https://addons.mozilla.org/firefox/addon/wot-safe-browsing-tool/
    ** https://addons.mozilla.org/firefox/addon/safe-preview/
    ** https://addons.mozilla.org/firefox/addon/webutation-reputation-security/
    * Site Correct (automatic correction of mistyped web URLs)
    ** https://addons.mozilla.org/firefox/addon/url-fixer/
    ** Or you can just avoid mistyping URLs by loading sites from bookmarks or the location bar search results for previously visited sites.
    * Antiphishing (protection from phishing scams)
    ** [[How does built-in Phishing and Malware Protection work?|This feature is built into Firefox]].
    * "Do not Track" features (prevention of third-party sites tracking your web browsing activity)
    ** [https://addons.mozilla.org/firefox/addon/adblock-plus/ Adblock Plus] with [https://adblockplus.org/en/subscriptions the EasyPrivacy list].
    ** https://addons.mozilla.org/firefox/addon/ghostery/

  • Why does JMF 2.1.1e install on Vista and not on XP

    I understand that JMF is not supported by Sun. Then why does it install on Vista with no issue but won't install on any of my XP (SP3) systems. All are P4 and above with one being a tablet PC. Each has proven capable of handling 4 live USB camera feeds simultaneously as well as running other things.
    My problem is too often repeated in this forum.
    On XP I start the install, the files are extracted, Setup.exe, wowexec.exe, and ntvdm.exe are started and that is all that happens. When I check the process list, they are all running (taking no CPU time). If I end the process tree starting with the distribution exe, they all end.
    However, if I don't do that and just shutdown, I find that wowexec has to be forced to end and that leaves the 16bit subsystem unstable.
    I have tried, no virus scan, running in W2K and. W95 compatibility, terminating everything in the process list I feel comfortable terminating and combinations of several and all of the above but to no avail.
    Yet when I installed the exact same distribution package on my Vista systems, all went just fine.
    I have even tried hand-installing JMF with little luck.
    Oh yes, and I even tried the install and test on VMWare virtual machine Xp and Vista systems with the exact same results. So this is clearly systemic.
    I should add that none of the systems are clones but each was individually installed and maintained with different applications installed.
    To test, I move the same powered USB hub and 4 attached cameras between the systems. On Vista they are found just fine. On the XP systems, they don't exist as far as Java is concerned. Which is strange as 3 other , non-Java programs, see them without issue on all the systems.
    You might ask, well why play with Java. The answer is simple. All of the programs I speak of are proprietary and I need a program I can modify to fit my needs and I have found a skeleton one to work with.
    But unless I can get JMF installed on XP, that plan, JMF. and Java will be gone. I simply don't have time for this foollishness.
    Regards,
    Jim
    Edited by: obrienj on Feb 6, 2010 4:06 PM
    Edited by: obrienj on Feb 6, 2010 4:10 PM

    obrienj wrote:
    Could you elaborate on using JWS to install JMF from Vista to XP?Unpack them on Vista. Then you have direct access to the Jars and natives that are used. Deploy those Jars and natives from a server using JWS - that should work for both Vista and XP.
    If you go to the logical extremes and also expand the Linux/Unix version, and add the natives to the server/launch, it will also be able to support those systems. The download can be 'partitioned' so that Windows only gets the Windows natives, Linux/Unix gets the Linux/Unix natives. Mac boxes get the core Java JMF only - no natives.
    Using JWS, you get to avoid that horrendous 'must reboot' prompt at the end of the native installer. The one time I tested it, I found that to be unnecessary. But there is no way to disable the prompt, AFAIK.
    I have no experience with the facility you mention.Deploying using JWS is a big area. For a good overview, see [Deploying a Java Web Start Application|http://java.sun.com/docs/books/tutorial/deployment/webstart/deploying.html].
    Note that any app. that uses natives must be digitally signed and request all-permissions in the launch file, in order to work. For a self signed certificate, this is a little tricky to design in a build file, then easy to 'stamp out' at build time.
    I have some demos, complete with source and build file, that do some of the things mentioned (most notably digitally signing apps.). If you have further questions on webstart, ask more specific questions & I might be able to help out.

  • Why does the Time Capsule of my neighbour appears and not mine?

    Why does the The Time Capsule of my neighbour appears and not mine?  I tried everything.
    Can I use the Capsule as merely a back up without making use of Wifi?  By connecting by cable to the computer?

    Why does the The Time Capsule of my neighbour appears and not mine?  I tried everything.
    What generation is your neighbour's and what generation is yours??
    Sometimes the changes in the TC and firmware can make wireless fail.. also location is important.. the location of your neighbours might be better than yours.. his also might interfere with yours.. set a fixed channel and try the various channels.
    Can I use the Capsule as merely a back up without making use of Wifi?  By connecting by cable to the computer?
    Sure, but you need to work out how the network is going to work.. if you are still picking up network from wireless.. then set static ip for the TC in a different IP range.. set no gateway (router ip) or dns and it will work just fine.

  • Why does the system need two average costs - 'Average' and 'Average Rates'?

    Hello Gurus!
    The documentation does give definitions for 'Average' and 'Average Rates' cost types, but at a very basic level.
    http://docs.oracle.com/cd/A60725_05/html/comnls/us/cst/settask.htm
    I would like to know why the system needs two costs? How are they calculated and how are they used?
    Thanks!

    Hello,
    I can suggest you a workaround that will help you keep only the 64-bit version of Photoshop.
    Visit "Uninstall a Program" in Windows 7 Control Panel and uninstall Photoshop completely.
    Visit this page and download trial version of Photoshop.
    Run the installer manually and choose the 64-bit version only (uncheck 32-bit version).
    Launch the product and specify your Adobe ID credentials.
    The product will switch to non-trial (i.e. full) mode when it recognizes your Adobe ID.
    Regards,
    Amit Batra
    Engineering Manager,
    Amit Batra

  • I open any page on Firefox and the page dimms and a box appears with number 2 and a button (ok) ,I have to press ok to continue Why does this box keep appearing on every page and site and hyow do i stop it ?

    I have uninstalled and reinstalled a few different versions of firefox to check if this was the problem but no. As soon as firefox has started the box appears with the triangle with ! in it the number 2 and the button ,ok.
    I have to press ok to get the page on every page i open. I need help!

    This is caused by the InternetEngine - Powering Applications! extension. If you uninstall that extension it should stop this happening.
    https://support.mozilla.com/kb/Uninstalling+add-ons

  • Why does my email occur when I imessage them and not my number?

    Friends are asking why my email keeps coming up when I imessage them. It's very annoying. Also on Settings > Messages then imessage says it's waiting on activation. Please help

    Just Quit mail before you shut down your computer.
    Check your log-in items to see if Mail got added to the list. If so Delete it from the list.
    Apple Menu()>System preferences>Users&Groups>Login items

  • Why does my downloaded TV show appear in "Purchased" and not under "TV Shows"?

    I purchased a season pass to Anthony Bourdain's No Reservations, Season 13 a few weeks ago.
    All of my downloads up until now have been fine and working correctly.
    However, when I downloaded episode 6 (Seven Deadly Sins), it only shows up under "Purchased" in Itunes.
    When I search for it under "TV shows," it does not show up.
    I sorted the TV show list as "Date Added" hoping it would appear at the top of the list - no such luck.
    I even tagged it as the highest rated TV show episode in my collection, and nothing.
    I did a search for "Seven Deadly Sins" in itunes search box while the "TV Show" list was displayed - and no results.
    When I played it from the "Purchased" list, it played just fine.
    I did a "Get Info" on it.
    It's tagged as a TV show, with the same sorting options that the other episodes have.
    I can confirm it did download - the .m4v file is listed the correct folder on my Windows 7PC.
    This is very strange. Any help would be appreciated.

    PaulNeedsHelp1 wrote:
    So My MacBook Pro, couple years old now, runs slower than when I first got it.  But it didnt have a ton of photos, music, as well as Adobe programs and files associated with them.  Not sure if this helps but in the disk utility, this is what is shows:
    Capacity :          249.72 GB (249,715,376,128 Bytes)
               Format :          Mac OS Extended (Journaled)          Available :          56.49 GB (56,490,659,840 Bytes)
               Owners Enabled :          Yes          Used :          193.22 GB (193,224,716,288 Bytes)
               Number of Folders :          190,592          Number of Files :          724,811
    So when I work on the computes, even with the most basic tasks and have all programs closed, I still get a colorful pinwheel and a pause in my computer.  How do i fix this?  DO I need to get more RAM?
    thanks,
    p
    If you RAM is not already maxed out, suggest that you do so.  More RAM is ALWAYS better.
    When was the last time you repaired permissions from your desktop?  When was the last time you ran Disk Utility directly from your install DVD? 
    You can clean out your  HD a little bit too.  Give it a little more room.

  • Why does the Wi-Fi work on my iPod  and not my Macbook?

    The router is an arms length away and my Ipod#4 works great. but I cannot get my Macbook to get connected. Whats up?

    Does the iPod connect to other networks?
    Does the iPod see the network?
    Any error messages?
    Do other devices now connect?
    Did the iPod connect before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Why does my imessage keep sending from my email and not my phone number

    I bought this iphone off of a friend and my imessages keep sending from his email address even though ive reset the phone and when i go into imessage it says send and recieve from and my number is selected ?

    knelso wrote:
    everytime i text someone my email pops up on their phone instead of my number
    Because you have it set that way.
    Settings > Message > Receive At > Caller ID
    Change to your phone number.

Maybe you are looking for