Errors when trying to INSERT Dreamweaver CS3 ASP scripts into MySql

Greetings everyone,
I am hoping that someone can shed some light on an issue I have not been able to solve in the last few days. I have a website that I had built using Ultradev, then MX then CS3, using the default ASP scripts in dreamweaver and an odbc connection to an Access Database. Everything had been working fine for the last couple of years until recently where more people were visiting my site which resulted in the slowness because i was using access. I decided to move to a MySql database and that is when I ran into issues. I was able to solve most everything accept for one issue I am having. I was hoping it would be an easy transition by changing the ODBC connections but it has not been that easy. Any page I have with an INSERT command using the default Dreamweaver CS3 ASP script results in an error. Now I can query and delete and search with no problem...it is just the INSERT that is giving me issues. Here is just a general insertion script that CS3 does by default....
<%
If (CStr(Request("MM_insert")) = "form1")Then
If (Not MM_abortEdit) Then
' execute the insert
Dim MM_editCmd
Set MM_editCmd = Server.CreateObject ("ADODB.Command")
MM_editCmd.ActiveConnection = MM_adsdata_STRING
MM_editCmd.CommandText = "INSERT INTO commenthot (yeshot, userhot) VALUES (?, ?)"
MM_editCmd.Prepared = true
MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param1", 202, 2, 3, Request.Form("yeshotf")) ' adVarWChar
MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param2", 202, 3, 30, Request.Form("useridf")) ' adVarWChar
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
End If
End If
%>
When I click to submit...the error i run into is...
Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
[MySQL][ODBC 3.51 Driver][mysqld-5.0.67-community-nt-log]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' mel)' at line 1
/fr/members/sexyoupasvote.asp, line 28
....Line 28 is the MM_editCmd.Execute. I notice if I put a single quotes around the ? next the the VALUE like this ('?', '?')...it does go through and the ? shows up in both fields as the data.
....If i put a single back quote around the column names like this (`yeshot`, `userhot`) VALUES (?, ?) I get this error and nothing gets inserted into the MySql.
Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
[MySQL][ODBC 3.51 Driver][mysqld-5.0.67-community-nt-log]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' mel)' at line 1
/fr/members/sexyoupasvote.asp, line 28
...by seeing 'mel)' show up, I know it is at least passing the data to that field.
....when I do (`yeshot`, `userhot`) VALUES ('?', '?')...
it goes through and inserts ? ...instead of the real data I want to use...in this case ...the number 1 and Mel.
...if I do (yeshot, userhot) VALUES (?, '?')...
I get this error...
Microsoft OLE DB Provider for ODBC Drivers error '80040e21'
Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.
/fr/members/sexyoupasvote.asp, line 28
....any idea what to modify to make it insert the corect data? Has anyone experienced this? If I can get this fixed with just this page I can probablly fix the other pages that have teh same issue.  Is there a special setting on the MySql that I should know about to allow data to be inserted? Any help would GREATLY appreciated!
Thank you!

Thanks for your reply!
When it was in Access...the datatype was Text. I used a 3rd party software to convert Assess directly to my hosting MySql server. When I logged in to see the table in MySql, it is set to Varchar(3) for yeshot and Varchar(30) for userhot. There is also an extra field I used for the KEY called commentID which is set to int(11) and it is autonumbered. Under the Collation i have utf8_general_ci set on the yeshot and userhot field. Null is No on both and the Default is set to None and all 3 fields.
I have a form I am collecting that data from which is:
<% If (langname.Fields.Item("langname").Value)="FR" Then
         response.write("OUI!")
         else
         response.write("YES!")
         End if %>
<input name="yeshotf" type="radio" id="yeshotf" value="1" checked>                           
                            <span class="style10">
                            <input name="submit" type="submit" id="submit" value="VOTE!">
                            </span> -
