Urgent help needed please, with parse error message

Hi. I've got a page which comes at the end of a 3 page sequence - search, results, detail. The detail page had been working fine, but yesterday I added a second recordset to the page, to pull reviews from a separate table, and now I'm getting the following error:
Parse error: syntax error, unexpected ')', expecting T_STRING or T_VARIABLE or '$' in /Applications/MAMP/htdocs/goodvetguide/practice_Detail.php on line 78
(should point out that I'm using DMW8 on a Mac and testing locally using MAMP as my testing server).
line 78 is:
if (isset()) {
  $Parampractice_id_WADApracticelist = (get_magic_quotes_gpc()) ?  : addslashes();
and the full code for the page is posted below. I've googled this error and found a variety of different reasons for why this might be happening but none of the examples I've seen appear to apply to my case, so I'd really appreciate any assistance anyone can offer with this. Thanks in advance.
Page code:
<?php require_once('Connections/connGVG.php'); ?>
<?php require_once('Connections/connGVG.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;
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;
?><?php
if (!session_id()) session_start();
?>
<?php
$Parampractice_WADApracticelist = "-1";
if (isset($_GET['practice_id'])) {
  $Parampractice_WADApracticelist = (get_magic_quotes_gpc()) ? $_GET['practice_id'] : addslashes($_GET['practice_id']);
$ParamSessionpractice_WADApracticelist = "-1";
if (isset($_SESSION['WADA_Insert_practicelist'])) {
  $ParamSessionpractice_WADApracticelist = (get_magic_quotes_gpc()) ? $_SESSION['WADA_Insert_practicelist'] : addslashes($_SESSION['WADA_Insert_practicelist']);
$Parampractice_WADApracticelist = "-1";
if (isset($_GET['practice_id'])) {
  $Parampractice_WADApracticelist = (get_magic_quotes_gpc()) ? $_GET['practice_id'] : addslashes($_GET['practice_id']);
$Parampractice_id_WADApracticelist = "-1";
if (isset()) {
  $Parampractice_id_WADApracticelist = (get_magic_quotes_gpc()) ?  : addslashes();
$Parampractice_id2_WADApracticelist = "-1";
if (isset()) {
  $Parampractice_id2_WADApracticelist = (get_magic_quotes_gpc()) ?  : addslashes();
$ParamSessionpractice_id_WADApracticelist = "-1";
if (isset()) {
  $ParamSessionpractice_id_WADApracticelist = (get_magic_quotes_gpc()) ?  : addslashes();
mysql_select_db($database_connGVG, $connGVG);
$query_WADApracticelist = sprintf("SELECT practice_id, practicename, address1, address2, address3, address4, postcode, location, practicewebsite, practicetype, starrating FROM practicelist WHERE practice_id = %s OR ( -1= %s AND practice_id= %s)", GetSQLValueString($Parampractice_id_WADApracticelist, ""),GetSQLValueString($Parampractice_id2_WADApracticelist, ""),GetSQLValueString($ParamSessionpractice_id_WADApracticelist, ""));
$WADApracticelist = mysql_query($query_WADApracticelist, $connGVG) or die(mysql_error());
$row_WADApracticelist = mysql_fetch_assoc($WADApracticelist);
$totalRows_WADApracticelist = mysql_num_rows($WADApracticelist);
$colname_rsReviews = "-1";
if (isset($_GET['WADALocation'])) {
  $colname_rsReviews = (get_magic_quotes_gpc()) ? $_GET['WADALocation'] : addslashes($_GET['WADALocation']);
mysql_select_db($database_connGVG, $connGVG);
$query_rsReviews = sprintf("SELECT * FROM reviews WHERE practice_id = %s", GetSQLValueString($colname_rsReviews, "int"));
$rsReviews = mysql_query($query_rsReviews, $connGVG) or die(mysql_error());
$row_rsReviews = mysql_fetch_assoc($rsReviews);
$totalRows_rsReviews = mysql_num_rows($rsReviews);
?><!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Details practicelist</title>
<style type="text/css">
<!--
-->
</style>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="WA_DataAssist/styles/Refined_Pacifica.css" rel="stylesheet" type="text/css" />
<link href="WA_DataAssist/styles/Arial.css" rel="stylesheet" type="text/css" />
<style type="text/css">
/* Details page CSS */
.WADADetailsContainer {
font-size: 11px;
#WADADetails {
padding-top: 10px;
</style>
</head>
<body>
<div id="wrapper">
  <div id="header"></div>
  <div id="content">
    <div id="menu">
      <a href="addreview.html">Add review</a>  <a href="contact.html">Contact</a>  <a href="terms.html">Terms</a>  <a href="practice_Search.php">Search</a>  <a href="about.html">About </a><a href="index.html">Home </a></div>
    <div id="contentleft2">
      <div id="greenpiccont"></div>
      <div id="cright">
        <div class="boldwhite" id="rightblue">Review your vet<br />
          <br />
          <span class="smallbold">Tell us your experience</span><br />
          <br />
          <span class="smallwhite">Give people information<br />
          on your experiences so <br />
          that they can make an<br />
          informed decision.</span><br />
          <div id="startbutton"><a href="#">Start</a></div>
        </div>
      <div id="bluemap2"></div>
      <div id="searchbox">
        <table width="202" border="0" cellspacing="0">
          <tr>
            <th scope="row"><div align="left" class="smalltext">Search by postcode</div></th>
          </tr>
          <tr>
            <th height="31" scope="row"><input name="Name" class="Width250px" /></th>
          </tr>
          <tr>
            <th scope="row"><div align="left" class="smalltext">Miles</div></th>
          </tr>
          <tr>
            <th height="39" scope="row"><div align="left">
              <input name="Name2" class="Width250px" />
            </div></th>
          </tr>
        </table>
      </div>
      </div>
      <div class="about10" id="contl">Practice details<br />
        <div class="WADADetailsContainer"> <a name="top"></a>
          <div class="WADAHorizLine"><img src="WA_DataAssist/images/_tx_.gif" alt="" height="1" width="1" border="0" /></div>
          <?php if ($totalRows_WADApracticelist > 0) { // Show if recordset not empty ?>
            <div id="WADADetails">
              <table class="WADADataTable" cellpadding="0" cellspacing="0" border="0">
                <tr>
                  <th class="WADADataTableHeader">Practice name:</th>
                  <td class="WADADataTableCell"><strong><?php echo($row_WADApracticelist['practicename']); ?></strong></td>
                </tr>
                <tr>
                  <th class="WADADataTableHeader">Practice type:</th>
                  <td class="WADADataTableCell"><?php echo($row_WADApracticelist['practicetype']); ?></td>
                </tr>
                <tr>
                  <th class="WADADataTableHeader">Address:</th>
                  <td class="WADADataTableCell"><?php echo($row_WADApracticelist['address1']); ?></td>
                </tr>
                <tr>
                  <th class="WADADataTableHeader"> </th>
                  <td class="WADADataTableCell"><?php echo($row_WADApracticelist['address2']); ?></td>
                </tr>
                <tr>
                  <th class="WADADataTableHeader"> </th>
                  <td class="WADADataTableCell"><?php echo($row_WADApracticelist['address3']); ?></td>
                </tr>
                <tr>
                  <th class="WADADataTableHeader"> </th>
                  <td class="WADADataTableCell"><?php echo($row_WADApracticelist['address4']); ?></td>
                </tr>
                <tr>
                  <th class="WADADataTableHeader">Postcode:</th>
                  <td class="WADADataTableCell"><?php echo($row_WADApracticelist['postcode']); ?></td>
                </tr>
                <tr>
                  <th class="WADADataTableHeader">Location:</th>
                  <td class="WADADataTableCell"><?php echo($row_WADApracticelist['location']); ?></td>
                </tr>
                <tr>
                  <th class="WADADataTableHeader">Website:</th>
                  <td class="WADADataTableCell"><a href="http://www.<?php echo $row_WADApracticelist['practicewebsite']; ?>" target="_blank"><?php echo($row_WADApracticelist['practicewebsite']); ?></a></td>
                </tr>
                <tr>
                  <th class="WADADataTableHeader">Star rating:</th>
                  <td class="WADADataTableCell"><?php echo($row_WADApracticelist['starrating']); ?></td>
                </tr>
              </table>
              <div class="WADAHorizLine"><img src="WA_DataAssist/images/_tx_.gif" alt="" height="1" width="1" border="0" /></div>
              <div class="WADAButtonRow">
                <table class="WADADataNavButtons" border="0" cellpadding="0" cellspacing="0">
                  <tr>
                    <td class="WADADataNavButtonCell" nowrap="nowrap"></td>
                    <td class="WADADataNavButtonCell" nowrap="nowrap"></td>
                    <td class="WADADataNavButtonCell" nowrap="nowrap"><a href="practice_Results.php" title="Results"><img border="0" name="Results" id="Results" alt="Results" src="WA_DataAssist/images/Pacifica/Refined_results.gif" /></a></td>
                  </tr>
                </table>
              </div>
            </div>
          <?php } // Show if recordset not empty ?>
          <?php if ($totalRows_WADApracticelist == 0) { // Show if recordset empty ?>
            <div class="WADANoResults">
              <div class="WADANoResultsMessage">No record found.</div>
            </div>
            <div class="WADAHorizLine"><img src="WA_DataAssist/images/_tx_.gif" alt="" height="1" width="1" border="0" /></div>
            <div class="WADADetailsLinkArea">
              <div class="WADADataNavButtonCell"><a href="practice_Results.php" title="Results"><img border="0" name="Results1" id="Results1" alt="Results" src="WA_DataAssist/images/Pacifica/Refined_results.gif" /></a></div>
            </div>
            <div class="WADAHorizLine"><img src="WA_DataAssist/images/_tx_.gif" alt="" height="1" width="1" border="0" /></div><p><strong>Reviews for this practice:</strong></p>
            <?php do { ?>
              <table width="100%" border="0" cellspacing="5" cellpadding="2">
                <tr>
                  <td width="23%"> </td>
                  <td width="77%"><?php echo $row_rsReviews['comments']; ?></td>
                </tr>
                <tr>
                  <td> </td>
                  <td> </td>
                </tr>
                              </table>
              <?php } while ($row_WADApracticelist = mysql_fetch_assoc($WADApracticelist)); ?>
            <?php } // Show if recordset empty ?>
        </div>
      </div>
    </div>
    <div id="contentright">
      <p> </p>
    </div>
  </div>
  <div class="clr"></div>
  <div id="footer">hj</div>
</div>
</body>
</html>
<?php
mysql_free_result($WADApracticelist);
mysql_free_result($rsReviews);
?>

I haven't studied your code in detail, but it looks very much as though you have been editing the page without properly removing server behaviors through the Server Behaviors panel. Look at the following section:
<?php require_once('Connections/connGVG.php'); ?>
<?php require_once('Connections/connGVG.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;
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;
?>
You have the connection file attached twice, and the GetSQLValueString() function is defined twice. However, the cause of all your problems lies here:
$Parampractice_WADApracticelist = "-1";if (isset($_GET['practice_id'])) {
  $Parampractice_WADApracticelist = (get_magic_quotes_gpc()) ? $_GET['practice_id'] : addslashes($_GET['practice_id']);
$ParamSessionpractice_WADApracticelist = "-1";
if (isset($_SESSION['WADA_Insert_practicelist'])) {
  $ParamSessionpractice_WADApracticelist = (get_magic_quotes_gpc()) ? $_SESSION['WADA_Insert_practicelist'] : addslashes($_SESSION['WADA_Insert_practicelist']);
$Parampractice_WADApracticelist = "-1";
if (isset($_GET['practice_id'])) {
  $Parampractice_WADApracticelist = (get_magic_quotes_gpc()) ? $_GET['practice_id'] : addslashes($_GET['practice_id']);
$Parampractice_id_WADApracticelist = "-1";
if (isset()) {
  $Parampractice_id_WADApracticelist = (get_magic_quotes_gpc()) ?  : addslashes();
$Parampractice_id2_WADApracticelist = "-1";
if (isset()) {
  $Parampractice_id2_WADApracticelist = (get_magic_quotes_gpc()) ?  : addslashes();
$ParamSessionpractice_id_WADApracticelist = "-1";
if (isset()) {
  $ParamSessionpractice_id_WADApracticelist = (get_magic_quotes_gpc()) ?  : addslashes();
mysql_select_db($database_connGVG, $connGVG);
Look how many times the same code is repeated. What's causing the problem are the three final sections where there is no argument passed to isset().
Delete the code highlighted in red.

Similar Messages

  • Help needed please, with Iphone stuck with apple picture and progress bar after software update attempted

    Help needed please, everytime I try to update the software version on my iphone it comes up with a message saying it could not be completed and is now frozen with the apple picture and progress bar on it. Do I unplug it and hope the macbook pro sees it again, I also stupidly did not back up before starting the download which I realise I will have to go back to the previous back up. This keeps happening, everytime I do this type of update, I'm starting to think I should just give up on updating my software on the Iphone. I thought it was happening because I was using a window based computer to do the updates, this time I used my Macbook Pro. Please somebody help

    ljm17 wrote:
    ...This keeps happening, everytime I do this type of update, I...
    Then you should know what you need to do... If you don't remember...
    See Here  >  http://support.apple.com/kb/HT1808

  • ITunes corrupt file message - urgent help needed please

    I have an iPod video 30GB, i downloded the latest iTunes & Quicktime version, and updated my iPod also to the latest update. When i connect my iPod and start downloading music from the library in iTunes, the iPod keeps on disconnecting and restarting by itself, and i get a message that the file iTunes.exe is corrupt. I tried Apple support and did all what they said by downloading the latest updates and versions, and also did the Chkdsk utility on Windows, but still it did not work, the iPod keep on restarting and i cannot download anything on it, i had it now for a week and did not use it at all because of this problem, can somebody with a technical background help me please, i use Windows XP.

    I have an iPod video 30GB, i downloded the latest iTunes & Quicktime version, and updated my iPod also to the latest update. When i connect my iPod and start downloading music from the library in iTunes, the iPod keeps on disconnecting and restarting by itself, and i get a message that the file iTunes.exe is corrupt. I tried Apple support and did all what they said by downloading the latest updates and versions, and also did the Chkdsk utility on Windows, but still it did not work, the iPod keep on restarting and i cannot download anything on it, i had it now for a week and did not use it at all because of this problem, can somebody with a technical background help me please, i use Windows XP.

  • [b]Connection to Oracle DB per JDBC URGENT HELP NEEDED PLEASE![/b]

    Hallo,
    I'm a newbie. I want to make a connection to the oracle db on the server and I have been having serious problems. See CODE and ERROR MESSAGEs below:
    import java.sql.*;
    public class SqlConnection01 {
         public static void main(String[] args) {
              Connection con = null;
              Statement stmt = null;
              try {
                   Class.forName("oracle.jdbc.driver.OracleDriver"); //Loading the Oracle Driver.
    con = DriverManager.getConnection
         ("jdbc:oracle:thin:@38.218.2.227:1521:testdb","data","test"); //making the connection.
                   stmt = con.createStatement ();// Sending a query to the database
                   ResultSet rs = stmt.executeQuery("SELECT mand,kost,ktest,kok FROM test");
                        while (rs.next()) {
                             String mandt = rs.getString("1");
                             String kostl = rs.getString("2");
                             String ktest = rs.getString("3");
                             String kokrs = rs.getString("4");
                             System.out.println( mandt + kostl ktest kokrs );
              } catch(Exception e) {
                   e.printStackTrace();
              } finally {
                   try
                        if(stmt != null) stmt.close();
                        if(con != null) con.close();
                   } catch (Exception exception) {
                        exception.printStackTrace();
    ERROR MESSAGE:
    java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=153092352)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:334)
         at oracle.jdbc.ttc7.TTC7Protocol.handleIOException(TTC7Protocol.java:3695)
         at oracle.jdbc.ttc7.TTC7Protocol.logon(TTC7Protocol.java:352)
         at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:362)
         at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:536)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:328)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at SqlConnection01.main(SqlConnection01.java:24)
    What am I doing wrong here. I am using Oracle9i client installed on my pc (Release 2 (9.2.0.1.0) for Windows ) so I downloaded the ojdbc14 drivers for this version and I copied them in my bin directory C:\j2sdk1.4.2_06\bin\ojdbc14 .
    Secondly I can connect to the db per command line( sqlplus /nolog; conn data/test@testdb) and querry the testdb.
    I can also test the connection using oracle Net Manager and the test is successful.
    But I can't start up the lsnrctl on my pc.I get this message any time i issue the command(C:\>lsnrctl
    'lsnrctl' is not recognized as an internal or external command, operable program or batch file.)
    What am I doing wrong here? What should I do to have this connection possible. Thanks very much in advance.

    oh sure! Below is the TNSNAMES I copied from my PCfound in(C:\oracle\ora92\network\admin\SAMPLE) The next thing could be how could I get access to the TNSNAMES on the server?
    STARTS HERE:
    <alias>= [ (DESCRIPTION_LIST =  # Optional depending on whether u have
                        # one or more descriptions
                        # If there is just one description, unnecessary ]
         (DESCRIPTION=
         [ (SDU=2048) ]     # Optional, defaults to 2048
                        # Can take values between 512 and 32K
         [ (ADDRESS_LIST=    # Optional depending on whether u have
                        # one or more addresses
                        # If there is just one address, unnecessary ]
         (ADDRESS=
              [ (COMMUNITY=<community_name>) ]
              (PROTOCOL=tcp)
              (HOST=<hostname>)
              (PORT=<portnumber (1521 is a standard port used)>)
         [ (ADDRESS=
              (PROTOCOL=ipc)
              (KEY=<ipckey (PNPKEY is a standard key used)>)     
         [ (ADDRESS=
              [ (COMMUNITY=<community_name>) ]
              (PROTOCOL=decnet)
              (NODE=<nodename>)
              (OBJECT=<objectname>)
    ... # More addresses
         [ ) ] # Optional depending on whether ADDRESS_LIST is used or not
         [ (CONNECT_DATA=
              (SID=<oracle_sid>)
              [ (GLOBAL_NAME=<global_database_name>) ]
         [ (SOURCE_ROUTE=yes) ]
         (DESCRIPTION=
         [ (SDU=2048) ]     # Optional, defaults to 2048
                        # Can take values between 512 and 32K
         [ (ADDRESS_LIST= ]     # Optional depending on whether u have more
                        # than one address or not
                        # If there is just one address, unnecessary
         (ADDRESS
              [ (COMMUNITY=<community_name>) ]
              (PROTOCOL=tcp)
              (HOST=<hostname>)
              (PORT=<portnumber (1521 is a standard port used)>)
         [ (ADDRESS=
              (PROTOCOL=ipc)
              (KEY=<ipckey (PNPKEY is a standard key used)>)
         ...           # More addresses
         [ ) ]           # Optional depending on whether ADDRESS_LIST
                        # is being used
         [ (CONNECT_DATA=
              (SID=<oracle_sid>)
              [ (GLOBAL_NAME=<global_database_name>) ]
         [ (SOURCE_ROUTE=yes) ]
         [ (CONNECT_DATA=
         (SID=<oracle_sid>)
         [ (GLOBAL_NAME=<global_database_name>) ]
         ... # More descriptions
         [ ) ]     # Optional depending on whether DESCRIPTION_LIST is used or not
    I think this is the example of what is in the TNSNAMES. It hasn't got the infos I need here.It just explain.

  • I need to sort and organize all my email addresses in apple mail? - where are they and how can I organize and copy them ? urgent help needed please

    really need urgent help - where do I find the entire list of all my email addresses? and how do I sort and organize them into folders ?

    really need urgent help - where do I find the entire list of all my email addresses? and how do I sort and organize them into folders ?

  • Urgent help needed please: Updating Kernel

    Hi gurus,
    I am new to BI and needs to upgrade the Kernel to revision 133 for loading basis patch 14. I downloaded the kernel and copied to the F:\usr\sap\BID\SYS\exe\uc\NTI386.
    After this I was unable to restart the services.
    Can someone please guide thru this process.
    Thanks and regards,
    Iqbal

    Hi All,
    I tried as was recommended but am still faced with an issue.
    here is the dev_disp log.
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        BIQ
    systemid   562 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    133
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        5908
    Mon Mar 24 08:37:12 2008
    kernel runs with dp version 232000(ext=109000) (@(#) DPLIB-INT-VERSION-232000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 5908) [dpxxdisp.c   1239]
         shared lib "dw_xml.dll" version 133 successfully loaded
         shared lib "dw_xtc.dll" version 133 successfully loaded
         shared lib "dw_stl.dll" version 133 successfully loaded
         shared lib "dw_gui.dll" version 133 successfully loaded
         shared lib "dw_mdm.dll" version 133 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Mon Mar 24 08:37:17 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5371]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    ERROR => ShmCreate: Key=37 Inv.Size: req.=67072, alloc.=0 [shmnt.c      615]
    ERROR => CrtOsSemAdm: Semaphore Admin. Table not created [semnt.c      1991]
    ERROR => SemInMgt: Create Global Admin.Table failed [semnt.c      513]
    ERROR => DpSysAdmExtCreate: SemInMgt [dpxxtool2.c  725]
    ERROR => DpIPCInit2: DpSysAdmExtCreate [dpxxtool2.c  369]
    DP_FATAL_ERROR => DpSapEnvInit: DpIPCInit2
    DISPATCHER EMERGENCY SHUTDOWN ***
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 24 08:37:22 2008
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >< (normal)
    DpJ2eeDisableRestart
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    DpShmPrfSwitch : State already set (OFF)
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    call semaphore clean-up function ...
    ***LOG Q0E=> DpSigGenHandler, Exception (c0000005) [dpnttool.c   432]
    C-STACK -
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Application exception occurred:
    Exception : c0000005 (Access Violation)
    App       : disp+work.EXE (pid=5908)
    When      : 3/24/2008 8:37:22.798
    Threads   : 2
    Computer Name       : RK-VAL-BI
    User Name           : SAPServiceBIQ
    Number of Processors: 4
    Processor Type: EM64T Family 6 Model 15 Stepping 7
    Windows Version     : 5.2 Current Build: 3790
    State Dump for Thread Id 970
    --> (FAULT) Stack Back Trace <--
    FramePtr         ReturnAd         Param#1          Function Name
    0000000007d1f310 000000000041a395 0000000000000001 disp+work!DpVmcCheckDebugProxy [dpxxvmc.c (1211)]
    0000000007d1f400 000000000041d007 005f005000410001 disp+work!DpHalt [dpxxdisp.c (10016)]
    0000000007d1fc40 0000000000421a1b 0000000002671ab0 disp+work!DpFatalErr [dpxxdisp.c (17789)]
    0000000007d1fee0 000000000042d570 0000000000000000 disp+work!DpSapEnvInit [dpxxdisp.c (1388)]
    0000000007d1ff10 000000000040108d ffffffff00000002 disp+work!DpMain [dpxxdisp.c (1076)]
    0000000007d1ff40 00000000019c7dd1 0000000000000000 disp+work!nlsui_main [thxxanf.c (84)]
    0000000007d1ffa0 0000000077d5964c 0000000000000000 disp+work!wmainCRTStartup [crtexe.c (498)]
    0000000007d1ffd0 0000000000000000 00000000019c7c60 kernel32!BaseProcessStart
    State Dump for Thread Id b88
    --> Stack Back Trace <--
    FramePtr         ReturnAd         Param#1          Function Name
    000000000ef0fe40 0000000077d5f691 0000000007e6ac60 ntdll!NtFsControlFile
    000000000ef0feb0 00000000018ae00f 0000000000000000 kernel32!ConnectNamedPipe
    000000000ef0ff40 000007ff7fc411c4 0000000000000000 disp+work!SigIMsgFunc [signt.c (679)]
    000000000ef0ff70 0000000077d6b6da 0000000077d6b6a0 msvcrt!endthreadex
    000000000ef0ffa0 0000000000000000 0000000000000000 kernel32!BaseThreadStart
    call clean-up function ...
    SigICallExitRoutine: call exithandler (DpHalt)
    DpHalt: shutdown server >< (normal)
    DpJ2eeDisableRestart
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    DpShmPrfSwitch : State already set (OFF)
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    Can someone please help me with getting pass this error?
    Thanks and regards,
    Iqbal

  • Urgent help needed, please help me

    Hi,
    I am developing a web site using Java Servlets. The site requires to send XML as POST to an HTTPS server and get the response.
    Development environment:
    Laptop running Windows XP with jdk1.3.1, j2sdkee1.3 and Tomcat 4.1.
    Since I need to use https request from the servlet, I am using the following code;
    URL url = new URL("https://www.somesite.com");
    HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
    To use the above code I downloaded the jsse1.0.3_03 package from the sun website and added the three jar files to the appropriate location. Also edited the java.security file.
    The program compiles and when deployed to the web server, it works great.
    Now the problem;
    I need to deploy the web site in a server that is connected to the internet. This server is running Windows 2000 Server. It has the same jdk1.3.1, j2sdkee1.3 and Tomcat 4.1. Also I added the three jar files from jsse1.0.3_03. I also updated the classpath in the environment variable accordingly.
    Everything is pretty much similar to the Laptop that I use to develop the site except that the OS is Windows 2000 Server.
    But when I deployed the class files to the web server and tested the site, the servlet gave the following error:
    "unknown protocol: https"
    What could be wrong? I really need to fix this issue as soon as possible and any input from you will be highly appreciated.
    Thanks in advance,
    Rajesh

    Hi,
    I used java class as beans and added to JSP page as follows (the code is not complete, I am just giving the parts that are relevant);
    login.java: Implementation of login to access the database      
    *through JDBC. Uses MySQL.                              
    Last Modified: 03.22.03                    
    package user;
    import java.sql.*;
    import java.util.*;
    public class login
         private static Statement statement;
         private static Connection database;
         private static String jdbcDriver = "org.gjt.mm.mysql.Driver";
         private static String source = "jdbc:mysql://127.0.0.1/user";
         private static String username = "user";
         private static String password = "passwordforuser";
         Constructor for initializing the connection to the database                              
         public login()
              try
                   Class.forName(jdbcDriver);
                   database = DriverManager.getConnection(source, username, password);
                   statement = database.createStatement();
              catch (Exception e)
                   System.out.println("Error (From loginDatabase Constructor): " + e.getMessage());
         Used to check the users      
         public String checkUser(String userName, String passwd) throws Exception
              try
                   ResultSet names = statement.executeQuery("SELECT username, passwd FROM users");
                   while (names.next())
                   return "success";
                   return "wronguser";
              catch (Exception e)
                   throw e;
    <!--*********************************************************************************
    login.jsp: Server page to process the login request. Uses login.class to     
    *add / login users.                                        
    Last Modified: 03.23.03                         
    **********************************************************************************-->
    <%@ page import="user.login" %>
    <jsp:useBean id="login" scope="page" class="user.login" />
    <jsp:setProperty name="login" property="*" />
    <html>
    <head>
    <title>Login</title>
    </head>
    <body bgcolor="#3366FF" link="#000000" vlink="#000000" alink="#000000">
    <table border="0" width="100%" cellspacing="0" cellpadding="0">
    <tr>
    <% //Login the user and display the status
    String loginResult = login.checkUser(request.getParameter("username"), request.getParameter("password"));
    if (loginResult.equalsIgnoreCase("success"))
    %>
              <h1 align="center">You are successfully logged to the Server!</h1>
    <%
    %>
    </tr>
    </table>
    </body>
    </html>
    Hope that helps...
    Good luck!
    Rajesh

  • IReader installed but wont open Urgent help needed please!

    I have installed Acrobat Reader X.
    When i try to open files I get a problem saying Microsoft and Adobe have encountered a problem and need to close.
    I get an option to Debug, Send error report or Dont send.
    The information which comes up when I look for more information is the following::
    error signature
    Appname. Acrord32.exe. Appver 10.0.1.434 Modname acrord32.dll
    Modver 10.0.1.434  offset 001869666
    It was previously working then the next time I came to use it I got this.
    Desparately need help

    1. camera loading - have you tried updating or reinstalling your firmware?
    2. keyboard - define strange
    3. slow - how much is phone memory and what apps are running in background (see taskmanager, hold menu key until it shows)? turn off theme animations. it helps.
    4.  handwriting - have you set the handwriting recognition to recognize your particular penmanship? Go to menu>settings>phone>touch input. Set writing speed to very fast, calibrate your screen and take handwriting training so the phone will recognize your handwriting.
    5. qwerty - what things? how so? have you set it to qwerty?
    6. cannot scroll in file manager - its not a problem. Thats normal for the OS. Use Nokia Photobrowser or the Gallery for viewing pictures. File manager is for managing files, not viewing them.
    7.  Motion sensors - read #3
    8. Phone feels hot - how hot? Batteries heat up when charged. Its normal. However it depends on how hot exactly.
    9. Depends maybe on how long the video is. My 5800 feels hot when watching an entire movie. Also this would be reflected on #3 as well, as the phone may be working overtime.
    10.  Music when unplug headset - Its normal for almost all Nokia phones (heck even some other brands this is normal), try to use an alternative player if you like
    11. Back cover -  Its the design
    12. Yotube - use youtube app
    13. Use Nokia Photo Browser download from ovi store. It shows pics only and looks real cool. Anyway, you can put all your videos in the gallery into a virtual folder so that it is separate. Its the way the gallery is designed, to show both pics and video. As you can see, it is written Images and Videos, so they're supposed to be together in there.
    14. Adobe still hasnt caughtup its mobile solutions for its PC solutions. Its their fault not Nokia's or anyone else's.
    15. Depends on extension. Built in office reader only reads .doc, not .docx.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • Help needed LR 5.3 error message  Thank you  ( aide demandée LR 5.3 message d'erreur merci )

    Bonjour à tous
    Hi everybody
    Sur Lr 5.3 sous windows 7 j'ai ce message d'erreur voir en pièce jointe que dois je faire s'il vous plaît... des informations de mon catalogue ont disparu  paramétre de recherche par exemple)
    Merci à tous
    Lr5.3 with windows seven, i jave an arror message ( see the picture) what can i do please? i've noticed taht some catalog items are missing  now ( for serch, for example)
    Thank you all
    Patrice

    Don't post reams of information like this - it means nothing.
    Also, this is an iWeb forum which is concerned with website building and your post has nothing to do with this.
    Please look more closely when posting to ensure that you are posting in the correct forum, which you have not.  Nobody here can help you with your problem.

  • TextFields / labels in Applet...Urgent help needed please!!

    I have been trying for days to add labels and textFields to my applet and can only manage to display one.
    My assignment instructions suggest I use makeTextField method and call the setEditable method from the makeTextField method to avoid repetition of code.
    The following is my code...I must have this done in the next couple of days so if someone could please please give me some assistance it would be really appreciated....also, thoughts on my layout would be great as well...i cant seem to set up my buttons in the correct order.
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.Applet;
    public class Registry4b extends Applet implements ActionListener {
    public void init() {
    backgroundColor = new Color(200,255,255);
    this.setLayout(new FlowLayout(FlowLayout.CENTER,4,1));
    makeButtons();
    row1 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row1.add(clearB);
    row1.add(studFindB);
    row1.add(studForB);
    row1.add(courB);
    row2 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row2.add(studBackB);
    row2.add(courFindB);
    row2.add(courForB);
    row2.add(studB);
    row3 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row3.add(courBackB);
    add(row1);
    add(row2);
    add(row3);
    Panel p = new Panel(new BorderLayout());
    Label studID = new Label("STUDENT ID");
    TextField entry = new TextField(" ");
    p.add(studID,BorderLayout.WEST);
    p.add(entry,BorderLayout.CENTER);
    Label firstTF = new Label("FIRST NAME");
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("West",courBackB);
    add("East",studB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("North",p);
    add("South",courForB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("North",courFindB);
    add("South",studBackB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("West",p);
    add("East",studForB);
    setBackground(backgroundColor);
    clearB.addActionListener(this);
    courBackB.addActionListener(this);
    studB.addActionListener(this);
    courForB.addActionListener(this);
    courFindB.addActionListener(this);
    studBackB.addActionListener(this);
    courB.addActionListener(this);
    studForB.addActionListener(this);
    studFindB.addActionListener(this);
    private Label makeLabel(String label) {
    Label label1 = new Label(label,Label.RIGHT);
    label1.setFont(new Font("Courier",Font.BOLD,10));
    return label1;
    public void start() {
    appletWidth = 8*4+row1.getSize().width;
    appletHeight = 8*(2+courBackB.getSize().height);
    public void paint(Graphics g) {
    setSize(appletWidth,appletHeight);
    validate();
    public void actionPerformed(ActionEvent e) {
    String s = (String)e.getActionCommand();
    private Button makeButton(String label, Color color, Font font) {
    Button b = new Button(label);
    b.setBackground(color);
    b.setFont(font);
    return b;
    private Panel makePanel(LayoutManager lm, Color c) {
    Panel p = new Panel();
    p.setLayout(lm);
    p.setBackground(c);
    return p;
    private void makeButtons() {
    Font f = new Font("Courier", Font.BOLD, 10);
    Color grey = new Color(255,100,100);
    clearB = makeButton("CLEAR",grey,f);
    studB = makeButton(" STUDENTS ",grey,f);
    studForB = makeButton("->",grey,f);
    studFindB = makeButton("FIND",grey,f);
    courFindB = makeButton("FIND",grey,f);
    studBackB = makeButton("<-",grey,f);
    courB = makeButton(" COURSES ",grey,f);
    courBackB = makeButton("<-",grey,f);
    courForB = makeButton("->",grey,f);
    TextField addressTF = new TextField("ADDRESS", 10);
    static final String initialString = " ";
    String Filler = " ";
    Panel row1, row2, row3, p1;
    int appletWidth, appletHeight;
    Button clearB, studForB, studFindB, courFindB,
    studBackB,courB, courBackB, studB, courForB;
    Color backgroundColor;
    the buttons currently dont do anything. this is stage 1 of 3 for my 3 part assignment. for now i am just supposed to get the format right and show sample text in the textfields.
    the format is supposed to look something like the following (cant copy existing as it is protected)
    <- STUDENTS -> CLEAR <- COURSES ->
    student id FIND course id FIND
    last name_________first name______course name_____
    address________________________________________
    city______province___________p.code______________
    phone__________e-mail_______coordinator___________
    #of courses completed_____ #of students passed______
    student's average grade___ students grade ave grade___
    messages______________________________________
    the ones in caps are buttons and the rest are labels with text fields beside most of the labels.
    i apologize for the extremely long question but i hope this is what you were looking for to give me some help...anything would be greatly appreciated!!
    thanks in advance for anything someone can do for me

    hi,
    may this helps to solve your problem
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.Applet;
    public class Registry4b extends Applet implements ActionListener {
    TextField sid;
    TextField cid;
    public void init() {
    backgroundColor = new Color(200,255,255);
    setLayout(new GridLayout(2,1)); // 2 rows, one column, first row for search, the second for output
    Panel up=new Panel(new GridLayout(3,1)); // search panel
    Panel down=new Panel(new GridLayout(1,1)); //output panel
    down.add(new Label("Just for the output"));
    Panel p1=makePanel(new GridLayout(1,7),backgroundColor);
    makeButtons();
    p1.add(studBackB);
    p1.add(studB);
    p1.add(studForB);
    p1.add(clearB);
    p1.add(courBackB);
    p1.add(courB);
    p1.add(courForB);
    up.add(p1);
    Panel p2=makePanel(new GridLayout(1,3),backgroundColor);
    p2.add(makeLabel("Student ID"));
    sid=new TextField("");
    p2.add(sid);
    p2.add(studFindB);
    up.add(p2);
    Panel p3=makePanel(new GridLayout(1,3),backgroundColor);
    cid=new TextField("");
    p3.add(makeLabel("Course ID"));
    p3.add(cid);
    p3.add(courFindB);
    up.add(p3);
    add(up);
    add(down);
    private Label makeLabel(String label) {
    Label label1 = new Label(label,Label.RIGHT);
    label1.setFont(new Font("Courier",Font.BOLD,10));
    return label1;
    public void start() {
    //appletWidth = 8*4+120;//row1.getSize().width;
    //appletHeight = 8*(2+courBackB.getSize().height);
    appletWidth=200;
    appletHeight=90;
    public void paint(Graphics g) {
    setSize(appletWidth,appletHeight);
    validate();
    public void actionPerformed(ActionEvent e) {
    String s = (String)e.getActionCommand();
    private Button makeButton(String label, Color color, Font font) {
    Button b = new Button(label);
    b.setBackground(color);
    b.setFont(font);
    return b;
    private Panel makePanel(LayoutManager lm, Color c) {
    Panel p = new Panel();
    p.setLayout(lm);
    p.setBackground(c);
    return p;
    private void makeButtons() {
    Font f = new Font("Courier", Font.BOLD, 10);
    Color grey = new Color(255,100,100);
    clearB = makeButton("CLEAR",grey,f);
    studB = makeButton(" STUDENTS ",grey,f);
    studForB = makeButton("->",grey,f);
    studFindB = makeButton("FIND",grey,f);
    courFindB = makeButton("FIND",grey,f);
    studBackB = makeButton("<-",grey,f);
    courB = makeButton(" COURSES ",grey,f);
    courBackB = makeButton("<-",grey,f);
    courForB = makeButton("->",grey,f);
    TextField addressTF = new TextField("ADDRESS", 10);
    static final String initialString = " ";
    String Filler = " ";
    Panel row1, row2, row3, p1;
    int appletWidth, appletHeight;
    Button clearB, studForB, studFindB, courFindB, studBackB,courB, courBackB, studB, courForB;
    Color backgroundColor;
    }interesting for you is only the init()
    regards

  • My computer just stopped working... urgent help needed please!

    Hello all...
    Strangest thing just happened, and I'm on a pretty tight deadline.
    Powermac G5, dual 2.0. This morning the computer was working just fine. I left for a couple hours, came back, pressed the mouse to bring it out of sleep, and there was no display on either of my monitors.
    I forced a shutdown, and restarted thinking it was just a fluke... but once I restarted, no picture on either monitor. The monitor says there is no signal coming in from the computer.
    Everything sounds normal with the machine, so I tried turning up the volume from the keypad, but didn't hear anything. Tried ejecting the superdrive; nothing.
    Like I said, everything SOUNDS normal upon startup, and it even came out of sleep mode when I hit the mouse (I heard it startup), but I'm getting no response of any kind and no video out. HELP?
    Any ideas here? I'm right in the middle of an editing project, and I HAVE to have it finished by Monday (it's friday right now).
    Thanks for any and all advice.
    -ryan
    Message was edited by: Ryan Brown2

    OK, after input from another forum, I ordered a new video card thinking it would solve the issue.
    Just installed it, and my computer is still not working. Everything starts up and sounds fine, but I have no signal to the monitors, and no keyboard response.
    I tried starting in "firewire target mode" to my laptop, and it did not work.
    I took out my main hard drive, connected it to my laptop via USB, and it works fine.
    So... it's not the hard drive, not the video card... what else could be going wrong here?

  • Urgent help needed please starting SAP on AIX

    Hi All,
    Can someone please help my to understand why I am having more than 5000 processes started when I try so start sap on an AIX server, as I have no clue why how and why they are startedu2026
    Here are some of the processesu2026
      qasadm 14512306 14389408   0 19:00:20      -  0:00 /usr/bin/csh /usr/sap/QAS/SYS/exe/run/ls -d /usr/sap/QAS/DVEBMGS00
      qasadm 14516414 14512306   0 19:00:20      -  0:00 /usr/bin/csh /usr/sap/QAS/SYS/exe/run/ls -d /usr/sap/QAS/DVEBMGS00
      qasadm 14520534 14528718   0 19:00:20      -  0:00 /usr/bin/csh /usr/sap/QAS/SYS/exe/run/ls -d /usr/sap/QAS/DVEBMGS00
      qasadm 14524620 14463214   0 19:00:20      -  0:00 /usr/bin/csh /usr/sap/QAS/SYS/exe/run/ls -d /usr/sap/QAS/DVEBMGS00
      qasadm 14528718 14524620   0 19:00:20      -  0:00 /usr/bin/csh /usr/sap/QAS/SYS/exe/run/ls -d /usr/sap/QAS/DVEBMGS00
      qasadm 14532820 14520534   0 19:00:20      -  0:00 /usr/bin/csh /usr/sap/QAS/SYS/exe/run/ls -d /usr/sap/QAS/DVEBMGS00
      qasadm 14536918 14532820   0 19:00:20      -  0:00 /usr/bin/csh /usr/sap/QAS/SYS/exe/run/ls -d /usr/sap/QAS/DVEBMGS0
    Thanks,
    Iqbal

    Hi Iqbal,
    Please consult with AIX (OS) person is there any exe running at the time of SAP start otherwise this is not happining with SAP.
    Regards,
    Anil

  • P45 Platinum (Urgent help needed please)

    Last week I ordered parts for a new P.C. and I am having some major issues with this. The motherboard will not do anything. When I try to power on the computer the fans spins and all of the lights come on, but the computer will not post or go into the BIOS. There are 4 red lights on the board. From different things I have read I thought it may have been the motherboard so I had them send me another one. Well I got it today and it is doing the same thing! I am leaning toward the CPU, but I am hoping to get some help before I call them and request a replacement on the CPU. I am about to pull my hair because I am so frustrated. Here is a quick overview of the parts I ordered (in no particular order):
    *800w PSU
    *P45 Platinum Mobo
    *500 GB SATA HD
    *Intel Core 2 Quad Q6600
    *VisionTek HD4870
    *OCZ SLI ready 4 GB RAM (OCZ2N800SR4GK)
    I thought it may have been the RAM because of the voltage, but from reading other threads I should be able to change the voltage (the RAM voltage is 2.1).
    Here are some things that I have tried:
    *New motherboard
    *Only put one stick of RAM in instead of them both
    *Only had RAM, Video Card, CPU hooked up with same results
    *Cleared the CMOS (with the power off and the cord unplugged)
    *Tried it with the motherboard outside of the case in case it was getting shorted out some how.
    I would greatly appreciate any and all help you could give me. Please help

    Quote from: vernonion on 27-August-08, 09:51:53
    Everything is not working fine, and a pop with sparks is not a normal result from turning on a power supply. If you got it from Tiger send it back and get this one.
    I talked to the rep earlier, but I had to go to a meeting. When I called him back he said he was on the phone with Intel to make sure my CPU would work with that board. I know it will work so I have no clue why he called them. He didn't seem to concerned about the PSU though. I told him that the PSU popped and made sparks and it didn't phase him at all. I already told him I wanted to exchange the RAM with different kind and I wanted a new PSU. When I give him the new RAM and the PSU I want I will give this one a try.
    Thank you for your help.

  • Help needed please with zen nano p

    Hi all I got a new zen nano plus last week and have had a nightmare ever since. I was told that it was very straight forward to use (just cut and paste from windows media player into a bubble!) and I liked the extra features it had over the ipod shuffle. However, I loaded on the software and it loaded on okay, but the media source player went all strange and started to play music at a super fast bitrate. I stupidly thought if I unistalled it and started again, the problem would be solved. It got worse, 5 hours later and after losing loads of music I resorted to a sytem recovery. today i have spent a similar amount of time trying to reinstall the mp3. the player downloads okay however when I put a cd into rip it tells me I have an error and won't play. i have noticed when I do install it it goe's from about 20% to 99% and seems to miss out the rest. My compuetr also dosn't seem to like the fact that the media source won't download properly. however I don't seem to be able to completly uninstall in the control panel . it tells me that setup has encountered a problem and needs to close. anyone got any ideas please - cause i am being dri'ven insane

    I use the free version of Music Match(www.musicmatch.com) to get music from CDs to mp3s on my hard dri've. If you want to transfer protected wma files(those purchased one at a time, not subscription music. The player doesn't support subscription music) to the player then use Windows Media Player 0. To Transfer mp3 files to the player, use Windows Explorer(right click on start, then click on explore). Use Windows Explorer to set up folders on the player (File, new, folder) then use Windows Eplorer to drag and drop files to the folders on the player. For music quality almost indistinguishable from the CD use 256 kb
    ps.
    That will give you around 9 hours of music on a gig player. If you want 8 hours of music but lower sound quality then use 28 kb
    ps.
    96 kbps is between the two. I use 256 kbps for my music.

  • Urgent help needed - Process order api error

    Hi All,
    I am having a problem with implementing process order api. I have all the necessary details, but i couldn't get working. I think the problem might be with global initialization or with api parameter declaration. I am posting the code so any help might be helpful.
    Any help is urgently required and greatly appreciated.
    Thanks
    srinivas
    Edited by: user2138419 on Feb 6, 2010 4:21 PM

    Hi,
    I solved the above issue and I thought may be this would be helpful to others. I solved the process order issues through assisgming proper responsibility and proper org_id under which you are booking orders. If we have these tow correct, then most of the issues will be rectified..

Maybe you are looking for

  • DB verfied failed

    Dear Experts While excuting db verfied is finishing with error please help in the issue. Job started Step 001 started (program RSDBAJOB, variant &0000000000004, user ID DDIC) Execute logical command BRBACKUP On host KPIDEV Parameters:-u / -jid VERIF2

  • Issues with upgrade from os x 10.7.5

    hi had 2 attempts in upgrade down load from os x 10.7.5 to os x mountain lion so i can use my apple tv correctly.... however im getting this error An error occurred while running scripts from the package "mzps8185591984996783701.pkg". and then the fi

  • No archive after refreshing

    I cloned the production system and after cloning, I enabled archiving in the cloned system. today to refresh the target system with that of the source system,copied all the datafiles and it is working fine..but not, in the refreshed cloned instance,

  • Render component based on pageTemplateDef facetRef's child

    hi. I have Page Template and inside that template I has a component which has (somewhere deep inside) one facetRef. I want to toggle render property of that component based on this facetRef's cild. In other words if facetRef has a child I want to ren

  • Ipad mini frozen screen

    my ipad mini has frozen with picture of usb and itunes logo after latest ios update