Update Record Server Behavior blows error (its part of CS5.5 standard installation!)

One wouldn't expect the code supplied by a MAJOR CORPORATION and WEB DEVELOPMENT TECHNOLOGY LEADER to blow an error on one of the server behaviors it supplies as part of its standard install. But then again, there is reality.  The UpdateRecord.js, to be found in your installation on Windows 7 at ..ProgramFiles(x86(/Adobe Dreamweaver CS5.5/configuration/ServerBehaviors/Php_MySQL/UpdateRecord.js  causes an error when it is selected from the SERVER BEHAVIORS menu.  This happens BEFORE you I enter anything into the fields.  The error states:  "While executing onLoad in  UpdateRecord.htm, the following JavaScript error(s) occured: At line 687 of file "........UpdateRecord.js":  name has no properties.  I've looked at the code and it is beyond my comprehension.  Something about the NAME of a value in the node list.... I just don't have the chops to go rewriting Adobe's code.  If I did, I'd be making the big bucks.  Does anybody know what to do about this? About my system:  Windows 7, 64bit,   CS5.5 (on a lease so it is up to date) using PHP and MySQL, on a remote dedicated server running Apache on Linux.   :<)McFrisco

Ok, I deserved that spanking.  I was just frustrated.  Sorry for the rant. 
I've managed to figure out a workaround on this.  There really is something wacky going on with Dreamweaver and the Update Record handler.  Here's what I did:   
How to trick DREAMWEAVER into writing an UPDATE RECORD. 
Dreamweaver's server behavior for Update Record doesn't work correctly sometimes.  The symptom of this is that when you try to fill in the popup form provided by the Server Behaviors/Update Record menu item, it doesn't allow you to choose form fields to update to the database if they are posted there by a previous page.  It only allows you to choose them if they are bound to the database.  This doesn't do any good, because you are updating a record with the information from the database you want to update, NOT with new information.  Kind of weird... But here's the way to get around it.  Its a bit tedious but it works.   
1.  On a clean php page, set up a form with the input fields matching the database fields you want to update.  This page is to be used as the RESULT page of a form submitted on a previous page where the UPdate Record won't work due to conflicts, plugins, or some other unknown reason.   
2.  Connect to the database table you want to update,  and set up a new RECORDSET on the page. 
3.  Bind all the form fields to the appropriate database fields. 
4.  Do an Update Record behavior based on this form.  This will actually do nothing but update the record with the stuff that is already in the record, as noted above.   
5. Delete the php code that sets up the record set.  But, LEAVE THE Update Record code alone!  It is correct.   
6.  Change the bindings of all the fields in the FORM to the $_POST[] variables passed from the form on the previous page. (Make sure the previous page form uses the POST, not the GET method.)
Now, when you submit the form it will pick up the values in the form, which have been passed from the previous page's form.

