There is only record of the last 6 months shown on my history page, how can i review websites I visited before 6 months?

i wanna view the websites I visited about a year ago, but ony the history of the last six months is shown
how can i trace back the history?
thx!

Firefox 3 versions keep history for 180 days (6 months) by default.<br />
Firefox 4 versions are later no longer keep history based on a time range, but use a maximum number of pages.
So history older than 6 months is no longer there.
*http://kb.mozillazine.org/browser.history_expire_days (180) (also affects saved form data)
Firefox 4+:
* http://blog.bonardo.net/2010/01/20/places-got-async-expiration

Similar Messages

  • My child accidentally rented a movie on Apple TV.  Is there a way to refund the rental if we don't watch it?  How can I prevent this from happening?  Is there a way to password protect future purchases?

    My child accidentally rented a movie on Apple TV.  Is there a way to refund the rental if we don't watch it? 
    How can I prevent this from happening?  Is there a way to password protect future purchases?

    Did you try Parental Controls?
    Apple TV: Understanding Restrictions (parental controls) - Apple Support
    See if that does the trick: I think there's a way for you to request a password for purchases, but still be logged in.

  • Fetch records in the last 12 months

    Hi All,
    I have an activity metrix field which returns the total number of completed activities for an account. My requirement is , I need only the total number of activities completed in the last 12 months from today.
    So if a user views the same report after 3 months then it should display the list of completed activities in the last 12 months from that day.
    Please suggest how to go about adding this filter.
    Column Name - "Activity Metrics"."# of Closed Activities"
    So I need COUNT("Activity Metrics"."# of Closed Activities") in the last 12 months...Please suggest how to get this expression.
    Thanks
    Natraj

    Hi,
    If your intention is to find out number of closed opportunities among activities created in last 12 months, a filter on created data like below can help
    Activity."Created Date" >= TimestampAdd(SQL_TSI_MONTH,-12,Current_Date)
    You have to use under Filter -> Convert this filter into SQL option
    -- Venky CRMIT

  • With the last upgrades my Firefox has lost all sound, how can I get it Back?.

    I Upgraded to OpenSUSE 13.1 a few months ago. Firefox lost the ability to give me sound with Utube video's. I tried the Tumbleweed upgrade system, but it was not to my liking. So I have done a fresh install from DVD, and most of what I want is working well. Firefox is not playing sounds, where do I look to see what is missing?
    Francis Brighton

    Are other applications able to play sounds? If so, are some things able to produce sound in firefox but not others? For instance, playing a youtube video versus playing an mp3 (which would be easy to test by providing a file:// link to a mp3 on your hd) versus playing a wav or ogg file.
    If firefox is simply unable to play any of these things at all, you may be missing a vital plugin. If it is able to play videos for you but not the associated audio, try starting firefox from a terminal and check to see if there is any output to the terminal (on startup or when playing a audio/video file) that might be relevant.
    If nothing above seems to shed any light on things, you may also want to try running ldd on it as well (in a terminal, try typing ldd $(which firefox) and look for missing libraries).

  • Select only the last 12 months

    Hi all
    I need to write a query that will select only records from the last 12 months, order them by customer ID, and show one column per month, and a Total column where I need to add monthly Values.
    The table has the following fields
    •     YearMonth varchar(6)
    •     CustomerID varchar(15)
    •     Value integer
    Records example
    - 200809, 1, 10
    - 200809,2,20
    - 200808,1,15
    - 200808,2,12
    - 200501, ….
    I need to write a query and place it in a view that will select only records from the last 12 months, order them by customer ID, and show one column per month, and a Total column where I need to add monthly Values.
    The results should display the:
    •     CustomerID,
    •     one column per month displaying the Value
    • and the total column (sum monthly values for a customer)
    My questions are:
    •     How do I select records only from the last 12 months
    •     How do I name dynamically the columns, because today October,15 the list will start in November 2007 through October 2008, but next month it will move from December 2007 through October 2008
    •     How do I create a view with dynamic columns
    •     How do I create a column totals
    Please advice

    Hi,
    user631364 wrote:
    ... My questions are:
    •     How do I select records only from the last 12 monthsThere a a couple of things you could mean by "the last 12 months".
    Hkandpal showed you one way.
    Another is
    WHERE   yearmonth >= TO_CHAR (ADD_MONTHS (SYSDATE, -11), 'YYYYMM')
      AND   yearmonth <= TO_CHAR (            SYSDATE,       'YYYYMM')Storing DATEs in a VARCHAR2 column (or in any type of column other than DATE) is a bad idea. At best, it will involve lots of conversions, like those above.
    •     How do I name dynamically the columns, because today October,15 the list will start in November 2007 through October 2008, but next month it will move from December 2007 through October 2008
    •     How do I create a view with dynamic columns
    How to Pivot a Table with a Dynamic Number of Columns
    For example, you want to make a cross-tab output of
    the scott.emp table.
    Each row will represent a department.
    There will be a separate column for each job.
    Each cell will contain the number of employees in
         a specific department having a specific job.
    The exact same solution must work with any number
    of departments and columns.
    (Within reason: there's no guarantee this will work if you
    want 2000 columns.)
    PROMPT     ==========  0. Basic Pivot  ==========
    SELECT     deptno
    ,     COUNT (CASE WHEN job = 'ANALYST' THEN 1 END)     AS analyst_cnt
    ,     COUNT (CASE WHEN job = 'CLERK'   THEN 1 END)     AS clerk_cnt
    ,     COUNT (CASE WHEN job = 'MANAGER' THEN 1 END)     AS manager_cnt
    FROM     scott.emp
    WHERE     job     IN ('ANALYST', 'CLERK', 'MANAGER')
    GROUP BY     deptno
    ORDER BY     deptno
    PROMPT     ==========  1. Dynamic Pivot  ==========
    --     *****  Start of dynamic_pivot.sql  *****
    -- Suppress SQL*Plus features that interfere with raw output
    SET     FEEDBACK     OFF
    SET     PAGESIZE     0
    SPOOL     p:\sql\cookbook\dynamic_pivot_subscript.sql
    SELECT     DISTINCT
         ',     COUNT (CASE WHEN job = '''
    ||     job
    ||     ''' '     AS txt1
    ,     'THEN 1 END)     AS '
    ||     job
    ||     '_CNT'     AS txt2
    FROM     scott.emp
    ORDER BY     txt1;
    SPOOL     OFF
    -- Restore SQL*Plus features suppressed earlier
    SET     FEEDBACK     ON
    SET     PAGESIZE     50
    SPOOL     p:\sql\cookbook\dynamic_pivot.lst
    SELECT     deptno
    @@dynamic_pivot_subscript
    FROM     scott.emp
    GROUP BY     deptno
    ORDER BY     deptno
    SPOOL     OFF
    --     *****  End of dynamic_pivot.sql  *****
    EXPLANATION:
    The basic pivot assumes you know the number of distinct jobs,
    and the name of each one.  If you do, then writing a pivot query
    is simply a matter of writing the correct number of ", COUNT ... AS ..."\
    lines, with the name entered in two places on each one.  That is easily
    done by a preliminary query, which uses SPOOL to write a sub-script
    (called dynamic_pivot_subscript.sql in this example).
    The main script invokes this sub-script at the proper point.
    In practice, .SQL scripts usually contain one or more complete
    statements, but there's nothing that says they have to.
    This one contains just a fragment from the middle of a SELECT statement.
    Before creating the sub-script, remember to turn off SQL*Plus features
    that are designed to help humans read the output (such as headings and
    feedback messages like "7 rows selected.", since we do not want these
    to appear in the sub-script.
    Remember to turn these features on again before running the main query.
    •     How do I create a column totalsIn SQL*Plus, use the BREAK command.
    In SQL, "GROUP BY ROLLUP" or "GROUP BY GROUPING SETS"

  • Fetch-Xml based report (to count User Access in the last 6 months ) for Microsoft Dynamics CRM Online

    Hi,
    I have created a User Access report for CRM on-premise using SQl query in the following format. One row corresponds to one user in organization. Currently, I am using Microsoft Dynamics CRM Online trial version and have two users in my organization.
    I want to the same report for CRM Online environment. Only Fetch-Xml based custom reports are supported by CRM online environment hence this SQL query cannot be used.
    I have already written fetch-xml query to retrieve user access records ("audit" entity records) in "last-x-months" (where x = 1,2,3,4,5,6) as below.
    I am able to retrieve the records with "last-x-months" condition at a time, for example, the last-2-months  in my fetch-xml query only.
    For, example, when I retrieve the records in the last-2-months, it also includes the records in the last month. I want to count the records in the 2nd month only that is the difference between these two. The difference will be my 2nd column.
    Similarly, I want the other columns.  
    For the case in the above example, I have created the two separate datasets to get the record-count for the last month and last-2-months. But, I am not able to use the two datasets in the same table in my report and hence not able to calculate the difference.
    Is there any way to solve this problem?

    Hi,
    I have modified my Fetch-XML query to retrieve all the required User Access records and removed aggregation and counting and grouping from the query as well. Did grouping and counting in SSRS. Now the report works fine as shown in the above picture.

  • HT1420 I've had two laptops die within the last seven months. Last time I had to deauthorize all five and re-up; now I need to do it again but I understand it can only be done once every 12 months.  Is there any other way to just deauthorize the ones that

    I've had two lapstops die within the last seven months.  Last time I had to "deauthorize" all five computers, then re-up, since I couldn't deauthorize from the dead laptop.  Now I need to go through it all again, but I understand that this can only be done once every 12 months. What else can I do?  Can I get into the account and just deauhorize the dead computer?

    You can try contacting Apple and explain that you have been using Windows PCs that last only a few months before failing. Perhaps they will make an exception to the 12 month wait.

  • The calendar sync is recently not working correctly, not display "All events" but it only displays the last six months for my individual entries. My repeating entires do go back further, though. How do I fix?

    I have an iPad 5.1.1. The calendar sync has started to not work correctly. I have it checked "All events," but it only displays the last two months for my individual entries. My repeating entires do go back further, though. How do I fix?

    HI Jason269. Thanks for your reply, however I wrote that I already have "All events" checked. If All Events is checked and it doesn't diaplay all events, how do I fix? It seems this is a common issue, as I have read many others on here state the same problem.
    I believe my problem occurred when I synced my iMac calendar to my iPad calendar using yahoo. Yesterday, I unsynced them on my iMac controls. When I checked my iPad calendar, all of my old entries reappeared - but only for five seconds and disappeared again. So, the data is saved and still there but cannot be displayed, even when I have All events checked. In fact, it only shows my individual entries for the last two months, but does show all my recurring entries. If I switched to last six months, I will see everything for the last six months. If I switch back to all events, it is only for the last two months.
    As I mentioned, others on here have expressed exactly the same issue, including the two month example and having used yahoo.
    For legal purposes, I need to be able to use the information from my indidual calendar entries in an upcoming court case. So I really need to fix this ASAP!

  • HT1583 When I render my project in IDVD, video and audio runs properly, but when I burn it in professional quality and burning is finished there was no audio on the last two chapters, one audio is attached to the clip and the other one is from itunes, pls

    Hi, please help me When I render my project in IDVD, video and audio runs properly, but when I burn it in professional quality and burning is finished there was no audio on the last two chapters, one audio is attached to the clip and the other one is from itunes, pls help

    Hi
    My first two thoughts
    • Shared to Media Browser - BUT as Large or HD - try Medium !
    • audio from iTunes - use to go silent
    - in iTunes
    - Create a new PlayList with needed audio
    - BURN this as a standard Audio-CD (.aiff) - NOT .mp3
    - use the files on this CD in Your Movie project - I ALWAYS DO - and only use .aiff ever - never .mp3'
    My notes on this:
    No audio on DVD disc.
    Most common origin. 
    1. Imported audio from iTunes.
    • In iTunes copy out as an Audio-CD .aiff (Same as played on standard Stereo CD - no .mp3)
    • Use this in Your movie project
    2. Low - Free Space on Start-up/Boot/Internal/Mac OS Hard disk makes it hard for iMovie to work as intended.
    Down to 1.3 GB and it doesn’t work - especially audio don’t migrate over to Media Browser
    (iM’08 & 09)
    3. Material in iMovie’08 & 09 - Shared to Media Browser and here selected as Large
    large.m4v. It silenced out this project in iDVD. By making a slight alteration - provoking it to ask for a new Share/Publish to Media Browser and here selecting 640x480 - and audio was back when a new iDVD project was created including this movie.
    Minuscular - - 176x144
    Mobile - - - - - 480x360
    Medium - - - - 640x480
    Large - - - - - - 720x540    960x540
    HD - - - - - - - - 1280x720
    4. Strange audio formats like .mp3, .avi etc.
    • Change them to .aiff. Use an audio editor like Audacity (free)
    5. Main audio is set to off in System Preferences - Does this by it self - Don’t know why
    Cheque Audio-Out resp. Audio-In
    6. Ed Hanna
    Had the same problem; some Googling around gave me a kludgy, but effective fix
    Downgrade Perian from recent versions back to version 1.0.
    That worked for me, and so far I haven't encountered any deficiencies — except it takes more advanced versions of Perian to enable QuickTime to handle subtitles in .srt format — that I have noticed.
    7. GarageBand fix.
    In this set audio to 44.1 kHz (Klaus1 suggestion)
    (if this don’t work try 48 kHz - me guessing)
    Before burning the DVD.
    • Do a DiskImage (File menu and down)
    • Double click on the .img file
    • Test it with Apple DVD-player
    If it’s OK then make Your DVD.
    Burn at x1 speed.... (or x4)
    • In iDVD 08 - or - 09
    • Burn from DiskImage with Apple’s Disk Utilities application
    • OR burn with Roxio Toast™ if You got it
    Yours Bengt W

  • IPhone 4 won't work with any music docking station. I have tried it on a Bose system and orbit. This has only happened since the last 2 iOS update. Appreciate any help .

    iPhone 4 won't work with any music docking station. I have tried it on a Bose system and orbit. This has only happened since the last 2 iOS update. Appreciate any help .

    you have two kickers in there.
    Cheers
    Pete

  • I have about 14 gbs of Other on my iPad. After searching, I notice that it is mostly photos. Years and years of photos. However, when I sync, I only sync the last 6 months. I have tried deleting all photos and syncing again. No luck. Any suggestions?

    I have about 14 gbs of Other on my iPad. After searching, I notice that it is mostly photos. Years and years of photos. However, when I sync thru iTunes on my iMac, I only sync the last 6 months. I have tried deleting all photos and syncing again. No luck. Any suggestions?

    Read the User Tip that razmee209 linked for you in the post above. If nothing in there works, there May be something on your iPad that is corrupt. Backup the iPad, restore to factory settings, and them restore the backup. If that doesn't fix it, restore as new and download all of your purchased content again.
    Use iTunes to restore your iOS device to factory settings - Apple Support

  • Is there anyway i can retrieve the last 2 days of my recent history? i accidently deleted it.

    Is there anyway i can retrieve the last 2 days of my recent history? I deleted it by mistake.

    Sorry, no - unless you have a backup of the file that contains your browsing history. Firefox doesn't automatically backup your browsing history, only your bookmarks.

  • Is there a way to save the last curor position in Numbers?

    Is there a way to save the last curor position in Numbers? We have a custom Budget spreadsheet but every time we open the file, we have to scoll to the bottom of the spreadsheet.
    There are several thousand entries, and every time we open it, we have to scroll to the bottom of the screen which is getting fairly annoying.
    Every time we open it, regardless of what sheet or cell we are in when it is saved previously, it opens at the top....
    Any suggestions?
    Thanks!

    reverse the order of you entries and add rows at the top of the table.  That is have newest date entries at the top and oldest at the bottom

  • How can i delete the new feature "get in contact with your favourite persons"?? When u press the "home" button twice, theres a list on top of the ipad with the last persons youve been in contact with. How do i delete that, or some of them ;-)

    How can i delete the new feature "get in contact with your favourite persons"?? When u press the "home" button twice, theres a list on top of the ipad with the last persons youve been in contact with. How do i delete that, or some of them ;-) Sorry for the danish  

    You can turn that feature off in Settings>Mail, contacts, calendars>Contacts>Show in App Switcher>Recents>Off.

  • I bought a new iPhone and only photos from the last 30 days were transferred to my photostram on icloud. I thought icloud was the storage for all my old photos. How do I access the old photos on icloud?

    I bought a new iPhone 5. Only photos from the last 30 days were transferred to my photostream on iCloud. I thought iClud was the storage for all the old photos. How do I access the older photos than 30 days on iCloud?

    janqfromnor wrote:
    I bought a new iPhone 5. Only photos from the last 30 days were transferred to my photostream on iCloud. I thought iClud was the storage for all the old photos. How do I access the older photos than 30 days on iCloud?
    Where, exactly, did you read anything from Apple that suggested that iCloud Photostream was permanent storage?

Maybe you are looking for

  • Error while invoking BPEL from ESB

    Hi All, I am try'n to invoke BPEL process from ESB services ,where my BPEL process contains a webservice which has an input parameter of type ,a customized bean. I am hitting with the below error <env:Envelope xmlns:env="http://schemas.xmlsoap.org/so

  • Issue with Oracle.sql.NUMBER in Java Stored Procedure

    When we try to make a call to the Oracle.sql.NUMBER(String) inside a java stored procedure and pass values from '01' to '09', it throws java.lang.StringIndexOutOfBoundsException: String index out of range: 3 We use Oracle 9.2.0.6 - JServer Release 9.

  • Design console access in OIM 11gR2

    I need to create an user other than Xelsysadm to have access to design console in OIM11gR2. what are the steps in 11gR2. In R1 i used to select the Design console access checkbox while creating user manually. Is there any feature like that in 11gR2.

  • Subcontracting Scenario -urgent

    Hi all our clients requires different scenario how would we map these into the SAP 1-We send the material to Sub contracting Vendor for Machining operation suppose 100 piece. but Vendor make the some pieces faulty (Rejection) like 10 piece. 2- by def

  • Can't add Server 2012 to existing domain

    I'm getting this error: "Verification of replica failed.  The forest functional level is Windows 2000.  To install Windows Server 2012 domain or domain controller, the forest functional level must be Windows Server 2003." My forest level is set at 20