<input name="yeshotf" type="radio" id="yeshotf" value="2">
                            <% If (langname.Fields.Item("langname").Value)="FR" Then
         response.write("NON!")
         else
         response.write("NO!")
         End if %>
                            <input name="useridf" type="hidden" id="useridf" value="<%=(hotornot.Fields.Item("membername").Value)%>">
                            <input type="hidden" name="MM_insert" value="form1">
                          <input type="hidden" name="hdwfail" id="hdwfail" value="sexyoupasvote.asp?langname=<%=(langname.Fields.Item("langname").Value)%>&membernam e=<%=(hotornot.Fields.Item("membername").Value)%>&hdwmsg=invalid">
</form>
....the form has 2 radio button and 1 hidden field where I collect the username. The radio value should either be a 1 or a 2 depending on the selection by the user. I also have a captha on the form but that does not seem the cause any problem since I am not collecting any data from it. Does this help? I left the yeshot field as Text but I can change that to Numeric data... again thanks for your assistance in helping me try to figure this out.
...The message I am getting now is:
Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
[MySQL][ODBC 3.51 Driver][mysqld-5.0.67-community-nt-log]Unknown column 'Babe1' in 'field list'
/fr/members/sexyoupasvote.asp, line 28
....with this setting:
<%
If (CStr(Request("MM_insert")) = "form1") Then
  If (Not MM_abortEdit) Then
    ' execute the insert
    Dim MM_editCmd
    Set MM_editCmd = Server.CreateObject ("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_adsdata_STRING
    MM_editCmd.CommandText = "INSERT INTO dsnrenms.commenthot (yeshot, userhot) VALUES (?, ?)"
    MM_editCmd.Prepared = true
    MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param1", 202, 1, 3, Request.Form("yeshotf")) ' adVarWChar
    MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param2", 202, 1, 30, Request.Form("useridf")) ' adVarWChar
    MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close
  End If
End If
%>

Similar Messages

  • Changed battery in laptop and now when trying to open dreamweaver cs3, I get "licensing for this product has stopped working"... contact customer support (thats a laugh).  So what now?

    Changed battery in laptop and now when trying to open dreamweaver cs3, I get "licensing for this product has stopped working"... contact customer support (thats a laugh).  So what now?
    it says:  You cannot use this product at this time.  You must repair the problem by uninstalling and then reinstalling this product or contacting your IT admin or Adobe customer support for help.
    Well it seems I am only able to install this on a maximum of 3 computers so if I uninstall and reinstall I may have used up all three.  What caused this in the first place?

    And most licenses extend to 2 machines; not 3.  Your computer's clock probably reset when you changed batteries. Is your computer's clock set to the correct date and time now?
    See Activation & Deactivation Help
    Nancy O.

  • XSQL error when trying to insert record

    hi,
    I encounter a problem using INSERT statement in xsql:query action. If I try to use INSERT statement in my xsql page like this:
    <xsql:ze_action bean="TaskentryIn">
    <xsql:query>
    INSERT
    Grundtab( Datum,Startzeit,Endzeit)
    VALUES
    ('{@date}',{'@begin}','{@ende}')
    </xsql:query>
    </xsql:ze_action>
    I always get this xsql-error:
    Statement.executeQuery - No result sets were produced by 'INSERT...'
    So far so good, I think this shouldn't be an error rather a warning.
    But this is not my primary problem.
    Anyway the record is inserted in the DB. But since I call the above <xsql:query>, from within my own action handler, I call a sendRedirect() to my next page after the <xsql:query> tag was processed.
    After sendRedirect(), when I am on my next page, I check the DB for the inserted records, and it shows up that the insert was made two times, so I have two identically records in my DB.
    If I am not sendRedirect() to the next xsql page, then the insert is only made once. So I assume that there is a problem if an xsql-error occurs and afterwards a sendRedirect().
    I am using the same way to make my SELECT statements and I dont have any trouble with them. Only when I use INSERT.
    Any adive or help is appreciated.
    Peter

    <xsql:query> is only for queries.
    Use <xsql:dml> for a DML statement.

  • Error when trying to use Flash CS3...

    I just downloaded the Flash CS3 free trial from the Adobe
    website. I installed everything and it installed fine.
    After the install I try to open the program and an error
    saying "License for this product has stopped working." Now I did a
    search on the Adobe support site and found the page with supposed
    fixes for this problem, but none of them work. I am using Windows
    Vista Home Premium. When I go to the Administrator Controls panel
    and go to Services I don't even see FLEXNet on the list.
    I have tried uninstalling and reinstalling it multiple times
    but the same thing happens every time.
    Any advice?

    How are you trying to update? and What exactly are you doing before you get this error?
    If you downloaded the updater, it could be corrupt, so you should try downloading again.

  • ORA-00604 error when trying to insert into a XMLTYPE stored as BINARY

    Hi. Here's the scenario.
    Here's my Oracle version:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    The database is encoded as AL32UTF8.
    First I create the table...
    create table binary_table (the_field XMLTYPE) XMLTYPE COLUMN the_field STORE AS BINARY XML;
    Now I try and do an insert like this...
    insert into binary_table values (xmltype('<?xml version="1.0" encoding="AL32UTF8"?>' || chr(10) || '&lt;a&gt;b&lt;/a&gt;' || chr(10)));
    and I get this error:
    SQLState: 60000
    ErrorCode: 604
    Position: 122
    Error: ORA-00604: error occurred at recursive SQL level 1
    ORA-00942: table or view does not exist
    If I create the table with a CLOB storage option for the XMLTYPE, the insert works fine. If I repeat these steps in another database instance, same Oracle version, that's encoded as WE8ISO8859P1, it also works fine. It behaves the same in several clients. I also tried it with several different values for NLS_LANG and that didn't help.
    I do want to say that this database instance has just been set up especially for me so I can do some R&D on AL32UTF8 and XMLTYPE to see if it fits our needs. So it might be a problem with the database instance.
    Thanks for taking a look at this.
    Ralph
    Edited by: stryder100 on Jul 24, 2009 12:11 PM

    Hi,
    Use this
    Load data
    append Into TABLE HS_HRMIG_EMP_PER_20MAR07 fields terminated by "," optionally enclosed by '"'
    TRAILING NULLCOLS.
    Here optional enclosed by is for doubles quotes which should needs to place in single quotes.
    like '"'.
    try with this.
    --Basava.S                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Undocumented ODBC Error when trying an insert on ORACLE 8 from ACCESS97

    Hi
    I have a application with ACCESS 97 dealing with Oracle 8.1.7
    The ODBC Driver version is 8.01.06
    The connecting chain is : ODBC;DRIVER={Oracle ODBC Driver};DBQ=DP3_IST;" & _
    "DBA=W;APA=T;FEN=T;QTO=T;FRC=10;FDL=10;LOB=T;RST=T;FRL=F;MTS=T;CSR=F;PFC=10;TLO=0;
    I have no problems for reading with select but when i try to execute an insert,
    i get the following error message: " reserved error (-7778); there is no message for this error "
    It work's when using the "Microsoft ODBC for Oracle 2.573.3711.00" and unfortunatly i'm not allowed to use it.
    Does anyone know what was the problem?
    Regards
    Pierre-Yves LAGRAVERE

    The two lines you quote aren't errors, they're warnings and they're pretty standard fare. If there isn't anything else in the ODBC log, then the driver isn't returning any errors. I'm not sure why Access is failing, so let's look at the client configuration first.
    - I assume you've successfully installed the 8.1.6 client on the machine with Access. Were there any errors during the install?
    - You say you're using the 8.1.6 version of the Oracle ODBC driver-- can you look to see what the last digit of the version is? If possible, I'd start by downloading the most recent 8.1.6.x ODBC driver from OTN.
    - Check which version of the MDAC you have installed (new versions & a version checker are available from Microsoft at <http://www.microsoft.com/data>.
    - The ODBC driver you download above will list which versions of the MDAC it is expected to work with. Make sure your version is one of the listed versions.
    Justin

  • Twainbridge error when trying to install trial CS3 Photoshop

    Hi,
    I downloaded the CS3 Photoshop from Adobe and I try to install it and I get this error message that installation can't continue because the Twainbridge must be closed. How do I fix this? Also where it the Twainbridge?
    Thanks,
    S.

    Niel,
    Thanks, it worked great. The thing is what is the TwainBridge and why was it running? Is it alright I don't have it running? I looked on Yahoo and it says it has something to do with video (the Twainbridge).
    S.

  • How do I fixed this error when trying to install dreamweaver CS5 - 7/30/2011 20:30:14 [ERROR] DWANat

    [Error] DWANative - Faced
    Error in Deployment engine: Block: Abode Bridge cS5
    (Bridge.exe)
    <error><error>code 19

    Windows 7 Professional - I have been trying to get the try version operating
    before I purchase it. However, it comes up with this error all the time.
    Graeme Glossop

  • Error when trying to convert 7.1 build script to 2011 lvproj

    I have inherited a LabVIEW 7.1 project that must be upgraded to a more recent version of LabVIEW.  I have chose 2011.
    I am trying to use the recommended method of "Tools->Convert Build Scrip..." but it is not working.  I'm getting a message along the lines of
    The build was unsuccessful
    Possible reasons
    Invoke Node in AB_Convert_Add_Source.vi-
    AB_Convert_Build_Script.vi -
    BuildMonitor_ImportBuildScript.vi -
    BuildMonitor_Global_OnCommand.vi-
    BuildMonitor_Global_OnCommand.vi.ProxyCaller-
    Any knowledge out there?

    You're welcome! Glad I could help out.
    Would it be possible for you to post the project here so that I can create a report of this particular error and submit it to R&D's database? If the project is too large/proprietary, I understand, but if we can reproduce this error at NI, then we can work on eliminating this bug from future Labview releases. 
    Best,
    Dan N
    Applications Engineer
    National Instruments 

  • "The importer reported a generic error" when trying to import an After Effects file into Premiere.

    Currently quite new to using both pieces of software - I'm trying to grab a file, either a save or an export, from After effects into Premiere. I've googled around, but I can't find anyone with a similar problem with it being an AE file.
    Just looking for some advice on what to do.

    Okay so I've searched around most of this forum and as much of Google as I could find - I have found similar problems, but nothing exactly the same; and none of the solutions I've found have worked for me. I've seen a lot of people having trouble connecting to the DL server on the file-selection window, but I don't even get that far - an error message just pops up in the middle of my screen - and my error doesn't mention a server, just that it can't connect to AE DL.
    I changed firewall software (which I've wanted to do for months, anyway) and still to no avail.
    As for the "The importer reported a generic error" problem also, I can't find any problems or solutions with After Effects files not being able to be imported.

  • IChat Internal Error when trying to change own Buddy Icon

    On my son's iBook G4 with OS 10.4.5 and iChat AV 3.1.1, he gets an error when trying to insert some JPG photos for his own Buddy Icon. It says:
    iChat Internal error! NSInvalidargumentexception: * -[NSCFArray addObject:] attempt to insert nil
    Also where are all your recent pictures stored??? Upon searching iChat Recent Pictures on my HD, it see they should be User>Library>Images>iChat Recent Pictures. However upon tyring to open that fiel, I get a message saying, "The alias 'ichat Recent Pictures' could not be opened, because the original item cannot be found." I can select delete alias, fix alias or ok. Might this also relate to my problem?

    Hi Michael,
    I pointed you to that thread as the error message you posted is normally associated with either a spellcheck problem or something odd with the Me Card in the Address Book.
    You can drag pics to the Recent Buddies folder but iChat will not see them.
    Create a New Folder and call it iChat Recent Pictures
    The alias should be removed.
    You should now find that iChat will let you select a choice as a new Buddy Pic.
    This is done by clicking on the current Buddy pica nad selecting the "Edit Picture" option.
    Then "Choose".
    Navigate to the Pic and then resize as require.
    Use the "Set" button.
    This will convert the pic to a jpeg 2000 copy of the original and the Recents.plist which is needed within the folder.
    You should now be good to go.
    2:03 PM Friday; February 24, 2006

  • I am trying to reinstall Dreamweaver CS3 from the CD after having computer issues.  Now getting error "You can only install one Adobe product at a time.  Please complete the other installation before attempting to install ......."  There is no other Adobe

    I am trying to reinstall Dreamweaver CS3 from the CD after having computer issues.  Now getting error "You can only install one Adobe product at a time.  Please complete the other installation before attempting to install ......."  There is no other Adobe product installing.  I have used the Adobe Cleaner Tool many times and uninstalled other Adobe Products but neither has worked.  I have uninstalled/reinstalled this CD version of Dreamweaver several times when changing computers and after having computer issues. A google search of the problem suggested it may be an error related to the number of times I can reinstall this product due to licensing issues.  Please help.

    A google search of the problem suggested it may be an error related to the number of times I can reinstall this product due to licensing issues.
    Absolutely not. You are misinterpreting things. The activation check never happens when just running the installer, only much later. It means what it says - there is another "install" pending/ active on your system, meaning somewhere there is an (invisible) process still blocking things. Either way, since you haven't provided any real technical info, we can't advise specifically. if you are on Windows, you may want to check your task manager and terminate any setup.exe and msiexec.exe processes plus potentially may need to manually fix/ delete some registry keys. For anything beyond that you will have to be much more specific.
    Mylenium

  • Fatal Internal Error: "image.cpp", line 13192 when trying to insert a cursor to graph

    NOTE:  This IS a duplicate post from the Breakpoint.  Text slightly changed.  The post in Breakpoint can be deleted.  All comments should be placed in this thread.
    I resolved the "Fatal Internal Error: "image.cpp", line 13192 when trying to insert a cursor to graph", but would like to share to find out if others have seen this and to determine whether this is a bug, or if it's time to redo my PC, or buy a new one..  
    I have an existing graphs (qt 6) which originally had 2 cursors.  This occurred while trying to add the third cursor. 
    Up until attempting to add the last cursor, the program worked great, and I had been running tests for a while.  However, I do recall seeing this problem when creating the original cursors, but not to this extent.  Plus I don't remember the original error message from that time.
    I needed to add one more cursor to the existing graphs.  As soon as I add a new cursor and set it's properties, I get a nasty error message and without warning LV8.2 simply closes itself (well, the only warning was the error message.  Tried it 3 times, same result.
    Here are the steps:
    Shut down the PC, went for a coffee, rebooted the PC.  Opened the LV project, opened the VI.  Immediately went to the graph properties to add the new cursor by doing the following steps: 
    Right click graph indicator icon on block diagram.
    Select Properties.
    Click on cursor tab.
    Click on Add
    Select Cursor 2 (3rd one, newly created)
    Change color
    Select cursor as a line
    Remove checkmark for "show cursor"
    Click OK
    I need to do this to 3 other graphs, same steps.  And as soon as I get to the step before clicking OK, I get the error message. 
    I managed to get an additional one done, by immediately saving after each step (yep going in & out of the properties).  But I've had this problem before when creating the first two cursors.
    Is it a bug?  Anyone else seen this?  Using LV8.2.  And the message is right about LOOSING ALL unsaved work!!!! 
    Here are more observations:
    Tried creating a new one on the second graph.  As soon as I clicked on the color, it crashed!
    See the error explanation below.  It is really clear, now anyone can solve it    LOL!!...  According to the error log, there's a bad image out there  
    .\manager\image.cpp(13192) : DAbort: bad image in ValidateImage
    $Id: //labview/branches/Europa/dev/source/manager/image.cpp#47 $
    0x007A81E8 - LabVIEW <unknown> + 0
    0x007A7BDB - LabVIEW <unknown> + 0
    0x00829D74 - LabVIEW <unknown> + 0
    0x008546CD - LabVIEW <unknown> + 0
    0x00C054E6 - LabVIEW <unknown> + 0
    0x0081B9C8 - LabVIEW <unknown> + 0
    0x0081EB9A - LabVIEW <unknown> + 0
    0x0084D9D4 - LabVIEW <unknown> + 0
    0x00854663 - LabVIEW <unknown> + 0
    0x00C054E6 - LabVIEW <unknown> + 0
    0x0085F7A1 - LabVIEW <unknown> + 0
    0x00BBACDD - LabVIEW <unknown> + 0
    0x00C06A2F - LabVIEW <unknown> + 0
    0x0085AA46 - LabVIEW <unknown> + 0
    0x00C06A2F - LabVIEW <unknown> + 0
    I observed the title bar after making changes to the properties.  I noticed that 3 out of 4 times, while changing the properties of the graphs to include the cursor, and saving after each & every step, that there were no stars appearing on the title bar to indicate "unsaved changes".  Saving was also much slower than usual.  I suspect, the program never got to placing the star before saving occurred.  However, I am noting everything.
    After creating the cursors, saving was and is normal, and the program runs well..   I have run tests without problems.
    Does anyone have a clue at what causes this?   Has anyone seen this before?
    Thanks,
    RayR

    Hi Donovan,
    I can't remember seeing this elsewhere.  When I get a chance, I'll create a new (blank) vi with new graphs and will repeat the steps. 
    I will let you know if I see this in the new vi.
    Thanks!
    RayR

  • "The selected cells are read-only" error on Custom Field when trying to insert in Datasheet mode

    I have a custom field that works completely fine. Yesterday our QA team found out that when trying to insert in Datasheet format, the error "The selected cells are read-only" was thrown. Any ideas? I tried passing the following property to my fldtypes_field.xml file:
        <Field Name="ReadOnly">FALSE</Field>
    No luck.Victor Palma

    Unfortunately it did not work. I also developed the code and access the field and checked its property called "ReadOnlyField"  which is already set to false.
    Below is the xml that i am using. Can you please share the xml that you had used?
    <?xml version="1.0" encoding="utf-8"?>
    <FieldTypes>
      <FieldType>
        <Field Name="TypeName">MyCustomField</Field>
        <Field Name="ParentType">Text</Field>
        <Field Name="TypeDisplayName"> My Custom Field</Field>
        <Field Name="TypeShortDescription"> My Custom Field</Field>
        <Field Name="AllowBaseTypeRendering">True</Field>
        <Field Name="ReadOnlyField">False</Field>
        <Field Name="UserCreatable">TRUE</Field>
        <Field Name="ShowInListCreate">TRUE</Field>
        <Field Name="ShowInSurveyCreate">TRUE</Field>
        <Field Name="ShowInDocumentLibraryCreate">TRUE</Field>
        <Field Name="ShowInColumnTemplateCreate">TRUE</Field>
        <Field Name="FieldTypeClass">My Assembly Information goes here</Field>
      </FieldType>
    </FieldTypes>

  • I am trying to install Dreamweaver CS3 on Windows 8 it says "The Installer Database is corrupt"

    I am trying to install Dreamweaver CS3 on my new Windows 8 PC and when I run SETUP.EXE it says "The Installer Database is corrupt" on both my original CD and backup I made.

    The error is here:
    Dreamweaver CS3 on my new Windows 8 PC
    This will most likely never work. CS3 wasn't even fit for Win 7. Delete the caps.db in the respective caps folder (info here) and then take the usual steps of running as admin, turning off UAC and security tools and possibly using compatibility modes, but as I said, be prepared that this may be futile and you spend a Sunday afternoon without achieving anything...
    Mylenium

Maybe you are looking for

  • Update on the iPod Touch

    I have a problem updating my iPod to the new 2.1 version.. I click the buy now button as a quick link and it tells me to enter my password for something so I do, but then it tells me to enter my password for my billing information, then it brings thi

  • When syncing iPhone to iMac, how do I make iMac the boss?

    I sync my iPhone to my iMac via the dock/usb cable. I have a question specifically regarding the syncing of Podcasts. I manange my Podcast inventory in iTunes on my iMac. Once I get everyting the way I want it, I sync my iPhone to my iMac. The proble

  • How to edit the question that I have asked here

    hello I have asked a question in this webstart forum , that has a sensitive information so I got to chage it immediately ... I didn't knew it before I ask, that these questions are visible in google, because now my manager found that question in goog

  • Seting up in schools

    need to know what sort of tech challanges lay ahead to push data out security, set up syncing, itunes accounts for school, sync staion for setting up 30 at a time, other sofware we might need

  • Downloaded widget from apple site,but could not install it

    This morning I downloaded a widget "BBC,WDGT" from Apple website, but it could not be installed.