PHP error help needed

I've worked through the Adobe tutorial, "Developing a web
application with
Dreamweaver"
http://www.adobe.com/devnet/dreamweaver/articles/develop_web_application.html).
Everything works fine until I get to the final step of
testing the Record
Insert form be submitting data. When I click the Insert
record button
instead of going to the View page I get these errors for each
form field:
Warning: mysql_real_escape_string()
[function.mysql-real-escape-string]:
Access denied for user 'ODBC'@'localhost' (using password:
NO) in
F:\Webs\cafe_php\TMPh4f4n13a5b.php on line 8
Warning: mysql_real_escape_string()
[function.mysql-real-escape-string]: A
link to the server could not be established in
F:\Webs\cafe_php\TMPh4f4n13a5b.php on line 8
The warnings appear on the form page above the page itself.
When I connected the database to the site the test worked.
Here are the first 8 lines of code:
<?php require_once('Connections/connTownsend.php'); ?>
<?php
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);
Any suggestions?
Walt

First, thanks for helping.
2nd, sorry to be so thick, this is all still Greek to me, but
I have no idea
where to insert
with a die($rsInsert_query):
Here is all the PHP code above the DOCTYPE:
<?php require_once('Connections/connTownsend.php'); ?>
<?php
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;
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" .
htmlentities($_SERVER['QUERY_STRING']);
if ((isset($_POST["MM_insert"])) &&
($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO comments (FIRST_NAME,
LAST_NAME) VALUES
(%s, %s)",
GetSQLValueString($_POST['FIRST_NAME'], "text"),
GetSQLValueString($_POST['LAST_NAME'], "text"));
mysql_select_db($database_connTownsend, $connTownsend);
$Result1 = mysql_query($insertSQL, $connTownsend) or
die(mysql_error());
?>
Walt
"Murray *ACE*" <[email protected]> wrote
in message
news:[email protected]...
> Walt - this is a good puzzle.
>
> All of your observations suggest that you have adequate
permissions, yet,
> this error says you don't -
>
>> Warning: mysql_real_escape_string()
[function.mysql-real-escape-string]:
>> A link to the server could not be established in
>> F:\Webs\GoFreeFuel\TMP4r8sq1dpfl.php on line 8
>
> Let's take a look at your insert command - can you trap
the insert process
> with a die($rsInsert_query) command, right before the
actually execution?
>
> --
> Murray --- ICQ 71997575
> Adobe Community Expert
> (If you *MUST* email me, don't LAUGH when you do so!)
> ==================
>
http://www.dreamweavermx-templates.com
- Template Triage!
>
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
>
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
>
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
> ==================
>
>
> "Walt F. Schaefer" <[email protected]> wrote
in message
> news:[email protected]...
>> Murray,
>>
>> Here's an Update/Summary:
>>
>> 1. I have a MySQL database (localhost) I can see and
manipulate via
>> Navicat
>> 2. In my site (in DW) I created a connection to that
database. It tested
>> successfully.
>> 3. I created a recordset using that database. It
tested successfully.
>> 4. On a new page Insert > Application Objects
> Insert Record > Record
>> Insertion Form Wizard.
>> 5. Save page and preview locally in IE6.
>> 6. Input info in form and click Insert record.
>> 7. Record IS added to table but every field is Null.
>> 8. Errors for each form field:
>> Warning: mysql_real_escape_string()
[function.mysql-real-escape-string]:
>> Access denied for user 'ODBC'@'localhost' (using
password: NO) in
>> F:\Webs\GoFreeFuel\TMP4r8sq1dpfl.php on line 8
>>
>> Warning: mysql_real_escape_string()
[function.mysql-real-escape-string]:
>> A link to the server could not be established in
>> F:\Webs\GoFreeFuel\TMP4r8sq1dpfl.php on line 8
>>
>> As I can read from the database/table and the Insert
record form DOES ADD
>> a record it would seem I am connected to the db just
unable to add data.
>>
>> What have I done wrong?
>>
>> Thanks.
>> --
>>
>> Walt
>>
>>
>> "Murray *ACE*"
<[email protected]> wrote in message
>> news:[email protected]...
>>> OK - I think we will have to solve your database
connectivity issues
>>> first. What does your Connections file look
like?
>>>
>>> --
>>> Murray --- ICQ 71997575
>>> Adobe Community Expert
>>> (If you *MUST* email me, don't LAUGH when you do
so!)
>>> ==================
>>>
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
>>>
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
>>> ==================
>>>
>>>
>>> "Walt F. Schaefer" <[email protected]>
wrote in message
>>> news:[email protected]...
>>>>> LOL - you are interpreting my code MUCH
too literally. Change this -
>>>> It's only because I don't have a clue. Hence
the need to use this
>>>> beginner's tutorial.
>>>>
>>>> I replaced to code as instructed. No
improvement. Error messages:
>>>>
>>>> Warning: mysql_real_escape_string()
>>>> [function.mysql-real-escape-string]: Access
denied for user
>>>> 'ODBC'@'localhost' (using password: NO) in
>>>> F:\Webs\cafe_php\TMPgayzl14jqr.php on line 8
>>>>
>>>> Warning: mysql_real_escape_string()
>>>> [function.mysql-real-escape-string]: A link
to the server could not be
>>>> established in
F:\Webs\cafe_php\TMPgayzl14jqr.php on line 8
>>>>
>>>> Warning: mysql_real_escape_string()
>>>> [function.mysql-real-escape-string]: Access
denied for user
>>>> 'ODBC'@'localhost' (using password: NO) in
>>>> F:\Webs\cafe_php\TMPgayzl14jqr.php on line 8
>>>>
>>>> Warning: mysql_real_escape_string()
>>>> [function.mysql-real-escape-string]: A link
to the server could not be
>>>> established in
F:\Webs\cafe_php\TMPgayzl14jqr.php on line 8
>>>> INSERT INTO comments (FIRST_NAME, LAST_NAME)
VALUES (NULL, NULL)
>>>> --
>>>>
>>>> Walt
>>>>
>>>>
>>>> "Murray *ACE*"
<[email protected]> wrote in message
>>>> news:[email protected]...
>>>>> LOL - you are interpreting my code MUCH
too literally. Change this -
>>>>>
>>>>> $insertSQL = sprintf("INSERT INTO
comments (FIRST_NAME, LAST_NAME)
>>>>> VALUES
>>>>> (%s, %s)",
>>>>> GetSQLValueString($_POST['FIRST_NAME'],
"text"),
>>>>> GetSQLValueString($_POST['LAST_NAME'],
"text"));
>>>>> $insert_rsEmails = sprintf("INSERT INTO
tblcontactdata SET emailValue
>>>>> =
>>>>> %s", GetSQLValueString($filter_rsEmails,
"text"));
>>>>> die($insert_rsEmails);
>>>>> $rsEmails =
mysql_query($insert_rsEmails, $selectData) or
>>>>> die(mysql_error()); // insert this email
into the database
>>>>>
>>>>> mysql_select_db($database_connTownsend,
$connTownsend);
>>>>>
>>>>> to this -
>>>>>
>>>>> $insertSQL = sprintf("INSERT INTO
comments (FIRST_NAME, LAST_NAME)
>>>>> VALUES
>>>>> (%s, %s)",
>>>>> GetSQLValueString($_POST['FIRST_NAME'],
"text"),
>>>>> GetSQLValueString($_POST['LAST_NAME'],
"text"));
>>>>> die($insertSQL);
>>>>>
>>>>> mysql_select_db($database_connTownsend,
$connTownsend);
>>>>>
>>>>>
>>>>> --
>>>>> Murray --- ICQ 71997575
>>>>> Adobe Community Expert
>>>>> (If you *MUST* email me, don't LAUGH
when you do so!)
>>>>> ==================
>>>>>
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
>>>>>
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
>>>>> ==================
>>>>>
>>>>>
>>>>> "Walt F. Schaefer"
<[email protected]> wrote in message
>>>>>
news:[email protected]...
>>>>>> Murray,
>>>>>>
>>>>>> Here's all the PHP code that
precedes the DOCTYPE *after* inserting
>>>>>> the code you provided:
>>>>>>
>>>>>
>>>>
>>>>
>>>
>>
>>
>

Similar Messages

  • AE CS4 Error Help Needed!!

    Hey  I get 3 errors everytime Ii run AE.
    1- failed to create process default activation context
    2- Microsoft C++ Runtime Library Runtime Error!! Error Code R6034 - An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team fow more information.
    3- Microsoft C++ Runtime Library Runtime Error!! Error Code R6030 - CRT not initialized. 
    Please Need Help!!

    83 :: xx are all resource errors, many times related to fonts as listed on my site. The logical conclusion therefore is that you have changed something outside AE, that is added a rubbish font or updated an external component like Quicktime. Still, as the others said, it's miraculous AE runs/ ran at al lon your system and you were actually able to use it.
    Mylenium

  • Eclipse error | Help needed badly

    Hi,
    My Eclipse was working properly a couple of days back but suddenly It's stopped working and gives me an error : "workspace does not contain a main type,Do you have a public void run method"
    Now,I think the problem Is some how the jar's that I'm trying to upload aren't getting uploaded.
    I say this because a strange problem has arised and I think this might have to do with Eclipse giving the above error.
    This Is what I do to create a new java project
    -Open eclipse
    -save files to workspace
    -click on new > java project
    -Then,give the project a name and then click finish
    -after that I create a new class by right clicking on the project folder > new > class >give the class a name and then click finish.
    -after that I open workspace(thats on my desktop) click on the project folder make a new folder name It "lib" and upload the jar that I need for the project.
    -after this I go back Into eclipse and right click on the project folder and hit refresh,now I see the folder"lib" containing the jar Inside It.
    -I right click on the jar file and select "add to build path",and now theres the Issue comes In.
    I want the jar to Into the reference librarys,because the last time I got the jar In the reference library It worked.
    But this time I can't even manage to find where the reference library Is.
    so when I click on add to build path the jar Instead of appearing in the reference library (which Isn't there) just dissapears.
    I really need to fix this,because I cant test and write code until Its fixed.
    heres a snapshot of how my eclipse framework looks : [http://www.flickr.com/photos/38561743@N03/4122304046/sizes/o/]
    I tried to solve this on my own for hours and hours but It just Isn't working.
    please guys help,I need to solve this.
    Thanks,
    Edited by: Parastar on Nov 21, 2009 7:26 AM
    Edited by: Parastar on Nov 21, 2009 7:27 AM

    Parastar wrote:
    okay guys,I'v tried the eclipse forums for about 24 hours now.
    but no response,those guys are really really slow.
    please,some one here help me out.Quit begging. You've already been told this is not the place for this question. You're complaining about not getting an answer there, and begging people here to answer, as if that vindicates your decision to post here in the first place. But you haven't gotten your solution here either. Which is worse--no answer there, or a bunch of answers that don't help you here?

  • Adobe Illustrator CS4 [TAdd] Error HELP NEEDED!

    I recently restored my HP Workstation and began the process of installing Adobe CS4. Everything seemed to be going smoothly until I clicked both Adobe Illustrator and Adobe Acrobat.
    Adobe Illustraitor presents the [TAdd] Error while it is loading up the font menu during it's opening.
    I've been looking all over for answers and so far haven't found any. Please help!
    Thanks

    I'm not sure about the [TAdd] error, but if it's crashing while loading fonts, it's likely to be corrupt font caches.
    http://www.illustratorhints.com/2010/05/cleaning-your-font-cache/
    If that doesn't help, then you can always try deleting your illustrator preferences, as they get corrupt from time to time as well.
    http://www.illustratorhints.com/2010/05/delete-preferences-file/

  • ORA 12170 : Connection timeout error : Help needed

    Hi,
    The scenario is as follows: I have Oracle 11g R2 installed on a Windows Server 2008 (32-bit) server. The database SID is 'PGMS'. I am accessing (or want to access remotely) the Oracle database from the Visual Studio 2008 development environment (client environment) running on a Windows XP (SP3) platform. I have already installed the ODAC (Ver. 11.2.0.2.1) package for the Visual Studio environment.
    I have created a sample Windows Forms application that uses the Oracle data access components. The sample schema HR in the Oracle database has already been unlocked. This is the schema that I am using in the application.
    The issue that I am facing is that when I am adding the data connection in the Visual Studio environment; 'Test Connection' functionality returns the following error: ORA-12170 ... Connection timed out.
    I have checked the TNSNAMES.ORA file, and everything is as is mentioned in the Oracle documentation. It is as follows:
    PGMS=
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.161)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = PGMS)
    Kindly request the community to help me out in overcoming the error and in making the connection successfully. We have a System administrator but not a database administrator. The Oracle installation has been done by me.
    Thanks,
    Renj
    ----------

    Sunny, it's as follows:
    (1) SQLNET.ORA file contents are as follows:
    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    (2) LISTENER.ORA file content are as follows:
    # listener.ora Network Configuration File: C:\app\Administrator\product\11.2.0\dbhome_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\app\Administrator\product\11.2.0\dbhome_1)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:C:\app\Administrator\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.161)(PORT = 1521))
    ADR_BASE_LISTENER = C:\app\Administrator
    Edited by: Renjith2 on May 9, 2011 3:17 PM
    Edited by: Renjith2 on May 9, 2011 3:22 PM

  • PHP/MySQL Help Needed

    I'm a beginner with this PHP/MySQL language, but I'm using
    Dreamweaver CS3 to help things along. I've set up my database with
    my host (using PHPmyAdmin) and put in a table with some fields.
    Then I went into Dreamweaver and set up everything and it saw the
    database name perfectly. Then I made a recordset and it saw the
    fields just fine. I then made an input page to put the data into
    the database and that went off without a hitch. I then made a basic
    webpage with nothing but the call to display 2 of the fields in my
    database (I did the test in dreamweaver and it saw all the data I
    populated my database with perfectly). I then told it to preview in
    Firefox and got a blank page... Ok I must have done something
    wrong, so I put in some basic text just so I could see if even that
    would show up correctly. Then I previewed in Firefox again and not
    only did it show up, but the 2 fields showed up as well! Yea! So I
    made some changes to the fields I wanted to show and again did a
    Preview in Firefox. I was again treated to a blank page. Not even
    my basic text was showing up. I went back to Dreamweaver and added
    some more text... preview... works perfectly showing everything. I
    refresh the page and it's blank. I close Firefox and preview again.
    It's a blank page, but for the heck of it I decide to View Source
    and lo and behold all the data is there. I close the source and try
    reloading the page... blank. I'm at a loss. Any idea why this might
    be happening?

    jays99 wrote:
    > Thanks, David. I have your PHP5-Flash 8 book and egerly
    await your newest. I
    > installerd MySQL 5.027 for 10.4 intel which but it does
    not come up
    > automatically and there is no MySQL control on the
    Preferences. I read
    > somewhere that I have to open a file and change some
    lines of code in a config.
    > file. Do you have any insight to that? Thanks again, Jay
    Sorry, I haven't tested anything on an Intel Mac yet. Testing
    everything
    on Vista for my new Dreamweaver book has given me enough of a
    headache.
    However, I'm pretty sure that my editor has an Intel Mac, and
    he
    followed the instructions in "PHP Solutions" without any
    major hiccups.
    (They're pretty much the same as in the Flash book.)
    Isn't there a MySQL.prefPane icon in the MySQL installation
    package? I
    have found that MySQL won't start automatically on 10.4 (it
    did on
    10.3), but as long as you install the prefPane, you should be
    able to go
    in and start it manually.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Error: ORA-12560 TNS : Protocol Error help need urgently

    HI
    i m working on win 2k adv server
    i installed orcale 8i
    and then i started sql plus
    and entered us id and pass : scott / tiger
    and also tried :system / manager
    but i m having this error
    plz tellme how can i solve it
    Error: ORA-12560 TNS : Protocol Error
    plz do it soon
    Nurali
    03002199037

    You're attempting to go across SQL*Net. I'm a unix guy so I can't help very much except to point this out.
    On Unix I'd either undefine the TWO_TASK environmental variable. Probably a reg entry on 2k.
    Or configure Sql*Net.
    Ken

  • Hierarchy error-help needed

    Hi every1,
         I am still having problem seing my heirarchy in the query that i have created.1 of my info object sales revenue has the conversion routine.And next thing my heirarchy has data in it.for eg:i am doing example from fufu book.which has 3 regions east,west,midwest and each has offices assigned to them and each office has sales rerpresentative name attached to it.
    so,can anyone tell what wrong is happening.I see only free characteristics--custid,matid,calday..and then it says unassigned node..don't see my heirarchy..
    Thanks

    Hi Murali,
    Sorry for the delay!
    Based on the error message, I found this Microsoft KB article which is talking about the similar problem. It has also given some resolution in it. I think you could try it first.
    http://support.microsoft.com/kb/269495
    By the way, this forum is for Excel development questions. If you run into some problems when you manually manipulate the Excel workbook without code,
    Office IT Pro forum is a better place for you.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Log4j Error - Help needed

    Hi All,
    I am getting this following stack trace when i execute a test on an application on the remote server from the client. THe stack trace is as follows. It says error in the java.lang.NoClassDefFoundError: org/apache/log4j/Layout.... Thanks in advance...
    <24-May-2006 11:50:45 o'clock BST> <Info> <WebLogicServer> <BEA-000213> <Adding address: 10.38.86.71 to licensed client list>
    274.593: [GC 274.594: [DefNew: 15999K->448K(16448K), 0.1619128 secs] 95096K->79829K(148280K), 0.1620925 secs]
    [Pool] : Returning bean from the pool: 'null'
    [StatelessSessionPool] : allocate new: 'com.ba.cap.customer.enrolmentmanager.utilization.ULEnrolmentManagerBean_nnzhyo_Impl@48563c'
    Inside the ULEnrolmentManagerBean ********************* enrolBARegisteredCustomer
    com.ba.cap.framework.corebusiness.utilities.Profiling: capprofiling library loaded
    Inside the ULEnrolmentManagerBean --------------- 1
    <24-May-2006 11:50:50 o'clock BST> <Info> <EJB> <BEA-010051> <EJB Exception occurred during invocation from home: com.ba.cap.customer.enrolmentmanager.utilization.ULEnrolmentManagerBean_nnzhyo_HomeImpl@bb120d threw exception: java.lang.NoClassDefFoundError: org/apache/log4j/Layout
    java.lang.NoClassDefFoundError: org/apache/log4j/Layout
    at com.ba.cap.customer.enrolmentmanager.utilization.ULEnrolmentManagerBean.log(ULEnrolmentManagerBean.java:910)
    at com.ba.cap.customer.enrolmentmanager.utilization.ULEnrolmentManagerBean.enrolBARegisteredCustomer(ULEnrolmentManagerBean.java:187)
    at com.ba.cap.customer.enrolmentmanager.utilization.ULEnrolmentManagerBean_nnzhyo_EOImpl.enrolBARegisteredCustomer(ULEnrolmentManagerBean_nnzhyo_EOImpl.java:424)
    at com.ba.cap.customer.enrolmentmanager.utilization.ULEnrolmentManagerBean_nnzhyo_EOImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:492)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:435)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:430)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:35)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    >
    [StatelessSessionPool] : Destroying a bean in: 'weblogic.ejb20.pool.StatelessSessionPool@1924ee5 - ejb name: 'com.ba.cap.customer.enrolmentmanager.utilization.ULEnrolmentManagerHome''

    Hi Murali,
    Sorry for the delay!
    Based on the error message, I found this Microsoft KB article which is talking about the similar problem. It has also given some resolution in it. I think you could try it first.
    http://support.microsoft.com/kb/269495
    By the way, this forum is for Excel development questions. If you run into some problems when you manually manipulate the Excel workbook without code,
    Office IT Pro forum is a better place for you.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Facebook Error - Help Needed

    From the facebook app, version 2.1.0.36, when I access events to see events/birthday I get an error "an error has occured".
    I have deleted an reinstalled no change, there is no issue with web version of facebook. I also done a full wipe of my PB, the previous version does not have this issue, once I update to 2.1.0.36 the error no longer shows up at the first attempt to view after leaving the events area and go back error is back.
    Anyone know what is going on?

    Hi Murali,
    Sorry for the delay!
    Based on the error message, I found this Microsoft KB article which is talking about the similar problem. It has also given some resolution in it. I think you could try it first.
    http://support.microsoft.com/kb/269495
    By the way, this forum is for Excel development questions. If you run into some problems when you manually manipulate the Excel workbook without code,
    Office IT Pro forum is a better place for you.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Multiplexing error  help needed

    HI,
    I see that I am not alone with this error. I have burned many 1.5 movies with no problems but was stumped this weekend.
    Is there a workaround that can solve the problem? I get the error when I get to the burn stage. I have ilife05 and am worried that this is the problem. Has apple,(or anyone) figured out how to use this program successfully?
    Help, I have another large project pending and would really like to use the ilife program.
    Thanks,
    Jeni

    I've recently had this problem when trying to make a disk image. Make sure you have at least twice the hard drive space as the project takes. I discovered that even though I was trying to create a disk image on an external hard drive with a decent amount of space, my IDVD Project was still on my computer hard drive which did not have twice the capacity of the Project. I copied the IDVD Project to the external hard drive and then was able to make the disk image and to burn a DVD.
    Hope this helps some.
    spb001

  • OGG error, help needed

    Hi I am trying to check the conflict resolution on my active-active bi-directional OGG, when i am trying to set the parameters in replicat file i am getting this error:
    2011-08-17 18:09:59 GGS ERROR 182 OCI Error describe for query lookup (bad syntax) (status = 911-ORA-00911: invalid character), SQL<select count(*) conflict from TEST where t_id = ? and t_timestamp > ?>.
    My replicate file for that table:
    MAP TEST_MODEL.TEST, TARGET TEST_MODEL.TEST, &
    REPERROR (21000, DISCARD), &
    SQLEXEC (ID lookup, ON UPDATE, &
    QUERY "select count(*) conflict from TEST where t_id = ? and &
    t_timestamp > ?", &
    PARAMS (p1 = t_id, p2 = t_timestamp), BEFOREFILTER, ERROR REPORT, &
    TRACE ALL),&
    FILTER (lookup.conflict = 0, ON UPDATE, RAISEERROR 21000);
    MAP TEST_MODEL.TEST #exception_handler()
    Gurus can anybody tell me what could be the error? I have used it according to the documentation;
    Oracle admin guide, Page 97
    Thanks in advance

    Yes it is working fine steven, thanks
    But my question is, if you remember or not, i want to use same strategy for conflict resolution in active-active bi-directional OGG setup which are on two different time zone
    Datacenter(DC) 1 on PST & DC2 on EST, is there any ways i can change this query to match the records? i mean
    DC1(PST) ----> "using this in replicat parameter from target to source, i mean data coming from EST to PST"
    MAP resolved (entry ISAAC_MODEL_BEA2.ECODBPARAM):
    MAP ISAAC_MODEL_BEA2.ECODBPARAM, TARGET ISAAC_MODEL_BEA2.ECODBPARAM, REPERROR (21000, DISCARD), SQLEXEC (ID lookup, ON UPDA
    TE, QUERY "select count(*) conflict from ISAAC_MODEL_BEA2.ECODBPARAM where id = :p1 and lastmodifieddate-180/1440 > :p2", PAR
    AMS (p1 = id, p2 = lastmodifieddate), BEFOREFILTER, ERROR REPORT, TRACE ALL),FILTER (lookup.conflict = 0, ON UPDATE, RAISEERR
    OR 21000)
    DC2(EST) ----> "using this in replicat parameter from source to target, i mean data coming from PST to EST"
    MAP resolved (entry ISAAC_MODEL_BEA2.ECODBPARAM):
    MAP ISAAC_MODEL_BEA2.ECODBPARAM, TARGET ISAAC_MODEL_BEA2.ECODBPARAM, REPERROR (21000, DISCARD), SQLEXEC (ID lookup, ON UPDA
    TE, QUERY "select count(*) conflict from ISAAC_MODEL_BEA2.ECODBPARAM where id = :p1 and lastmodifieddate+180/1440 > :p2", PAR
    AMS (p1 = id, p2 = lastmodifieddate), BEFOREFILTER, ERROR REPORT, TRACE ALL),FILTER (lookup.conflict = 0, ON UPDATE, RAISEERR
    OR 21000);
    by adding 3hr's to the comparision function and do the conflict resolve?
    Please do comment on this. Thanks a lot for your help.

  • ParseDTDBuffer error-Help Needed urgently.

    Hi all,
    I wanted to parse a one line dtd and so i used the xmlparser.parseDTDBuffer() function.In this usage i got a strange error.The program reported no error at compile time but an error was reported at run time and error was stating the non-availability of the method.But when i used a 'desc sys.xmlparser' method i found the function with the same syntax.Please help me with the reason for this error.I enclose the error message and usage statement of the function:-(creatememoryclob is my function and root is also a varchar element.
    dtd varchar2(100);-- declaration
    dtd:='<!ELEMENT family (member*)>';-initialization
    sys.xmlparser.parseDTDBuffer(p,dtd,root);-usage
    error:-
    ERROR at line 1:
    ORA-29531: no method parseDTDBuffer in class
    oracle/xml/parser/plsql/XMLParserCover
    ORA-06512: at "SYS.XMLPARSERCOVER", line 0
    ORA-06512: at "SYS.XMLPARSER", line 115
    ORA-06512: at "IWADM.CREATEDOCMEMORYCLOB", line 14
    ORA-06512: at line 10
    Any help will be really helpful
    regards
    Gopal

    What are the DB version and XDK version?

  • Pc sute error help needed

    Dear friends,
    I am using windowsxp(windows Vistacapable) WITH Windows XP Service Pack 2 (SP2).AND ie 7
    And I have installed nokia PC Sute 6.86.9.0 from http://www.nokia.com/pcsute,
    And when I check the support information I hve the above pcsute with nokiaconectivity cable driver-version-6.86.11.0,
    And I tryed to connect my nk6270 to my pc..,
    But now when I am trying to connect my phone
    I am seeing a bar with heading “ nokia pcsute- get connected”
    And in that it is written that “ cannot use the connection type,
    Check that all the needed hardware, software and drivers are available,”
    Then I had uninstalled the cable driver and my pcsute,
    Then I had restarted my pc and againI installed the pc sute 6.86.9.0,
    But still it is showing the above reason.. this I a real headache for me ..
    and also i am not femilier with wireless connectons so please help..
    Can anybody give a remedy for my problem please..
    If your helping me I will be great full to you..
    With prayers,
    Jai..
    k.s.a.

    Are you using a cable, bluetooth to connect?
    Running Windows XP SP3
    Nokia PC Suite version 6 86.9.0
    Connecting via bluetooth to Nokia N70, 6230
    Dear sulasno,
    I am not having any cable to connect and also I am holding nokia6270 i am not too experienced with computers it is my official pc,i had updated to sp3 but its shows that still it have sp2,i am working in a rig in desert so it is not possible to bye a cable..
    so plese guide me..
    with prayers ,\
    jai..

  • Invalid Extension error help needed...

    Forgive me, but I'm no where close to being cisco savvy in anyway, but I need some help.  I'm the only IT guy for a company of roughly 100 employees.  I have been given the responsibility of administrating the phone and voicemail system.  Needless to say, I'm sort of learning as I go.  Anyway, when people dial into our 800 number they first choose 1 or 2 for english or spanish.  After that selection they can press 1 to enter an extension.  Some extensions however are coming up with a message saying you have dialed an invalid extension and then they are forwarded to the operator.  I know those extensions exist, so I'm guessing I'm missing some rather obvious setting.  We have Cisco Unity 4.0 Build 4.0(4).  I'm not sure if any other info is needed but I'd be glad to provide it.  Thanks in advance.

    Cool.  I can work with that.  Do me a favor first.  Go here: http://www.ciscounitytools.com/Applications/CxN/PortStatusMonitorCUC7x/Help/Connection%20Remote%20Port%20Status%20Monitor.html
    Read up on this tool and read the Help file as well.  You can use it to call into Unity and when your call hits a port - you'll see it and be able to "watch" what Unity is doing as you progress thru the call.  It may not lead to exactly what's going on but 1) it can be educational and 2) it can help verify what Unity is seeing and doing compared to what you think should occcur.
    Hailey
    Please rate helpful posts!

Maybe you are looking for

  • Get cell value from Woodstock table

    Hello, I am using a Woodstock Basic Table from the NB palette. One of the columns is editable and I need to get the updated values upon a button click event. How do I get the value of a specific cell from the table? Thanks

  • Itunes crashed

    I connected my ist gen 2 gig nano last night and experienced some problems, ie it crashed 3 times. i connected it tonight after numerous restores, and itunes disappeared. this was after my computer failed to recognise my nano tonight. i restored it,

  • From AVI to FLV for Flash MX Professional 2004

    Hi there... Let me thank you for your attention... This is my issue, I had this Flash MX 2004 Professional when I bought my PC, since then , 6 years ago, I learned how to use it, and recently got a little proyect which turned out to be something very

  • Can't update iphone 4

    Dear all, please help- i can't update iphone 4 for last several months- it says that connection is timed out while it's ok with internet connection. it happens on all pcs and in any country. HELP!!

  • Compressing to 16:9 MPEG

    Hi, I'm having real trouble here. I'm exporting a 16:9 (Anamorphic) video from FCP through compressor but it keeps ending up as a 4:3 video. I've tried various changes on the cropping etc to 16:9 but no joy. It needs to be a just a small sized vid fo