Similar Messages

  • Update Record Server Behavior

    Using Dreamweaver MX 2004. I have a recordset created, and
    need to update a table. When I select the Update Record server
    behavior I get the following message "before using this behavior,
    please create a recordset". However the recordset has already been
    created, and it tests fine, I can see the data in the tables, and I
    am able to insert a record, delete a record, but not update...
    Using ASP JavaScript Server model with Access databse. Any help is
    much appreciated.
    Thanks! :

    Hi
    Have you already made the binding? - it's not obvious from
    your posting - but you should have a form with the initial data you
    want to update bound to it before you can update.
    I won't bang on about this because maybe you did it already.
    bfn

  • Update record server behavior preventing passage of form parameter in php

    I have a multi-page survey set up in php. I am trying to pass a form variable to the next page, but the 'update record' server behavior is preventing me from passing the variable to the next page. I have tried including the variable as a parameter in the url, but this is not working either. Please help.

    Can you not pass it onto the next page using a SESSION?
    As an example say you want to pass the information from a form field with the name 'company' to another page.
    At the top of the page that the form is submitted to you start a SESSION - <?php session_start(); ?> - then you collect the information from the form as normal BUT using a SESSION variable - $_SESSION['company']
    The resulting php code might look like below:
    <?php
    session_start();
    $_SESSION['company'] = $POST['company'];
    ?>
    Then you can pass the SESSION variable on to as many page as you like:
    So for instance the next page in the chain needs <?php session_start(); ?> at the top again to initiate a SESSION.
    Then the resulting code may look like below. The information from the form field 'company' is being passed from page to page.
    <?php session_start(); ?>
    <?php
    if(isset($_SESSION['company'])) {
    echo $_SESSION['company'];
    else {
    echo "Company name is not set";
    ?>

  • Insert/Update Record - Server Behavior

    Help Please!
    I have several pages with forms that insert records, but I
    over the weekend when I went to open them from the web to
    insert/update records errors appeared. They were working fine
    before. Using PHP, MYSQL and Dreamweaver CS3
    I have tried everything I know to do. I have recreated the
    page, same problem as well as delete behaviors and reapply them.
    Once the server behavior is added it no longer says Insert
    Record in the Application window instead it says "Dynamic
    Attribute" Further, when I click it to make any changes etc,
    instead of the screen for Insert or Update record coming up it is a
    "Dynamic Text box" regarding POST or GET or URL stuff.
    Edited to add: And once posted, the page only shows an error
    and references this line
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    Error Message
    Parse error: syntax error, unexpected '<' on line 40
    What can I do?

    You don't say which server-side language you're using, but the way that I would troubleshoot this in PHP is to use echo to display the value of $_SESSION['MM_Username'] at the bottom of the admin page. This is the session variable Dreamweaver uses to control access to a page with username and password. If the value is displayed, it means sessions are working, and the variable hasn't been destroyed.
    If that works, move onto the next page, and use echo to display the value of $_SESSION['MM_Username'] as soon as the session has been started. To prevent being redirected to the fail page, temporarily comment out the following line:
    header("Location: ". $MM_restrictGoTo);
    Basically, you need to check what's happening to the session variable that controls access to the pages.

  • Clueless NEWBIE DEVELOPER, NEEDS ASSIST with Insert Record Server Behavior

    Experienced DW designer learning CFMX7. I cannot seem to get
    beyond this error message when using the Insert Record server
    behavior to write data from a form into the database. Using MS
    Access 2002, CFMX7's internal server, DW 6.0. Please note that I am
    learning development for the first time and am using tutorials. I
    was able to connect at one point but now I cannot.
    See error message below:
    The following information is meant for the website developer
    for debugging purposes.
    Error Occurred While Processing Request
    Error Executing Database Query.
    Syntax error in INSERT INTO statement.
    Resources:
    Enable Robust Exception Information to provide greater detail
    about the source of errors. In the Administrator, click Debugging
    & Logging > Debugging Settings, and select the Robust
    Exception Information option.
    Check the ColdFusion documentation to verify that you are
    using the correct syntax.
    Search the Knowledge Base to find a solution to your problem.
    Browser Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
    SV1; .NET CLR 1.1.4322)
    Remote Address 127.0.0.1
    Referrer
    http://localhost:8500/moosek/TMPu724j3nl2j.cfm
    Date/Time 07-Aug-06 07:23 PM
    Text
    Text

    MongoSlade,
    I had this exact same problem with a CFMX 7 datasource that
    was set up as Microsoft Access with Unicode. It turns out that
    "Password" is a reserved word in the Unicode driver. Or somewhere.
    I got around it by putting square brackets, i.e., [ ] around the
    column name, like this:
    update MyTable
    set [Password] = '#form.Password#'
    where UserID = '#form.UserID#'
    That solved the problem nicely. I hope this solution will
    work for you as well.

  • Find Server Behavior/JavaScript Errors

    I am getting an error whenever I created Update or Insert
    record server behaviors in my pages. When I go through the process
    of adding the behavior, it inserts the VBScript for my ASP page,
    but then I get an error message when findServerBehaviors runs. In
    DW8, it was referring the InsertRecord.htm, in DW CS3, it referres
    to InsertRecord2.htm whenever I run and Insert Server Behavior. As
    I said, it inserts the code, but it will not show an Insert Record
    in the Server Behaviors panel.
    If I close and open DW, the next time I open the page, the
    behaviors will be listed in the panel, but the moment I make any
    changes to the page, and the findServerBehaviors javascript is
    triggered, I get the error message and lose the listing of the
    insert or update in the behavior panel even those the VBScript code
    is still in the page. This is super annoying.
    Anyone have this problem?

    It's probably some extension you have installed that's
    causing the issue. I found a tech support article that helped -
    can't remember where, but basically you recreate your configuration
    by renaming your existing config folder to something like
    "configuration-old" and then restart DW. It will create a new
    config folder and you will have to re-enable all your extensions.
    This solved the problem for me initially and I enabled a few
    extensions every few days until one day the error started happening
    again. For me the problem was caused by the extension "Justso
    Picture Window". Once I disabled that extension, my problems went
    away. It would be nice if DW had some way of telling you which
    extension is causing an issue.

  • CS6 Dreamweaver using PHP & MySQL - Delete Record Server Behavior?

    When I try to insert the Delete Record server behavior. I get an error message about a DeleteRecord.js file, which seems to be missing or defective.  I cannot use the server behavior.  I have a file that I developed using CS5, and it does indeed delete the record, but does not proceed to the destination I want.  I cannot change that except in the server behavior, so I'm stuck.  I have noticed that server behaviors seem to disappear without apparent cause, as it seems to have in this case.  I will appreciate any suggestions!  Is there any way to embed a call to a target page manually?  All is working WITHOUT the server behavior appearing, but I want to go to a confirmation display page that shows the record is indeed deleted, and we just return to the (now blank) delete confirmation page.  That'll drive a user bonkers!
    Thanks!
    Delete Record in CS6 Dreamweaver using PHP & MySQL?

    Well, your error message is self-explanatory.
    DW stores ServerBehaviors in 'Configuration' folder in installation directory. If one of the behavior JS files is missing/ corrupt, you'll see the error message you just did.
    I've uploaded a functional, proper version of DeleteRecord.js onto my site for you to download. Here's the link:
    http://www.sudarshan.me/adobeforum/dw/app/behavior-js/DeleteRecord.zip
    Download this file, extract it and put DeleteRecord.js file in your installation directory as follows. If prompted, 'replace' your local copy:
    Mac: Applications > Adobe Dreamweaver CS6 > Configuration > ServerBehaviors > PHP_MySQL
    Windows: C:\Users\Your User Name\AppData\Roaming\Adobe\Dreamweaver CS6\[language]\Configuration\ServerBehaviors\PHP_MySQL
    It should work as expected.
    If that still doesn't solve the problem, reset your DW preferences and cache and try doing it. Follow the instructions here to reset cache: http://forums.adobe.com/thread/494811
    Let us know how it goes.
    -ST

  • Cannot Install Windows Updates on Server 2008 R2 - Error Code 80070002

    Hello,
    I'm having issues installing updates among other issues that seem to be related.
    I'm not able to view a list of Installed Updates. Also Server Manager fails when it tries to list the Roles and Features on the server.
    I get this error message in server manager
    I get this error when I try and do a manual install of MSXML 4.0 SP2
    When I try and run sfc /scannow:
    Windows Resource Protection could not perform the requested operation
    I've tried the following:
    .NET repair tool
    The Readiness tool - http://support.microsoft.com/kb/947821/en-us
    Resetting Windows Update Components - http://support.microsoft.com/kb/971058/en-us
    ChkDSK
    The automatic troubleshooter "WindowsUpdateDiagnostic.diagcab" - http://windows.microsoft.com/en-ca/windows/windows-update-error-80070002#1TC=windows-7
    Latest from the CBS log file:
    2014-08-14 15:02:35, Info                  CBS    Starting TrustedInstaller initialization.
    2014-08-14 15:02:35, Info                  CBS    Loaded Servicing Stack v6.1.7601.17592 with Core: C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.17592_none_672ce6c3de2cb17f\cbscore.dll
    2014-08-14 15:02:36, Info                  CSI    00000001@2014/8/14:19:02:36.522 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fee399f0ad @0x7fef79a9849
    @0x7fef79734e3 @0xff0be97c @0xff0bd799 @0xff0bdb2f)
    2014-08-14 15:02:36, Info                  CBS    Could not load SrClient DLL from path: SrClient.dll.  Continuing without system restore points.
    2014-08-14 15:02:36, Info                  CSI    00000002@2014/8/14:19:02:36.524 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fee399f0ad @0x7fef79f6816
    @0x7fef79c2aac @0x7fef79735b9 @0xff0be97c @0xff0bd799)
    2014-08-14 15:02:36, Info                  CSI    00000003@2014/8/14:19:02:36.525 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fee399f0ad @0x7fef7c58738
    @0x7fef7c58866 @0xff0be474 @0xff0bd7de @0xff0bdb2f)
    2014-08-14 15:02:36, Info                  CBS    Ending TrustedInstaller initialization.
    2014-08-14 15:02:36, Info                  CBS    Starting the TrustedInstaller main loop.
    2014-08-14 15:02:36, Info                  CBS    TrustedInstaller service starts successfully.
    2014-08-14 15:02:36, Info                  CBS    SQM: Initializing online with Windows opt-in: False
    2014-08-14 15:02:36, Info                  CBS    SQM: Cleaning up report files older than 10 days.
    2014-08-14 15:02:36, Info                  CBS    SQM: Requesting upload of all unsent reports.
    2014-08-14 15:02:36, Info                  CBS    SQM: Failed to start upload with file pattern: C:\Windows\servicing\sqm\*_std.sqm, flags: 0x2 [HRESULT = 0x80004005
    - E_FAIL]
    2014-08-14 15:02:36, Info                  CBS    SQM: Failed to start standard sample upload. [HRESULT = 0x80004005 - E_FAIL]
    2014-08-14 15:02:36, Info                  CBS    SQM: Queued 0 file(s) for upload with pattern: C:\Windows\servicing\sqm\*_all.sqm, flags: 0x6
    2014-08-14 15:02:36, Info                  CBS    SQM: Warning: Failed to upload all unsent reports. [HRESULT = 0x80004005 - E_FAIL]
    2014-08-14 15:02:36, Info                  CBS    No startup processing required, TrustedInstaller service was not set as autostart, or else a reboot is still
    pending.
    2014-08-14 15:02:36, Info                  CBS    NonStart: Checking to ensure startup processing was not required.
    2014-08-14 15:02:37, Info                  CSI    00000004@2014/8/14:19:02:37.667 PopulateComponentFamiliesKey - Begin
    2014-08-14 15:02:38, Info                  CSI    00000005 PopulateComponentFamilies ignoring identity-less key [l:162{81}]"amd64_hal.inf-languagepack_31bf3856ad364e35_6.1.7600.16385_en-us_fd214455f7d01c16"
    2014-08-14 15:02:39, Info                  CSI    00000006 PopulateComponentFamilies ignoring identity-less key [l:140{70}]"amd64_mdmmcd.inf_31bf3856ad364e35_6.1.7600.16385_none_75f2f184549e8f36"
    2014-08-14 15:02:39, Info                  CSI    00000007 PopulateComponentFamilies ignoring identity-less key [l:142{71}]"amd64_mdmmcom.inf_31bf3856ad364e35_6.1.7600.16385_none_812d4a3d3edaed64"
    2014-08-14 15:02:39, Info                  CSI    00000008 PopulateComponentFamilies ignoring identity-less key [l:140{70}]"amd64_mdmmct.inf_31bf3856ad364e35_6.1.7600.16385_none_a7d732137db062c6"
    2014-08-14 15:02:39, Info                  CSI    00000009 PopulateComponentFamilies ignoring identity-less key [l:142{71}]"amd64_mdmmega.inf_31bf3856ad364e35_6.1.7600.16385_none_995cdac734df71e6"
    2014-08-14 15:02:39, Info                  CSI    0000000a PopulateComponentFamilies ignoring identity-less key [l:144{72}]"amd64_mdmmetri.inf_31bf3856ad364e35_6.1.7600.16385_none_0c74b3dc07900de3"
    2014-08-14 15:02:39, Info                  CSI    0000000b PopulateComponentFamilies ignoring identity-less key [l:144{72}]"amd64_mdmmhrtz.inf_31bf3856ad364e35_6.1.7600.16385_none_a55d8d9d74018205"
    2014-08-14 15:02:39, Info                  CSI    0000000c PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-a..lprovider.resources_31bf3856ad364e35_6.1.7600.16385_en-us_41183708c1b5eca0"
    2014-08-14 15:02:39, Info                  CSI    0000000d PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-a..ompat-adm.resources_31bf3856ad364e35_6.1.7600.16385_en-us_1770b9ac6464f96e"
    2014-08-14 15:02:39, Info                  CSI    0000000e PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-b..atacenter.resources_31bf3856ad364e35_6.1.7601.17514_en-us_f18072837d519058"
    2014-08-14 15:02:39, Info                  CSI    0000000f PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-b..serverweb.resources_31bf3856ad364e35_6.1.7601.17514_en-us_0680b8dbb9bb3b0b"
    2014-08-14 15:02:39, Info                  CSI    00000010 PopulateComponentFamilies ignoring identity-less key [l:200{100}]"amd64_microsoft-windows-c..rvices-camanagement_31bf3856ad364e35_6.1.7600.16385_none_461bddfc1b1d8882"
    2014-08-14 15:02:39, Info                  CSI    00000011 PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-d..-adsiedit.resources_31bf3856ad364e35_6.1.7601.17514_en-us_eabb7fec550b2fac"
    2014-08-14 15:02:40, Info                  CSI    00000012 PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-d..mc-schema.resources_31bf3856ad364e35_6.1.7601.17514_en-us_198f71574d5f5470"
    2014-08-14 15:02:40, Info                  CSI    00000013 PopulateComponentFamilies ignoring identity-less key [l:194{97}]"amd64_microsoft-windows-diskcopy.resources_31bf3856ad364e35_6.1.7600.16385_en-us_cb72ed81259f5f62"
    2014-08-14 15:02:40, Info                  CSI    00000014 PopulateComponentFamilies ignoring identity-less key [l:192{96}]"amd64_microsoft-windows-dwm-adm.resources_31bf3856ad364e35_6.1.7600.16385_en-us_8cdb64cf3d2e1f51"
    2014-08-14 15:02:40, Info                  CSI    00000015 PopulateComponentFamilies ignoring identity-less key [l:200{100}]"amd64_microsoft-windows-f..truetype-arialblack_31bf3856ad364e35_6.1.7600.16385_none_4540bd0a80a4a192"
    2014-08-14 15:02:40, Info                  CSI    00000016 PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-h..providers.resources_31bf3856ad364e35_6.1.7600.16385_en-us_2c3b936d3d73e8ea"
    2014-08-14 15:02:40, Info                  CSI    00000017 PopulateComponentFamilies ignoring identity-less key [l:194{97}]"amd64_microsoft-windows-help-efs.resources_31bf3856ad364e35_6.1.7600.16385_en-us_7b42dfac415afe76"
    2014-08-14 15:02:42, Info                  CSI    00000018 PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-l..geexpress.resources_31bf3856ad364e35_6.1.7600.16385_en-us_18a6dfd0b144425f"
    2014-08-14 15:02:42, Info                  CSI    00000019 PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-l..priseia64.resources_31bf3856ad364e35_6.1.7601.17514_en-us_dd8a17a6ae27c46c"
    2014-08-14 15:02:42, Info                  CSI    0000001a PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-l..standardv.resources_31bf3856ad364e35_6.1.7600.16385_en-us_8092a76ab10c358b"
    2014-08-14 15:02:43, Info                  CSI    0000001b PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-p..vchostreg.resources_31bf3856ad364e35_6.1.7600.16385_en-us_b2906da4f261daf9"
    2014-08-14 15:02:43, Info                  CSI    0000001c PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-r..ance-diag.resources_31bf3856ad364e35_6.1.7600.16385_en-us_0aa841d0afc8562e"
    2014-08-14 15:02:43, Info                  CSI    0000001d PopulateComponentFamilies ignoring identity-less key [l:200{100}]"amd64_microsoft-windows-s..agnosticsengine-adm_31bf3856ad364e35_6.1.7600.16385_none_af31be1d191f101a"
    2014-08-14 15:02:43, Info                  CSI    0000001e PopulateComponentFamilies ignoring identity-less key [l:200{100}]"amd64_microsoft-windows-s..csengine-nativehost_31bf3856ad364e35_6.1.7600.16385_none_761ad65676427bd9"
    2014-08-14 15:02:43, Info                  CSI    0000001f PopulateComponentFamilies ignoring identity-less key [l:200{100}]"amd64_microsoft-windows-s..itlockeraccessagent_31bf3856ad364e35_6.1.7601.17514_none_a37185ebed3561d4"
    2014-08-14 15:02:44, Info                  CBS    Archived backup log: C:\Windows\Logs\CBS\CbsPersist_20140814190235.cab.
    2014-08-14 15:02:45, Info                  CSI    00000020 PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-w..ouppolicy.resources_31bf3856ad364e35_6.1.7600.16385_en-us_9ac2938a2572fd95"
    2014-08-14 15:02:45, Info                  CSI    00000021 PopulateComponentFamilies ignoring identity-less key [l:196{98}]"amd64_microsoft-windows-webenroll.resources_31bf3856ad364e35_6.1.7600.16385_en-us_df5e63b27c378d72"
    2014-08-14 15:02:45, Info                  CSI    00000022 PopulateComponentFamilies ignoring identity-less key [l:204{102}]"amd64_microsoft.windows.c..-controls.resources_6595b64144ccf1df_5.82.7600.16385_zh-cn_19dcac3f6bc16dce"
    2014-08-14 15:02:46, Info                  CSI    00000023 PopulateComponentFamilies ignoring identity-less key [l:172{86}]"amd64_prnlx00v.inf-languagepack_31bf3856ad364e35_6.1.7600.16385_en-us_f15b45768a38ee43"
    2014-08-14 15:02:47, Info                  CSI    00000024 PopulateComponentFamilies ignoring identity-less key [l:144{72}]"amd64_wiaca00f.inf_31bf3856ad364e35_6.1.7600.16385_none_9c640a1de4358225"
    2014-08-14 15:02:47, Info                  CSI    00000025 PopulateComponentFamilies ignoring identity-less key [l:198{99}]"msil_microsoft.windows.d..s.writediagprogress_31bf3856ad364e35_6.1.7600.16385_none_e38c01a0031da2a2"
    2014-08-14 15:02:47, Info                  CSI    00000026 PopulateComponentFamilies ignoring identity-less key [l:198{99}]"msil_microsoft.windows.d..troubleshootingpack_31bf3856ad364e35_6.1.7600.16385_none_d39c6eb26d6b6b96"
    2014-08-14 15:02:47, Info                  CSI    00000027 PopulateComponentFamilies ignoring identity-less key [l:200{100}]"msil_microsoft.windows.s..owershell.resources_31bf3856ad364e35_6.1.7601.17514_en-us_8f2f867c8e6052ea"
    2014-08-14 15:02:47, Info                  CSI    00000028 PopulateComponentFamilies ignoring identity-less key [l:168{84}]"msil_rmconfighelper.resources_31bf3856ad364e35_6.1.7601.17514_en-us_4a474daab25dc8c5"
    2014-08-14 15:02:48, Info                  CSI    00000029 PopulateComponentFamilies ignoring identity-less key [l:190{95}]"wow64_microsoft-windows-powershell-events_31bf3856ad364e35_6.1.7600.16385_none_3f1bbf2cf11ac44b"
    2014-08-14 15:02:48, Info                  CSI    0000002a PopulateComponentFamilies ignoring identity-less key [l:184{92}]"wow64_microsoft-windows-powershell-exe_31bf3856ad364e35_6.1.7600.16385_none_cf5f9aad50446c26"
    2014-08-14 15:02:48, Info                  CSI    0000002b PopulateComponentFamilies ignoring identity-less key [l:192{96}]"wow64_microsoft-windows-powershell-message_31bf3856ad364e35_6.1.7600.16385_none_938e93ff8676acaf"
    2014-08-14 15:02:48, Info                  CSI    0000002c PopulateComponentFamilies ignoring identity-less key [l:184{92}]"wow64_microsoft-windows-powershell-sip_31bf3856ad364e35_6.1.7600.16385_none_ceb83cd750c49126"
    2014-08-14 15:02:48, Info                  CSI    0000002d PopulateComponentFamilies ignoring identity-less key [l:202{101}]"wow64_microsoft-windows-r..comserver.resources_31bf3856ad364e35_6.1.7600.16385_en-us_403d230b6e5b87e4"
    2014-08-14 15:02:48, Info                  CSI    0000002e PopulateComponentFamilies ignoring identity-less key [l:200{100}]"wow64_microsoft-windows-t..nition-server.en-gb_31bf3856ad364e35_6.1.7600.16385_none_d02d64e79a7a8fbd"
    2014-08-14 15:02:48, Info                  CSI    0000002f PopulateComponentFamilies ignoring identity-less key [l:200{100}]"wow64_microsoft-windows-t..nition-server.en-us_31bf3856ad364e35_6.1.7600.16385_none_d5aafabf9706aa20"
    2014-08-14 15:02:48, Info                  CSI    00000030 PopulateComponentFamilies ignoring identity-less key [l:200{100}]"wow64_microsoft-windows-t..nition-server.es-es_31bf3856ad364e35_6.1.7600.16385_none_ce9789519b91e063"
    2014-08-14 15:02:49, Info                  CSI    00000031 PopulateComponentFamilies ignoring identity-less key [l:194{97}]"x86_microsoft-windows-bootconfig.resources_31bf3856ad364e35_6.1.7600.16385_en-us_c4baaf9824d2fc4c"
    2014-08-14 15:02:50, Info                  CSI    00000032 PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-l..-lpksetup.resources_31bf3856ad364e35_6.1.7601.17514_en-us_e7729b5db351ae7a"
    2014-08-14 15:02:50, Info                  CSI    00000033 PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-l..anagement.resources_31bf3856ad364e35_6.1.7600.16385_en-us_952103538e95283d"
    2014-08-14 15:02:50, Info                  CSI    00000034 PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-l..serverhpc.resources_31bf3856ad364e35_6.1.7600.16385_en-us_0c2373da8ea83bcf"
    2014-08-14 15:02:50, Info                  CSI    00000035 PopulateComponentFamilies ignoring identity-less key [l:196{98}]"x86_microsoft-windows-l..verembeddedsolution_31bf3856ad364e35_6.1.7600.16385_none_477beb6858bdf981"
    2014-08-14 15:02:50, Info                  CSI    00000036 PopulateComponentFamilies ignoring identity-less key [l:188{94}]"x86_microsoft-windows-msieftp.resources_31bf3856ad364e35_6.1.7600.16385_en-us_b44a626bc200312a"
    2014-08-14 15:02:50, Info                  CSI    00000037 PopulateComponentFamilies ignoring identity-less key [l:196{98}]"x86_microsoft-windows-n.._service_runtimeapi_31bf3856ad364e35_6.1.7600.16385_none_8b6b5562c22f4547"
    2014-08-14 15:02:50, Info                  CSI    00000038 PopulateComponentFamilies ignoring identity-less key [l:196{98}]"x86_microsoft-windows-r..stion-detector-core_31bf3856ad364e35_6.1.7600.16385_none_f8beaf4e716bb761"
    2014-08-14 15:02:50, Info                  CSI    00000039 PopulateComponentFamilies ignoring identity-less key [l:196{98}]"x86_microsoft-windows-rasrtrfiltr.resources_31bf3856ad364e35_6.1.7600.16385_en-us_52dd99b3adb074a7"
    2014-08-14 15:02:50, Info                  CSI    0000003a PopulateComponentFamilies ignoring identity-less key [l:190{95}]"x86_microsoft-windows-regsvr32.resources_31bf3856ad364e35_6.1.7600.16385_en-us_191bcef0c24d6bfc"
    2014-08-14 15:02:51, Info                  CSI    0000003b PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-t..er-engine.resources_31bf3856ad364e35_6.1.7600.16385_en-us_b7129d57c1ee4aef"
    2014-08-14 15:02:51, Info                  CSI    0000003c PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-t..extension.resources_31bf3856ad364e35_6.1.7600.16385_en-us_45e6f39742808f67"
    2014-08-14 15:02:51, Info                  CSI    0000003d PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-t..rk-msimtf.resources_31bf3856ad364e35_6.1.7600.16385_en-us_e4d46cbfc094f384"
    2014-08-14 15:02:51, Info                  CSI    0000003e PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-u..lsettings.resources_31bf3856ad364e35_6.1.7600.16385_en-us_3fc4fe6fb4bdaec2"
    2014-08-14 15:02:51, Info                  CSI    0000003f PopulateComponentFamilies ignoring identity-less key [l:190{95}]"x86_microsoft-windows-winre-recoverytools_31bf3856ad364e35_6.1.7601.17514_none_d7553e5fcf6b6373"
    2014-08-14 15:02:51, Info                  CSI    00000040 PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-wlangpclient.resources_31bf3856ad364e35_6.1.7600.16385_en-us_d71954ccc0bef83a"
    2014-08-14 15:02:51, Info                  CSI    00000041 PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft.windows.c..-controls.resources_6595b64144ccf1df_6.0.7600.16385_sv-se_3d38d4e8a053e3eb"
    2014-08-14 15:02:51, Info                  CSI    00000042 Install-map entry missing component key in populate: [l:132{66}]"amd64_hal.inf-languagepack_31bf3856ad364e35_en-us_77e8041b44c19aa9"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    00000043 Install-map entry missing component key in populate: [l:140{70}]"amd64_hiddigi.inf-languagepack_31bf3856ad364e35_en-us_284235e9c962f280"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    00000044 Install-map entry missing component key in populate: [l:140{70}]"amd64_hidserv.inf-languagepack_31bf3856ad364e35_en-us_ffad27e3e33e1d7b"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    00000045 Install-map entry missing component key in populate: [l:110{55}]"amd64_mdmmcd.inf_31bf3856ad364e35_none_22a8db0f018e3889"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    00000046 Install-map entry missing component key in populate: [l:112{56}]"amd64_mdmmcom.inf_31bf3856ad364e35_none_31c07cb3cb15bc4b"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    00000047 Install-map entry missing component key in populate: [l:110{55}]"amd64_mdmmct.inf_31bf3856ad364e35_none_f9562a50e08c3d79"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    00000048 Install-map entry missing component key in populate: [l:112{56}]"amd64_mdmmega.inf_31bf3856ad364e35_none_063982a7934e1f59"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    00000049 Install-map entry missing component key in populate: [l:114{57}]"amd64_mdmmetri.inf_31bf3856ad364e35_none_daf34a3d0a1e0e04"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    0000004a Install-map entry missing component key in populate: [l:114{57}]"amd64_mdmmhrtz.inf_31bf3856ad364e35_none_e6e342238c4a5672"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    0000004b Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-a..lprovider.resources_31bf3856ad364e35_en-us_8af97888bc8b9fef"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    0000004c Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-a..ompat-adm.resources_31bf3856ad364e35_en-us_821ab8b6ffcd8211"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    0000004d Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-b..rstandard.resources_31bf3856ad364e35_en-us_ab6fc212f9f4e893"
    [l:28{14}]"6.1.7601.17514"
    2014-08-14 15:02:52, Info                  CSI    0000004e Install-map entry missing component key in populate: [l:164{82}]"amd64_microsoft-windows-diskcopy.resources_31bf3856ad364e35_en-us_6302e953cde376bd"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000004f Install-map entry missing component key in populate: [l:162{81}]"amd64_microsoft-windows-dwm-adm.resources_31bf3856ad364e35_en-us_e17bae3ee7b72886"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000050 Install-map entry missing component key in populate: [l:170{85}]"amd64_microsoft-windows-f..truetype-arialblack_31bf3856ad364e35_none_0760da1d6e711a0d"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000051 Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-h..providers.resources_31bf3856ad364e35_en-us_b352d37ee7af6775"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000052 Install-map entry missing component key in populate: [l:164{82}]"amd64_microsoft-windows-help-efs.resources_31bf3856ad364e35_en-us_61c13f6e2023f349"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000053 Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-l..geexpress.resources_31bf3856ad364e35_en-us_17c6801ba1ed9668"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000054 Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-l..priseia64.resources_31bf3856ad364e35_en-us_f8a97f4cf74424cd"
    [l:28{14}]"6.1.7601.17514"
    2014-08-14 15:02:52, Info                  CSI    00000055 Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-l..standardv.resources_31bf3856ad364e35_en-us_cd062e328582099c"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000056 Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-p..vchostreg.resources_31bf3856ad364e35_en-us_0b6320bab723301e"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000057 Install-map entry missing component key in populate: [l:170{85}]"amd64_microsoft-windows-s..agnosticsengine-adm_31bf3856ad364e35_none_2d921027cf470dc5"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000058 Install-map entry missing component key in populate: [l:170{85}]"amd64_microsoft-windows-s..csengine-nativehost_31bf3856ad364e35_none_2821f4ae1a431e3e"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000059 Install-map entry missing component key in populate: [l:158{79}]"amd64_microsoft-windows-sysdm.resources_31bf3856ad364e35_en-us_0858f6439944b79d"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000005a Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-w..ouppolicy.resources_31bf3856ad364e35_en-us_e6d8645b06cbf362"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000005b Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft.windows.c..-controls.resources_6595b64144ccf1df_zh-cn_7e873ca8c1808db3"
    [l:30{15}]"5.82.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000005c Install-map entry missing component key in populate: [l:136{68}]"amd64_mshdc.inf-languagepack_31bf3856ad364e35_en-us_eb809c3a5bcf098f"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000005d Install-map entry missing component key in populate: [l:146{73}]"amd64_networking-mpssvc.resources_31bf3856ad364e35_en-us_dec64a5527731c75"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000005e Install-map entry missing component key in populate: [l:142{71}]"amd64_prnlx006.inf-languagepack_31bf3856ad364e35_en-us_3f3836061538b064"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000005f Install-map entry missing component key in populate: [l:142{71}]"amd64_prnlx00v.inf-languagepack_31bf3856ad364e35_en-us_0a24838850eed8a4"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000060 Install-map entry missing component key in populate: [l:142{71}]"amd64_prnlx00w.inf-languagepack_31bf3856ad364e35_en-us_a9503b8d1dddb145"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000061 Install-map entry missing component key in populate: [l:142{71}]"amd64_prnlx00z.inf-languagepack_31bf3856ad364e35_en-us_86d349fa84aa3b28"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000062 Install-map entry missing component key in populate: [l:142{71}]"amd64_prnms002.inf-languagepack_31bf3856ad364e35_en-us_0f4e2e4ae11b4862"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000063 Install-map entry missing component key in populate: [l:134{67}]"amd64_tape.inf-languagepack_31bf3856ad364e35_en-us_973842fa62a48c80"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000064 Install-map entry missing component key in populate: [l:168{84}]"msil_microsoft.windows.d..s.writediagprogress_31bf3856ad364e35_none_680feca004dd7d0b"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000065 Install-map entry missing component key in populate: [l:168{84}]"msil_microsoft.windows.d..troubleshootingpack_31bf3856ad364e35_none_1b5b30e0a3b866b7"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000066 Install-map entry missing component key in populate: [l:170{85}]"msil_microsoft.windows.s..owershell.resources_31bf3856ad364e35_en-us_8a9bfe8ff50d064d"
    [l:28{14}]"6.1.7601.17514"
    2014-08-14 15:02:52, Info                  CSI    00000067 Install-map entry missing component key in populate: [l:138{69}]"msil_rmconfighelper.resources_31bf3856ad364e35_en-us_587cf87bf10d4e8a"
    [l:28{14}]"6.1.7601.17514"
    2014-08-14 15:02:52, Info                  CSI    00000068 Install-map entry missing component key in populate: [l:160{80}]"wow64_microsoft-windows-powershell-events_31bf3856ad364e35_none_d601b7800debedba"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000069 Install-map entry missing component key in populate: [l:154{77}]"wow64_microsoft-windows-powershell-exe_31bf3856ad364e35_none_51d98b2a035913f7"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000006a Install-map entry missing component key in populate: [l:162{81}]"wow64_microsoft-windows-powershell-message_31bf3856ad364e35_none_89b9ccaee0e1b776"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000006b Install-map entry missing component key in populate: [l:154{77}]"wow64_microsoft-windows-powershell-sip_31bf3856ad364e35_none_51e8f9d0034ad6f7"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000006c Install-map entry missing component key in populate: [l:164{82}]"x86_microsoft-windows-bootconfig.resources_31bf3856ad364e35_en-us_e91165d43a042067"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000006d Install-map entry missing component key in populate: [l:168{84}]"x86_microsoft-windows-l..-lpksetup.resources_31bf3856ad364e35_en-us_c56a4fd729d7a973"
    [l:28{14}]"6.1.7601.17514"
    2014-08-14 15:02:52, Info                  CSI    0000006e Install-map entry missing component key in populate: [l:168{84}]"x86_microsoft-windows-l..anagement.resources_31bf3856ad364e35_en-us_63d825b64ab5a9be"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000006f Install-map entry missing component key in populate: [l:168{84}]"x86_microsoft-windows-l..serverhpc.resources_31bf3856ad364e35_en-us_7962778a6725523c"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000070 Install-map entry missing component key in populate: [l:166{83}]"x86_microsoft-windows-l..verembeddedsolution_31bf3856ad364e35_none_f5b3c13a343f599a"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000071 Install-map entry missing component key in populate: [l:158{79}]"x86_microsoft-windows-msieftp.resources_31bf3856ad364e35_en-us_cdbac8c0b6c636f9"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000072 Install-map entry missing component key in populate: [l:166{83}]"x86_microsoft-windows-n.._service_runtimeapi_31bf3856ad364e35_none_f8313852616ba684"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000073 Install-map entry missing component key in populate: [l:166{83}]"x86_microsoft-windows-r..stion-detector-core_31bf3856ad364e35_none_f1331bb5f89dd2ba"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000074 Install-map entry missing component key in populate: [l:166{83}]"x86_microsoft-windows-rasrtrfiltr.resources_31bf3856ad364e35_en-us_86e21fc24740da24"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000075 Install-map entry missing component key in populate: [l:160{80}]"x86_microsoft-windows-regsvr32.resources_31bf3856ad364e35_en-us_a61362bfb6bda237"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000076 Install-map entry missing component key in populate: [l:168{84}]"x86_microsoft-windows-s..iprovider.resources_31bf3856ad364e35_en-us_1447213805498c8a"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:53, Error                 CSI    00000077 (F) STATUS_OBJECT_NAME_NOT_FOUND #1556704# from Windows::Rtl::SystemImplementation::DirectRegistryProvider::SysOpenKey(flg
    = 0, key = {provider=NULL, handle=0}, da = (KEY_READ|KEY_WOW64_64KEY), oa = @0xd3e2e0->OBJECT_ATTRIBUTES {s:48; rd:NULL; on:[156]"\Registry\Machine\Software\Microsoft\Windows\CurrentVersion\SideBySide\Winners\x86_microsoft-windows-security-secedit_31bf3[gle=0xd0000034]
    2014-08-14 15:02:53, Error                 CSI    00000078@2014/8/14:19:02:53.07 (F) d:\win7sp1_gdr\base\wcp\sil\merged\ntu\ntsystem.cpp(3676): Error STATUS_OBJECT_NAME_NOT_FOUND
    originated in function Windows::Rtl::SystemImplementation::DirectRegistryProvider::SysOpenKey expression: (null)
    [gle=0x80004005]
    2014-08-14 15:02:53, Error                 CSI    00000079 (F) STATUS_OBJECT_NAME_NOT_FOUND #1556703# from Windows::Rtl::SystemImplementation::CKey::OpenExistingKey(f
    = 0, da = (KEY_READ), oa = @0xd3e7a0, key = NULL, disp = (null))[gle=0xd0000034]
    2014-08-14 15:02:53, Info                  CBS    NonStart: Failed to get store. [HRESULT = 0x80070002 - ERROR_FILE_NOT_FOUND]
    2014-08-14 15:02:53, Info                  CBS    Failed to ensure no startup processing was required. [HRESULT = 0x80070002 - ERROR_FILE_NOT_FOUND]
    2014-08-14 15:02:53, Info                  CBS    Failed during startup processing, continuing with Trusted Installer execution [HRESULT = 0x80070002 - ERROR_FILE_NOT_FOUND]
    2014-08-14 15:02:53, Info                  CBS    Startup processing thread terminated normally
    2014-08-14 15:02:54, Info                  CSI    0000007a@2014/8/14:19:02:54.282 PopulateComponentFamiliesKey - Begin

    Hi,
    Sorry to hear that in-place upgrade is still failed. It also indicates the operating system is non-recoverable.
    You may have to rebuild the server.
    If rebuilding is not an acceptable solution, you can open a ticket with CSS support.
    http://support.microsoft.com/gp/profsup/en-au
    Hi Daniel, the price indicated on the site. Is it the price until the incident is resolved? (no matter whether it takes days or weeks)
    Every second counts..make use of it. Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    IT Stuff Quick Bytes

  • Firefox 15.0.1 not working on Vista 32-bit nor Windows XP after update. Server Not Found error.

    I recently updated to Firefox 15.0.1 on 2 separate PCs. One PC is Windows Vista 32-bit with Comodo Internet Security. Other PC is Windows XP with Avast. Previous version of Firefox was operating fine on both before update. I have exhausted all suggestions from this site to get the new update to work but it does not.
    On Vista PC, Chrome and IceDragon also have the same server error but IE works. And I've followed all the suggestions to allow access. I've uninstalled and reinstalled. Changed to no proxy. Tried the network.dns... changes and nothing.
    Has Microsoft banned every other browser from operating with their systems via a recent update? I'm wondering if this is not the case since everything was fine prior to this.
    I also have a Mac that uses Firefox 15.0.1 just fine since the update so this is exclusively a PC issue.
    Windows Firewall and Defender are deactivated. Thanks for any insight you can share.

    Does deactivating Comodo Internet Security or the other security software help anything? It might be that your security software is blocking Firefox from accessing the internet.
    --Tobbi

  • Fresh Install, Fully Updated Leopard Server Keeps rebooting on its own

    Just upgraded to Leopard Server from Tiger.
    Fresh, new install, fully updated.
    Only software installed is Retrospect 6 and Drobo client.
    My Server keeps rebooting by itself after 5-10 after logging in.
    Won't reboot on it's own if I don't log in. The services are running in the background.
    But once I log in as admin, after 5-10 mins, it will reboot on it's own.
    Any ideas are where I should start looking on how to resolve this?

    You're going to get to try to isolate this.
    Any details from the crash report? (Applications -> Utilities -> Console.) Basically you're going to have to dig around in the crashes, and (if there's nothing obvious there) then, well, "try different configurations and different stuff".
    This could be bad memory or a bad sector somewhere on the disk, for instance. Or a bad processor. Or a corrupt file. Or a bug in whichever Leopard Server baselevel is involved here.
    Some steps and some options...
    Disconnect all external hardware.
    Run the hardware diagnostics for whichever box is involved here.
    See if the box crashes if you log in as some other user.
    See if the box crashes with no external hardware, or with no network connected.
    If the box isn't under warranty (and any user crashes the box) (and if you're familiar with and comfortable with working inside static-senstive electronics gear), crack it open and reseat everything.
    If the system is available to restore or you can blank and install, reinstall everything and leave both Retrospect and Drobo, and see if it crashes. Then add one or the other and see if that crashes stuff, rinse, lather and repeat.
    Or you can call up Apple and ask for help.

  • Delete Record server behavior problem

    Hi all!
    I'm such a painful situation, that I can't figure out, why my
    Delete
    Record form don't work as supposed.
    It seems all things work (also gives message "You have
    successfully
    deleted the article."), but the problem is
    that in the MySQL (5) database real deletion doesn't
    occure...
    I was walking along with very nice tutorial
    (www.adobe.com/devnet/dreamweaver/articles/php_blog2_11.html)
    if someone has time to think about...
    I have all the steps (from the tutorial) done multiple times
    and
    result... no real deletion, despite "successfully deleted"
    text :(
    with regards,
    andreta

    Yeah! As always - if one is doing too much over and over,
    then it's too
    much of trouble.
    I used sample delete_art.php(premade by Marius) file instead
    of mine and
    it worked!
    If I was wondering what is different, then there was large
    amount of
    additional code in my file:
    In pre-made sample is 200 lines versus 242 in mine :(
    Differences(looked with Winmerge):
    MINE(not working): Working:
    (why my DW8 inserts session handling in this way?)
    1)
    $_SESSION['MM_Username'] = NULL;
    session_unregister('MM_Username');
    $_SESSION['MM_UserGroup'] = NULL;
    session_unregister('MM_UserGroup');
    $_SESSION['PrevUrl'] = NULL;
    unset($_SESSION['MM_Username']);
    unset($_SESSION['MM_UserGroup']);
    unset($_SESSION['PrevUrl']);
    2)
    if (!isset($_SESSION)) { session_start();
    session_start();
    3)
    in NONworking: (in WORKING - nothing )
    (NB! this was a double-code - i think because of the redoings
    (?recordset deleting & recreating?) )
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType,
    $theDefinedValue = "",
    $theNotDefinedValue = "")
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue)
    : $theValue;
    $theValue = function_exists("mysql_real_escape_string") ?
    mysql_real_escape_string($theValue) :
    mysql_escape_string($theValue);
    switch ($theType) {
    case "text":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "long":
    case "int":
    $theValue = ($theValue != "") ? intval($theValue) : "NULL";
    break;
    case "double":
    $theValue = ($theValue != "") ? "'" . doubleval($theValue) .
    : "NULL";
    break;
    case "date":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "defined":
    $theValue = ($theValue != "") ? $theDefinedValue :
    $theNotDefinedValue;
    break;
    return $theValue;
    4)
    NONworking:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"><!--
    InstanceBegin
    template="/Templates/admintemplate.dwt.php"
    codeOutsideHTMLIsLocked="false" -->
    Working:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    <html>
    5)
    NonW:
    <?php do { ?>
    <tr class="topheader">
    <td><?php echo $row_rsDeletedArticle['title_art'];
    ?></td>
    Working:
    <tr class="topheader">
    <td><?php echo $row_rsDeletedArticle['title_art'];
    ?></td>
    6)
    NONW:
    <td colspan="3"><?php echo
    $row_rsDeletedArticle['text_art']; ?></td>
    </tr>
    <tr>
    <td colspan="3"> </td>
    </tr>
    <?php } while ($row_rsDeletedArticle =
    mysql_fetch_assoc($rsDeletedArticle)); ?>
    </table>
    <table width="30%" border="0" cellspacing="0"
    cellpadding="0">
    <tr>
    <td><form id="delete" name="delete" method="post"
    action="delete_art.php">
    <input name="yes" type="submit" id="yes" value="yes"
    />
    <input name="id_art" type="hidden" id="id_art"
    value="<?php echo $row_rsDeletedArticle['id_art']; ?>"
    />
    </form>
    </td>
    <td><form id="cancel" name="cancel" method="post"
    action="list_art.php">
    <input name="no" type="submit" id="no" value="No" />
    </form>
    </td>
    </tr>
    </table>
    <?php } // Show if recordset not empty ?>
    <?php if ($totalRows_rsDeletedArticle == 0) { // Show if
    recordset empty ?>
    <p>You have successfully deleted the
    article.</p>
    <form id="back" name="back" method="post"
    action="list_art.php">
    <input name="back" type="submit" id="back" value="Back"
    />
    </form>
    <?php } // Show if recordset empty
    ?><p>  </p>
    <!-- InstanceEndEditable --></td>
    Working:
    <td colspan="2"><p><?php echo
    $row_rsDeletedArticle['text_art']; ?></p></td>
    </tr>
    <tr>
    <td colspan="2"><table width="15%" border="0"
    cellspacing="0" cellpadding="0">
    <tr>
    <td><form action="delete_art.php" method="post"
    name="delete" id="delete">
    <input name="yes" type="submit" id="yes" value="Yes">
    <input name="id_art" type="hidden" id="id_art"
    value="<?php echo $row_rsDeletedArticle['id_art'];
    ?>">
    </form></td>
    <td><form action="list_art.php" method="post"
    name="cancel" id="cancel">
    <input name="no" type="submit" id="no" value="No">
    </form></td>
    </tr>
    </table></td>
    </tr>
    </table>
    <?php } // Show if recordset not empty ?>
    <?php if ($totalRows_rsDeletedArticle == 0) { // Show if
    recordset
    empty ?>
    <p>You have successfully deleted the
    article.</p>
    <form action="list_art.php" method="post" name="back"
    id="back">
    <input name="back" type="submit" id="back"
    value="Back">
    </form>
    <?php } // Show if recordset empty ?>
    <p>  </p>
    <p> </p> <p> 
    </p></td>
    </tr>
    Boo-oo-hh!
    It's enough for now
    Please can someone give me advices about what is wrong with
    the nonworking
    (I deleted the section 3 from nonworking but it anyway
    doesn't work)
    AndreTa wrote:
    > Oh, sorry!
    >
    > additional information - working with DW8.0.2, PHP
    5.1.6, and with the
    > "blog" database with MySQL 4.1.14
    > (have also MySQL 5.0 - havn't tried with this... I'll do
    it after sweet
    > dreams and hard workday i.e. tomorrow)
    > In local PC WinXP, Apache 2.2.3
    >
    > andreta
    >
    >

  • Update record with check new user

    I have a page where the already registered member can create
    a username and password to access the secure part of my site. I
    need to be able to 1) check for uniqueness of username (no
    duplicates) , 2) validate my fields (password, confirm password,
    email address)
    Is there a way to apply the check new username behavior to
    the update record server behavior I have in place?
    thanks,
    Rob

    In the server behaviors panel with the submit button
    selected, from the (+) button choose User Authentication then Check
    New Username. There you can set uniqueness and requirements. From
    there, on the behaviors panel (not server behaviors), again with
    the submit button selected, select the (+) button and choose
    Validate Form. From there you can set requirements and validations.
    That should at least help.

  • Problem with update record, then link to file

    Environment:
    Dreamweaver 8, MySQL, PHP.
    I have a repeating record from my database. I added an Update
    Record server behavior for each search result for the result table.
    I added a button to the form and changed "submit" to "view".
    Pressing "view" is supposed to allow the user to view the detailed
    record information.
    The Update Record server behavior is supposed to do two
    things:
    1) add 1 to the 'numViews' filed of the record's database
    entry when the "view" button is pressed
    2) After updating the numViews field, the form is supposed to
    redirect the user to the detailed record
    I found that depending on how I create the record, I an do
    one of the above 2 behaviors, but not both. HELP!
    To add 1 to the numViews field, I created a form variable
    called incNumViews, which does the following:
    <?php echo $row_rsSearchResults['recipeNumViews']+1; ?>
    Very simple.
    The Update Record ends up changing the form action to the
    following:
    <?php echo $editFormAction; ?>
    Looking at the code for this, I ee the following:
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
    $editFormAction .= "?" .
    htmlentities($_SERVER['QUERY_STRING']);
    But when the "view" (ie: submit" button for the form is
    pressed, I get redirected back to the same repeating record search
    result page, not to the record detail page.
    However, the numViews field in the record is getting properly
    incremented.
    I tried to get around this by changing the Update Record
    behavior "After updating, go to:" field to point to the record
    detail page, and tried passing a parameter tot he recordID I want
    to see details of, as a URL parameter, but that does not work.
    If I change the Update Record form action from
    <?php echo $editFormAction; ?>
    to
    record_detail.php?recordID=<?php echo
    $row_rsSearchResults['recordID']; ?>
    Then I am able to link to the detail page, but NOT update the
    numViews field.
    HOW can I fix this to both update the record, then jump to
    the detail page with a URL parameter being passed, when I click the
    "view" (submit) button o the form??
    Thanks in advance.

    If the user's computer doesn't know what to do with a TIFF file, I guess that Open button would be missing.  Tiff is not a web normal file format, or even a common one for graphics applications....

  • CS5 Update Record behaior deletes the record

    Hello
    I am having an issue that I just cant seem to understand or resolve.
    I am using the CS5 Update Record Server Bahavior to update the user table for a website, but instead if updating the record, it deletes the entire record.
    I look at the SQL and it is definately an Update, so I dont see how it deleting the entire record.
    What I did:
    Passed in record ID through querystring to get the filtered recordset
    Created update form for dynamic data (the corrent data is filling form from recoredset)
    Created hidden field to hold ID
    Clicked the Update Record Server Behavior and matched form variables to appropriate DB fields
    Set it to go to page to list all users
    Saved page
    Run on local server (php/MySQL)
    When I edit the user  data in the update form and click submit, the record is deleted.
    * I checked the MySQL DB and the entire recored has been deleted
    Anyone have a clue on why this is happening?
    Here's the code from the page:
    <?php require_once('../Connections/localconn.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "updateuser")) {
      $updateSQL = sprintf("UPDATE users SET fname=%s, lname=%s, uname=%s, password=%s, ulevel=%s WHERE id=%s",
                           GetSQLValueString($_POST['fname'], "text"),
                           GetSQLValueString($_POST['lname'], "text"),
                           GetSQLValueString($_POST['uname'], "text"),
                           GetSQLValueString($_POST['pword'], "text"),
                           GetSQLValueString($_POST['ulevel'], "int"),
                           GetSQLValueString($_POST['id'], "int"));
      mysql_select_db($database_localconn, $localconn);
      $Result1 = mysql_query($updateSQL, $localconn) or die(mysql_error());
      $updateGoTo = "users.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
        $updateGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $updateGoTo));
    $colname_Recordset_users = "-1";
    if (isset($_GET['id'])) {
      $colname_Recordset_users = $_GET['id'];
    mysql_select_db($database_localconn, $localconn);
    $query_Recordset_users = sprintf("SELECT * FROM users WHERE id = %s", GetSQLValueString($colname_Recordset_users, "int"));
    $Recordset_users = mysql_query($query_Recordset_users, $localconn) or die(mysql_error());
    $row_Recordset_users = mysql_fetch_assoc($Recordset_users);
    $totalRows_Recordset_users = mysql_num_rows($Recordset_users);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Title</title>
    <meta http-equiv="Content-Language" content="English" />
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <META NAME="ROBOTS" CONTENT="NOINDEX, FOLLOW">
    <link rel="stylesheet" type="text/css" href="style.css" media="screen" />
    </head>
    <body>
    <div id="wrap">
    <div id="top"></div>
    <div id="content">
    <div class="header">
    <h1><a href="#">FENA </a></h1>
    <h2>Content Management System (CMS)</h2>
    </div>
    <div class="breadcrumbs">
    <a href="#">Home</a> &middot; Edit User
    </div>
    <div class="middle">
    <h2>Edit User - <?php echo $row_Recordset_users['lname']; ?>, <?php echo $row_Recordset_users['fname']; ?></h2>
    <form method="POST" action="<?php echo $editFormAction; ?>" name="updateuser"> 
    <table>
    <tr>
         <td>Last Name</td>
            <td><input name="lname" type="text" value="<?php echo $row_Recordset_users['lname']; ?>" /></td>
        </tr>
        <tr>
         <td>First Name</td>
            <td><input name="fname" type="text" value="<?php echo $row_Recordset_users['fname']; ?>" /></td>
        </tr>
        <tr>
         <td>Username</td>
            <td><input name="uname" type="text" value="<?php echo $row_Recordset_users['uname']; ?>" /></td>
        </tr>
        <tr>
         <td>Password</td>
            <td><input name="pword" type="text" value="<?php echo $row_Recordset_users['password']; ?>" /></td>
        </tr>
        <tr>
         <td>User Level</td>
            <td>
             <select name="ulevel">
                 <option value="<?php echo $row_Recordset_users['ulevel']; ?>"><?php echo $row_Recordset_users['ulevel']; ?></option>
                    <option value="1">Admin</option>
                    <option value="2">Editor</option>
                </select>
            </td>
        </tr>
        <tr>
         <td colspan="2" align="right"><input name="id" type="hidden" value="<?php echo $row_Recordset_users['id']; ?>" /><input name="submit" type="submit" value="Submit" /></td>
        </tr>
    </table>
    <input type="hidden" name="MM_update" value="updateuser" />
    </form>
    </div>
    <div class="right">
    <h2>Navigation</h2>
    <ul>
    <li><a href="index.php">Home</a></li>
    <li><a href="users.php">Users</a></li>
    <li><a href="users_add.php">Add User</a></li>
    </ul>
    </div>
    <div id="clear"></div>
    </div>
    <div id="bottom"></div>
    </div>
    <div id="footer">
    Developed by Me
    </div>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset_users);
    ?>

    Hi Paul,
    I am actually try to a create a submit a process and have it to update the DB.
    Thanks,
    Han

  • Updating Record

    I have created a form that allows a user to enter information into a database where each user has one record. Now I want to create a page that allows the user to update their record. What I have done so far is created a “my profile page” that the user is able to access once they login which contains all the information that they provided on the registration page.  Also on that page I have place an edit link so that they pulls up the “edit my profile page”. From there I created an update record query, but when I tested it to see if worked it doesn’t update the database. I am not even sure where the data is going at this point. Any help would be appreciated.
    Here is the code for my profile page:
    <?php require_once('Connections/rescue.php'); ?>
    <?php
    //initialize the session
    if (!isset($_SESSION)) {
      session_start();
    // ** Logout the current user. **
    $logoutAction = $_SERVER['PHP_SELF']."?doLogout=true";
    if ((isset($_SERVER['QUERY_STRING'])) && ($_SERVER['QUERY_STRING'] != "")){
      $logoutAction .="&". htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_GET['doLogout'])) &&($_GET['doLogout']=="true")){
      //to fully log out a visitor we need to clear the session varialbles
      $_SESSION['MM_Username'] = NULL;
      $_SESSION['MM_UserGroup'] = NULL;
      $_SESSION['PrevUrl'] = NULL;
      unset($_SESSION['MM_Username']);
      unset($_SESSION['MM_UserGroup']);
      unset($_SESSION['PrevUrl']);
      $logoutGoTo = "logout.php";
      if ($logoutGoTo) {
        header("Location: $logoutGoTo");
        exit;
    ?>
    <?php
    if (!isset($_SESSION)) {
      session_start();
    $MM_authorizedUsers = "";
    $MM_donotCheckaccess = "true";
    // *** Restrict Access To Page: Grant or deny access to this page
    function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
      // For security, start by assuming the visitor is NOT authorized.
      $isValid = False;
      // When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
      // Therefore, we know that a user is NOT logged in if that Session variable is blank.
      if (!empty($UserName)) {
        // Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
        // Parse the strings into arrays.
        $arrUsers = Explode(",", $strUsers);
        $arrGroups = Explode(",", $strGroups);
        if (in_array($UserName, $arrUsers)) {
          $isValid = true;
        // Or, you may restrict access to only certain users based on their username.
        if (in_array($UserGroup, $arrGroups)) {
          $isValid = true;
        if (($strUsers == "") && true) {
          $isValid = true;
      return $isValid;
    $MM_restrictGoTo = "login.php";
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0)
      $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo);
      exit;
    ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $colname_rsmyprofile = "-1";
    if (isset($_SESSION['register_login'])) {
      $colname_rsmyprofile = $_SESSION['register_login'];
    mysql_select_db($database_rescue, $rescue);
    $query_rsmyprofile = sprintf("SELECT * FROM user_registration WHERE register_login = %s", GetSQLValueString($colname_rsmyprofile, "text"));
    $rsmyprofile = mysql_query($query_rsmyprofile, $rescue) or die(mysql_error());
    $row_rsmyprofile = mysql_fetch_assoc($rsmyprofile);
    $totalRows_rsmyprofile = mysql_num_rows($rsmyprofile);$colname_rsmyprofile = "-1";
    if (isset($_SESSION['MM_Username'])) {
      $colname_rsmyprofile = $_SESSION['MM_Username'];
    mysql_select_db($database_rescue, $rescue);
    $query_rsmyprofile = sprintf("SELECT * FROM user_registration WHERE register_login = %s", GetSQLValueString($colname_rsmyprofile, "text"));
    $rsmyprofile = mysql_query($query_rsmyprofile, $rescue) or die(mysql_error());
    $row_rsmyprofile = mysql_fetch_assoc($rsmyprofile);
    $totalRows_rsmyprofile = mysql_num_rows($rsmyprofile);
    ?>
    <table width="591" cellpadding="2" cellspacing="2">
      <tr class="mainlabels">
        <td colspan="4" bgcolor="#FFFFFF" style="color: #FFF; font-family: 'Arial Black', Gadget, sans-serif; font-size: 16px; font-weight: bold;"><div align="left"></div></td>
      </tr>
      <tr class="mainlabels">
        <td colspan="4" bgcolor="#FF0000" style="color: #FFF; font-family: 'Arial Black', Gadget, sans-serif; font-size: 16px; font-weight: bold;"><div align="left">Your Information</div></td>
      </tr>
      <tr>
        <td class="mainlabels" style="font-size: 12px; font-family: Arial, Helvetica, sans-serif; color: #000; font-weight: normal;"> </td>
        <td class="mainlabels"> </td>
        <td class="mainlabels"> </td>
        <td class="mainlabels"><a href="editmyprofile.php" style="color: #F00; font-weight: bold;"><u>Edit</u></a></td>
      </tr>
      <tr>
        <td width="93" class="mainlabels" style="font-size: 12px; font-family: Arial, Helvetica, sans-serif; color: #000; font-weight: normal;"><div align="left">Name:</div></td>
        <td width="192" class="mainlabels"><div align="left"><?php echo $row_rsmyprofile['register_name']; ?></div></td>
        <td width="107" class="mainlabels"><div align="left"></div></td>
        <td width="175" class="mainlabels"><div align="left"><img src="images/small_logo.jpg" width="100" height="25" alt="Small Logo" /></div></td>
      </tr>
      <tr>
        <td class="mainlabels"><div align="left"><span class="mainlabels">PrimaryEmail</span>:</div></td>
        <td class="mainlabels"><div align="left"><?php echo $row_rsmyprofile['register_pemail']; ?></div></td>
        <td class="mainlabels"><div align="left">Second Email:</div></td>
        <td class="mainlabels"><div align="left"><?php echo $row_rsmyprofile['register_semail']; ?></div></td>
      </tr>
      <tr>
        <td class="mainlabels"><div align="left">Land Line:</div></td>
        <td class="mainlabels"><div align="left"><?php echo $row_rsmyprofile['register_phone']; ?></div></td>
        <td class="mainlabels"><div align="left">Cell Phone:</div></td>
        <td class="mainlabels"><div align="left"><?php echo $row_rsmyprofile['register_cellphone']; ?></div></td>
      </tr>
      <tr>
        <td class="mainlabels"><div align="left">Username:</div></td>
        <td class="mainlabels"><div align="left"><?php echo $row_rsmyprofile['register_login']; ?></div></td>
        <td class="mainlabels"><div align="left">Password:</div></td>
        <td class="mainlabels"><div align="left"><?php echo $row_rsmyprofile['register_pass']; ?></div></td>
      </tr>
      <tr>
        <td class="mainlabels"><div align="left"></div></td>
        <td class="mainlabels"><div align="left"></div></td>
        <td class="mainlabels"><div align="left"></div></td>
        <td class="mainlabels"><div align="left"></div></td>
      </tr>
      <tr class="mainlabels">
        <td colspan="4" bgcolor="#FF0000" style="font-family: 'Arial Black', Gadget, sans-serif; font-size: 16px; color: #FFF;"><div align="left">Emergency Contact Information</div></td>
      </tr>
      <tr>
        <td colspan="2" class="mainlabels"> </td>
        <td class="mainlabels"> </td>
        <td class="mainlabels"> </td>
      </tr>
      <tr>
        <td colspan="2" class="mainlabels"><div align="left">Emergency Contact 1</div></td>
        <td class="mainlabels"><div align="left"></div></td>
        <td class="mainlabels"><div align="left"></div></td>
      </tr>
      <tr>
        <td class="mainlabels"><div align="left">Name:</div></td>
        <td class="mainlabels"><div align="left"><?php echo $row_rsmyprofile['con1_name']; ?></div></td>
     

    This thread has been moved to the Dreamweaver Application Development forum, which deals with PHP and other server side issues.
    When posting questions, it's helpful to see your code, but it's expecting a lot of others to trawl through several hundred lines of code. You say the problem lies with the update page, so why post the profile page if that's working correctly? However, looking at the code for your profile page, it looks incomplete. Anyway, let's not go there if it's working OK.
    When describing a problem, it helps if you explain what happens when you load the page. Looking at your code, I'm fairly sure that the user's details are never loaded into the update form. As a result, the update record server behavior has no way of knowing which record you want to update.
    The problem is that you're using $_SESSION['MM_Username'] to retrieve the user's details in the rseditmyprofile recordset, but there's no active session on the page.
    You need to add session_start() at the beginning of the update page. I suggest you add it here:
    <?php require_once('Connections/rescue.php'); ?>
    <?php
    session_start();
    if (!function_exists("GetSQLValueString")) {

Maybe you are looking for

  • Diff b/w occurs 0 and 1

    hi, what is the difference b/w occurs 0 and occurs 1? and what is the significance of begin of?

  • Some of my album art disappeared after downloading iOS 8?

    I checked my iTunes library after downloading the new update and I discovered that a ton of the album art on my songs are gone. When I went onto iTunes today to restore them, (I already know how to do that) it appeared that all of the art was fine. I

  • Data Model Design

    Hi Experts, In Current project I need to design data model and create data flow strategy for SD,MM,PP,FI modules from R/3.The client wants to use BOBJ on top of BI Info cubes/Reports.Based on KPI's given I need to do Data availability in R/3,Data ext

  • Trouble Saving Pictures From Email

    I am unable to save pictures that were sent as attachments.  Hen I tap on the picture, it gives me 3 options.  Open in Safari, Open in Chrome, Copy Image link.  I can save pics from the web.

  • Kernel patch upgrade for multiple instance

    Hi expert, I want to know will we follow the same process while upgrade the kernel patch only for Multiple ABAP STAK. We have system which has 3 instances....................so my question is exactly where we ned to put the kernel files (Generlly it