Searching  for a lost webpage!

I am trying to find a webpage I visited a couple of days ago. I have erased my history so I can't pull it up that way anymore. Is there another way of finding it on my computer. Does the computer store it anywhere else on the computer? I could do I search again on the web but it would take to long plus there are certain criteria I am missing to find it again.
Thanks.

Sorry, when the history is gone it's gone!

Similar Messages

  • A Desperate Search for a Lost File

    i fear that all hope is lost, as it probably is, but i thought i'd post here as a last resort.
    basically, i recently formatted my macbook pro's HDD to dual install OS X and a certain Linux distribution (which, as it turns out, was not necessary - but alas).
    i backed up everything i needed except for a 10MB AES encrypted .dmg file that i had stupidly hid away.
    before i realized that it was gone, i went ahead and installed both operating systems on the formatted drive, along with many gigabytes of software (as of this writing i've used 64GB on my OS X partition alone). the total capacity is ~186GB in base 2.
    i've tried filesalvage and data rescue III - filesalvage does not seem to support .dmg files, and data rescue found five disk images, two of which were unmountable (and probably too small to be what i was looking for -- less than 100KB) and one was around 93GB.
    could these results in fact contain what i'm looking for, but be corrupted and/or end in the wrong place on disk (particularly in the case of the 93GB image) because of overwriting etc? is there a way, knowing some of the contents of the single Word document in my lost disk image as well as the password, to probe the drive for something resembling its data? until i find an auxiliary drive that can hold 93GB, i cannot examine the 93GB disk image because data rescue insists that i not modify the salvage drive.
    i'd be willing to go to great pains in an attempt to find this file (i.e., write my own program to search the device for suitable patterns if anyone knows how i might go about doing that), so any suggestions are welcome.
    P.S.: i post this in the unix section because i'm not sure where else to put it; feel free to move it

    i suppose i am still in the denial stage of grieving. is there no chance that the disk image exists in the remaining free space of the drive? i mean, if i've only written over roughly a half of the drive's capacity, there should then be a roughly 50% chance that part of the data is there, right?
    couldn't one of those anomalous disk images be the beginning of my lost file?
    i really just don't want to accept this loss right now. is there absolutely nothing to be done about this lost file?

  • Searching for My lost Nokia 9500 Communicator

    Hi.
    Thanks for your support.
    I lost my Nokia 9500 communicator two weeks ago. I have notified the police, but I haven't received any news till now. Is there any technical way to find its location and recover it?
    I have backup stored in my PC. How can I preview these files on my PC to get my contacts and messages?

    The only way to find the phone would be if the network (some operator) helped you to trace the phone by its IMEI number. Most operators have the knowledge to do so, but they will probably only do it if they are looking for heavy criminals.
    Also the tracking from the network is made so they check which base station the phone has had contact with the last time and then try to use the signal from the other base stations to decide in which area the phone are. This method is not so precise. Depending on how close the base stations are it can be from 50 to 2000 meters that they can decide how near the phone are.
    As there are many phones that get lost/stolen I think operators will not help with this ever.
    Since the phone also doesn´t have any GPS hardware built-in it is impossible to say where the phone is, since the phone doesn´t know where it is.
    Depending on which version version you have of PC Suite you should only be able to restore that information to another phone. Probably you somehow might be able(I´m not sure if it is possible) to open the backup with some program or convert the backup file and open it up in some other program. I suppose the names etc. will not be so well structured when you do that since there will probably be some kind of binary code "messing" the information up so it is hard to read.
    Hope this clarified some things anyway!
    Regards,
    Henrik
    The views I present are my OWN and not of any organisation I may belong too.

  • Premiere Pro CC's sequence lost. Is there a way to "search" for it from outside the project?

    I seem to have lost a sequence created in Premiere Pro CC. I can't find it anywhere inside the Project bin.
    We have so many same-name, older projects (between Auto-Save, different drives and so on) that looking inside each of them would take forever.
    But we do know the name of the sequence. I am wondering  if there is a way to "search" for a sequence name from outside the project?
    Thanks

    there is a way to "search" for a sequence name outside of the project,
    but it would be a pointless waste of time.
    sequences are only saved within the project file itself!!
    We have so many same-name, older projects (between Auto-Save, different drives and so on) that looking inside each of them would take forever.
    better get at it then!
    hahahahahahahaha!!!

  • Searching for content in stored webpages?

    I am a student and Oracle Text is new to me. I am using isqlPlus with Oracle10g
    I am trying to search the content of external websites I upload using a procedure. The files are uploaded as BLOBs. I know UltraSearch is out there, but I´m trying to make an easy example using only SQL syntax. So far, I am able to load the html documents into a directory, but the search results are always 0. I don´t know what I am missing (sorry for the ignorance)! Can anyone give me some tips?
    I am not a DBA. This are the rights I have:
    CONNECT
    CREATE SESSION
    CREATE ANY DIRECTORY
    CTXAPP
    RESOURCE
    CREATE CLUSTER
    CREATE INDEXTYPE
    CREATE OPERATOR
    CREATE PROCEDURE
    CREATE SEQUENCE
    CREATE TABLE
    CREATE TRIGGER
    CREATE TYPE
    UNLIMITED TABLESPACE
    --First I create a table
    DROP TABLE t03_sorbaugh.CONTENT_INVENTORY;
    CREATE TABLE t03_sorbaugh.CONTENT_INVENTORY (
    CONTENT_INVENTORY_ID NUMBER NOT NULL,
    FILE_NAME VARCHAR2(1024),
    KEYWORDS VARCHAR2(2048),
    URL SYS.HTTPURITYPE,
    TEXT BLOB DEFAULT empty_blob(),
    TEXT_LOADED CHAR(1) DEFAULT 'N' NOT NULL,
    CONSTRAINT UNQ_CONTENT_INVENTORY
    UNIQUE(CONTENT_INVENTORY_ID) USING INDEX
    TABLESPACE USERS
    --Then I load an external Website
    INSERT INTO t03_sorbaugh.CONTENT_INVENTORY
    (CONTENT_INVENTORY_ID, URL, KEYWORDS)
    VALUES ('1', sys.httpuritype.createuri('http://en.wikipedia.org/wiki/Art'), '');
    COMMIT;
    --The Procedure looks like this (sorry for not keeping it short)
    CREATE OR REPLACE PROCEDURE loadLOBFromBFILE IS
    Dest_loc BLOB;
    Src_loc BFILE := BFILENAME('DIR_TESTCASE', '');
    Amount INTEGER := 0;
    cursor ContentInv_cursor is
    --create a recordset of the file names
    --that we need to load from the filesystem into the
    --Oracle database.
    SELECT
    CONTENT_INVENTORY_ID,
    FILE_NAME
    FROM t03_sorbaugh.CONTENT_INVENTORY
    WHERE FILE_NAME IS NOT NULL;
    varContentInv_id CONTENT_INVENTORY.CONTENT_INVENTORY_ID%TYPE;
    varFileName CONTENT_INVENTORY.FILE_NAME%TYPE;
    BEGIN
    open ContentInv_cursor;
    loop
    varFileName := NULL;
    varContentInv_id := NULL;
    fetch ContentInv_cursor into varContentInv_id, varFileName;
    exit when ContentInv_cursor%notfound;
    Src_loc := BFILENAME('DIR_TESTCASE', varFileName);
    IF DBMS_LOB.FILEEXISTS (Src_loc) = 1 THEN
    SELECT text INTO Dest_loc FROM CONTENT_INVENTORY
    WHERE CONTENT_INVENTORY_ID = varContentInv_id FOR UPDATE;
    /* Opening the LOB is mandatory */
    DBMS_LOB.OPEN(Src_loc, DBMS_LOB.LOB_READONLY);
    DBMS_LOB.LOADFROMFILE(Dest_loc, Src_loc, dbms_lob.getlength(Src_loc));
    /* Closing the LOB is mandatory */
    DBMS_LOB.CLOSE(Src_loc);
    /* Optional update statement */
    UPDATE t03_sorbaugh.CONTENT_INVENTORY
    SET TEXT_LOADED = 'Y'
    WHERE CONTENT_INVENTORY_ID = varContentInv_id;
    COMMIT;
    END IF;
    end loop;
    EXCEPTION
    WHEN OTHERS THEN
    RAISE_APPLICATION_ERROR (-20001, 'Error occurred while loading LOBs.');
    close ContentInv_cursor;
    END;
    -- I upload the file to the directory 'd:\daten\oracletextpraktikum'
    set serveroutput on;
    EXECUTE loadLOBFromBFILE;
    -- PL/SQL-Prozedur erfolgreich abgeschlossen.
    -- Now the preferences and the index
    begin
    ctx_ddl.create_preference('doc_lexer', 'BASIC_LEXER');
    ctx_ddl.set_attribute('doc_lexer', 'printjoins', '_-');
    end;
    drop index idxContentMgmtURL;
    create index idxContentMgmtURL on content_inventory(url) indextype is ctxsys.context;
    -- Finally, I run an example where I search for the word "Art" ... the only Webpage uploaded to my directory contains the Art definition from Wikipedia, but still, I get no search results :(
    SET LINESIZE 5000
    SET PAGESIZE 5000
    select content_inventory_id, url
    from t03_sorbaugh.content_inventory
    where contains(url,'&WORD_TO_FIND') > 0;
    --Type "Art"
    neu 3: where contains(url,'art') > 0
    Es wurden keine Zeilen ausgewählt
    Is isqlPlus somehow limited in using Oracle Text? I can´t seem to find the Problem!

    Okay, but I'm afarid I can't help much more than that, as I'm still new at Oracle Text myself. From my limited knowledge, it all looks fine, but like you, I must be missing something.
    You might try asking the DBA if the TXTSUP_UTIL package is installed in the CTXSYS schema. If it isn't, he can download it from Metalink or I can send it via email.
    While it won't fix the problem, it does offer some insight into the index preferences and storage, etc.
    BIll Ferguson

  • Can't retrieve project from early Photoshop Elements 5.0 as program is searching for Missing Files.  These were transferred from that computer and then lost HELP

    When I bought my new laptop I transferred "My Pictures" onto a memory stick then onto the new laptop which are now lost.  I have a very important family holiday/wedding still on my old computer in Photoshop Elements 5.0.  The photos are there but when I open them I get a window where PE is "searching for missing file".  Is there any way I can save these photos please?

    Please post Photoshop Elements related queries over at
    http://forums.adobe.com/community/photoshop_elements

  • Where to search for lost iPods?

    I am working for a company in the transport sector, we found a iPod on board, but nobody reported a lost one. Where can I search for the owner?
    Thanks
    Michael

    Michnael,
    If the number of clients that used your service is small, you could contact them directlyn. Be sure to use a non-leading question ("Did you receive all of your goods?"). If you ask, "Did you lose an iPod? We found one, and don't know who it belongs to", most peopel would reply, "Ahhh, sure, that's mine." If that doesn't work, contact Apple. Too, I'm sure your company has had stuff unclaimed before - how did they handle that stuff?

  • HT4847 Lost my pictures that were backed up in iCloud.  How do I find/search for them?

    Lost my pictures that were backed up in iCloud.  How do I find/search for them?

    Unfortunately, you cannot view them and I would not recommend to only store your photos via iCloud, because iCloud will only do a backup of your device including the photos that you have currently stored in your Camera Roll. I would recommend to store them (manually or via Photo Stream) on Mac/PC or with another cloud storage service like Dropbox.

  • How do I search for text on a webpage?

    I have found some answers for mobile devices, but how do I search for text on a webpage for my notebook?

    You will find command F is fairly universal.
    good computing

  • Anyone help? I click on buttons within websites and my mac opens new webpages advertising, mac keeper pro or some foreign exchange trading platform. Did i pick something hop in a download? how do i search for and get rid of this annoying infiltration?

    Anyone help? I click on buttons within websites and my mac opens new webpages advertising, mac keeper pro or some foreign exchange trading platform. Did i pick something hop in a download? how do i search for and get rid of this annoying infiltration?

    You've installed some form of adware. Take a look here:  http://www.thesafemac.com/arg/

  • I have lost my 'music, mail, safari and phone' icons and i cant get them back alothough i can still find them when i search for them in the search bar.

    my 'music, mail, safari and phone' icons have gone from my home screen and the rest of my apps have spread out only show 16 on a page (instead of 20)  i have no idea how to get them back and have tried resetting home screen which did nothing.  i can get onto these applications but i have to search for them in the search screen.  can anyone help me get these icons back?  if so please help

    this just rearanges the icons in the same order but with the screen still set up with only 16 icons an the bottom 4 (muisc mail...) missing    are there any other ways i can get them back?

  • I can't seem to access new mail on my I pad . I can only see strings of messages that are related to each other. I also have lost the ability to search for messages that are no longer on display on my I pad.

    I cannot seem to access properly any more the new e mail messages on my I pad. I can only see strings of messages that relate to each other.
    Also I cannot search for old messages that have now disappeared . The search bar has disappeared.
    Tom

    Try a reset: hold down the home button along with the power button until you see the Apple, then let go.

  • Seriously, is anyone as utterly lost as I am trying to do a search for an iBook?

    I am trying to do a search for an iBook by author or title and I cannot find a serach box to key it in!  Where is the search box????

    Buckbahia wrote:
    I'm looking for books in the store.
    What device are you using?  On an iPad, the search box is at the top right.
    Use the camera icon here to post a screenshot of what you are seeing.
    PS If you can't find a book you want, the fix is to go to another store which also has a free ereader app, such as Kindle, Nook, Kobo, Googlebooks, Sony.

  • I cant find my webpage when I search for it

    I have created and published my website, but when I go to google and search for it i cant find it, this is the same for other search engines that I try to find my web page on?

    Well, you need to go to Google and let them know that you site exists.  If they don't know about you, then they can't find you.

  • Lost the Search For "All Movies" icon from the Finder window.

    When I used to GO to Applications there was a "search for" option on the bottom left where I could click on "All Images"or "All Documents" or "All Movies". My son went to drag "All Movies into the main body and it literally went "pooof" and is no longer there. And I can't find a bunch of movies that was previously there. How do I get that option back? (it was next to a little purple box with a cog in it) or is there another way to see all movies on the computer . Thanks.

    Hi,
    click on the Desktop, then
    Finder Menu >Preferences>Sidebar tab
    recheck the "All Movies" box

Maybe you are looking for