My home page lost in Dream weaver

Hello,
I was working on Dream weaver and suddenly my PC re-started.
Then I got an error message mentioning there was a problem with
adobe photo loader. When I opened dream weaver the page which I was
working on was my home page and was disappeared and couldn't
recover.
Is there any way out to this problem.
Thanks.

By the way, in your PREFERENCES, do you have PREVIEW IN
BROWSER > Preview
with temp files enabled? If you do, did you preview the page
before the
computer restarted? If so, then you have a saved version of
the page in
your temp files....
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"tmy1" <[email protected]> wrote in message
news:gksqdv$rp9$[email protected]..
> Hello,
> I was working on Dream weaver and suddenly my PC
re-started. Then I got an
> error message mentioning there was a problem with adobe
photo loader. When
> I
> opened dream weaver the page which I was working on was
my home page and
> was
> disappeared and couldn't recover.
> Is there any way out to this problem.
> Thanks.
>

Similar Messages

  • Help Needed - Home Page lost on upload

    OK -  it should be CSS but bear with me.
    I've just uploaded a revised home page and the only thing showing is the background, which is an image. The source code shows that something is there but hasn't come through. I've tried looking for the problem but no luck.
    http://www.ingrid-grayling.com/index.htm
    Many thanks for any advice.
    Paul

    I saw the page ok in FFox, but in IE7, only a background.
    Found your problem though:  On this page (haven't checked any others)  : http://www.ingrid-grayling.com/index.htm
    The syntax for the closing of the styles in the head of the document is incorrect - you are missing the  -->
    Should be:
    -->
    </style>
    Fixing that, brings up the page in IE7 for me.
    If you look at this page, which is visible in IE7, the syntax is correct:
    http://www.ingrid-grayling.com/Dog_Training_in_Cumbria.htm
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap

  • I had the orange, rectangular FF button in the top left of the home page & lost it again HELP!

    What is so strange about the phrase "rectangular, orange Firefox button"??? It is a relatively new feature and you can access several functions by clicking on it....I had it on my window...now it no longer is there....what other details can I give????

    Hi ellsler13,
    You should take a look at the [https://support.mozilla.org/en-US/kb/how-do-i-get-firefox-button Firefox Button] Knowledge Base article. It will show you how to turn the button back on. Don't worry, nothing is broken. It is just a setting.
    Hopefully this helps!

  • After installing Firefox 4, Hotmail Page lost all it's formatting

    After installing Firefox 4, my Hotmail "home" page lost all it's formatting. The Hotmail/Live logon screen is normal, but after logging on I see all the links and such in one long line down the left of the page. If I click on any of the links, like to go to my Inbox or Calendar, the resulting pages have the same problem. I've cleared cache and such and tried again, but same problem.
    Everything works fine in Firefox 3.6 and I.E. 8.

    When it comes to a security issue, shouldn't firefox work out the kinks before issuing an update rather than forcing other programs to adjust to firefox? This is a pretty arrogant opinion. WE are your customers and deserve better service than this!

  • I have completely lost my safari.  I was getting an error and I lost the address bar.  I tried to fix it by changing the home page on the preferences.  I don't know what to put in the home page now.  How do I get safari back?

    I have completely lost my safari.  I was getting an error and I lost the address bar.  I tried to fix it by changing the home page on the preferences.  I don't know what to put in the home page now.  How do I get safari back?

    I tried editing my first post but couldn't get there...
    If you can open Safari go to the top of your screen, click Safari / Preferences then select the General stab. You can type in the web address for your Home page there.

  • What is the easiest way to add a slide show to a dream weaver page?

    What is the easiest way to add a slide show to a dream weaver page?

    Copy & paste the following code into a new, blank document.  Change images to your own.  SaveAs test.html and preview in browsers. 
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 with Cycle2</title>
    <!--help for older IE browsers-->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <!--Latest jQuery Core Library-->
    <script src="http://code.jquery.com/jquery-latest.min.js">
    </script>
    <!--Cycle2 Slideshow Plugin-->
    <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.cycle2/20130409/jquery.cycle2.min.js"></script>
    <style>
    /**Slideshow**/
    .cycle-slideshow {
        position: relative;
        z-index: 1;
        width: 400px; /**adjust width as required**/
        margin:75px auto;
        text-align: center;
    .cycle-slideshow img { max-width: 100% }
    /* prev / next links */
    .cycle-prev, .cycle-next {
        position: absolute;
        top: 0;
        width: 20%;
        opacity: 0;
        filter: alpha(opacity=0);
        z-index: 800;
        height: 100%;
        cursor: pointer;
    .cycle-prev {
        left: 0;
        background: url(http://malsup.github.com/images/left.png) 50% 50% no-repeat;
    .cycle-next {
        right: 0;
        background: url(http://malsup.github.com/images/right.png) 50% 50% no-repeat;
    .cycle-prev:hover, .cycle-next:hover {
        opacity: .7;
        filter: alpha(opacity=70)
    /**END SLIDESHOW STYLES**/
    </style>
    </head>
    <body>
    <h1><a href="http://jquery.malsup.com/cycle2/">JQuery Cycle2</a></h1>
    <!--begin slideshow-->
    <div class="cycle-slideshow"
        data-cycle-fx="fade"
        data-cycle-timeOut="2000"
        >
    <!-- prev/next links -->
    <div class="cycle-prev"></div>
    <div class="cycle-next"></div>
    <!--insert your images below-->
    <img src="http://jquery.malsup.com/cycle2/images/p1.jpg" alt="description">
    <img src="http://jquery.malsup.com/cycle2/images/p2.jpg" alt="description">
    <img src="http://jquery.malsup.com/cycle2/images/p3.jpg" alt="description">
    <img src="http://jquery.malsup.com/cycle2/images/p4.jpg" alt="description">
    <p>Mouse over image for previous / next links</p>
    </div>
    <!--end slideshow-->
    </body>
    </html>
    Nancy O.

  • I've lost the google window at the top of my home page. It normally appears at the top of the my.yahoo page. How can I get it back?

    I normally get a top frame in my home page showing the website address of the page and, to the right, a space for my search engine. I seem to have lost these on my computer. My partner's computer still shows these, but I can't seem to find differences in the two computers' settings to explain. How can I get this frame back?

    From your Safari menu bar click View / Customize Toolbar.
    Drag the default bar up or individual objects.

  • HT4623 Lost Face Time icon on iphone5 's home page

    Lost Face Time icon on iphone5 's home page , how can I get it back ? Already updated to 7.0.2 before loosing Face Time icon

    It cannot be too far, as FaceTime is an Apple installed app.
    Anyway, try Settings > General > Reset > Reset Home Screen Layout

  • Firefox homepage changed. Lost Icons for Gmail, YouTube, etc that use to appear on the home page. How do I get them to appear back on the Firefox homepage?

    A week ago, my Firefox homepage changed and I've lost the ability to have Gmail, YouTube, etc appear at the left top of the homepage. I tried to reset by going to settings and set the default but still can not figure out how to get Gmail, YouTube, etc to appear on the homepage.
    Thank you,
    Julia

    Is your home page now https://www.google.com/ ?
    If you are missing the traditional "black bar" at the top of the page, that has been replaced with an application button on the right side that looks like a grid of small squares. Some creative developers have posted add-ons to restore the old bar. I haven't tried these myself:
    * [https://addons.mozilla.org/en-US/firefox/addon/proper-menubar/ Proper Menubar]
    * [https://addons.mozilla.org/en-US/firefox/addon/you-google-bar/ +You Google Bar] - reviews indicate some problems

  • I hit Reset and lost everything.  I have the apple and a line under it.  How can I get the Home Page back?

    How can I get back to the Home Page?  I hit reset and lost everything.  I have a dark screen with the white apple and a line under it. 

    Wait until it finishes restoring. It would be a good idea to connect it to the charger so it won't run out of power during this process.

  • Lost my google home page when having to use mozilla firefox safe mode

    I was told to uninstall my turbo high speed for my dial-up connection with myturbousa.com and reinstall it from their support, to downloads and follow instruction. I did, and found myself not being able to use mozilla firefox. then I used the mozilla firefox safe mode in my recovery lost my home page with google.com home page.

    * Websites remembering you and automatically log you in is stored in a cookie.
    * Create an allow cookie exception (Firefox > Preferences > Privacy > Cookies: Exceptions) to keep such a cookie, especially for secure websites and if cookies expire when Firefox is closed.
    * In [[Private Browsing]] mode all cookies are session cookies that expire if that session is ended, so websites won't remember you.
    * Do not use [[Clear Recent History]] to clear the "Cookies" and the "Site Preferences"
    Clearing "Site Preferences" clears all cookies, images, pop-up windows, software installation, and password exceptions.
    See also:
    * http://kb.mozillazine.org/Cookies
    * [[Cookies]]
    * [[Enabling and disabling cookies]]

  • Lost the file, edit, back/forward, bookmarks functions. would like to change our home page (which downloaded without our knowledge) but can not do it without these functions.

    somehow allot was downloaded as our home page and we do not want it. we lost our firefox toolbar with the file, edit, back/forward, bookmarks, tools function at the top. This happened as we tried to get rid of allot home page. can not figure out how to get back our original firefox page. Help

    Press F10 or press and hold the Alt key down to bring up the "Menu Bar" temporarily.
    * [https://support.mozilla.com/kb/How+to+set+the+home+page]
    *http://www.alot.com/toolbar/
    *http://www.alot.com/faq

  • Hi i have just completed an imovie project and tried to save a hard copy on the desktop so i dragged the project file from the home page then movies folder and now the prioject seems to be lost , how can i get it back ?

    hi i have just completed an imovie project and tried to save a hard copy on the desktop so i dragged the project file from the home page then movies folder and now the prioject seems to be lost , how can i get it back ?

    It's a Finder feature, related to Quick Look. You can hit the space bar in the file list to get a preview.
    If that doesn't work, you may have an issue witha  preference file or similar. I find rebuilding the launch databse works quite well resilving tis kind of thing, as does trashing Finder preferences

  • Lost Home Page after upgrade.

    Vista Home Edition OS
    Firefox has been my default browser for years.
    I have recently tried to disable Yahoo tool bar and in the process somehow lost my Firefox Home Page and the ability to log on to my page.
    After previous Mozilla upgrades, I could sign in to my account and be at my home page.
    Now I get the Google search, the Firefox challenge and restore Previous session, but link to sign-in.
    The Yahoo Took Bar is still there and previous tech support remedies have failed.
    I cannot find any reference to the Yahoo Tool Bar in the add-ons.

    I have a similar problem, and have investigated possible solutions I could find, and nothing worked.  Here is the situation:
    --Event: Upgrading my wife's iPhone 4 from iOS 4.x to 5.1
    --Problem: All contacts were lost.  Nothing in SIM card, Texts, Searchlight, etc.  Phone numbers were retained (e.g., in favorites)
    Details...
    --I did back up the phone before upgrading, but can only find later backups to restore from (i.e., backups made after the upgrade).  I tried a restore, but nothing meaningful changed.  I cannot figure out how to go back the backup before the upgrade.  (I don't have Time Machine, somehting suggested in another post.)
    --There is no Outlook or other application synchronized from which to recover contacts
    --We both sign into the same Apple account
    --I did NOT turn on any kind of iCloud sync (which I think would have synced my contacts with my wife's phone).  All iCloud services are turned off, though the upgrade did set up an iCloud account, which I have since deleted (just in case).
    Does anyone have any suggestions?

  • Latest update 6001 ive lost contacts from home page, can i restore it?

    hi
    ive just done latest update to my phone 6.0.1 and ive lost contacts from my home page!, can i restore it?
    Thank you
    Neal

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *http://kb.mozillazine.org/Lost_bookmarks

Maybe you are looking for