Cant find error in code

This code adds to the database, but it wont redirect me back to the inventory page.
I have set it to in the server behaviours but it doesnt want to redirect.
Here is my page code:
<?php require_once('Connections/drama_database.php'); ?>
<title>Add New Book</title>
<?php error_reporting(0);
ini_set('display_errors', 0);
?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;   
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  return $theValue;
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
  $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "bookadd")) {
  $insertSQL = sprintf("INSERT INTO books (title, author, `description`, topic, location, lc) VALUES (%s, %s, %s, %s, %s, %s)",
                       GetSQLValueString($_POST['title'], "text"),
                       GetSQLValueString($_POST['author'], "text"),
                       GetSQLValueString($_POST['description'], "text"),
                       GetSQLValueString($_POST['topic'], "text"),
                       GetSQLValueString($_POST['location'], "text"),
                       GetSQLValueString($_POST['labelcode'], "int"));
  mysql_select_db($database_drama_database, $drama_database);
  $Result1 = mysql_query($insertSQL, $drama_database) or die(mysql_error());
  $insertGoTo = "bookinventory.php";
  if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
  header(sprintf("Location: %s", $insertGoTo));
mysql_select_db($database_drama_database, $drama_database);
$query_bookadd = "SELECT * FROM books";
$bookadd = mysql_query($query_bookadd, $drama_database) or die(mysql_error());
$row_bookadd = mysql_fetch_assoc($bookadd);
$totalRows_bookadd = mysql_num_rows($bookadd);
session_start();?>
<!--HEADER CONTENT START -->
<script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
<script src="SpryAssets/SpryValidationTextarea.js" type="text/javascript"></script>
<script src="SpryAssets/SpryValidationSelect.js" type="text/javascript"></script>
<script src="SpryAssets/SpryTooltip.js" type="text/javascript"></script>
<style type="text/css">
bookinv {
    font-size: 10px;
</style>
<link href="SpryAssets/SpryTooltip.css" rel="stylesheet" type="text/css" />
<head>
<link href="stylesheet.css" rel="stylesheet" type="text/css">
<link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css">
</head>
</html>
<style type="text/css">
body{ margin:0px; background:#FFF;}
.header {
    height:165px;
    background:#FFF;
    border:1px solid#CCC;
    position:fixed;
    width:100%;
    top:0px;
#form1 table {
    font-size: 9px;
#form1 table {
    font-size: 10px;
#form1 table {
    font-size: 12px;
#form1 table {
    font-size: 14px;
.d {
    font-size: 16px;
    font-weight: bold;
.s {
    font-size: 18px;
    font-weight: bold;
</style>
</head>
<div class="header"><?php include('defaultheader.php');?></div>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
  <!--HEADER CONTENT END -->
  <div align="center">
      <h1>Add New Book</h1>
  </div>
  <div align="center">
    <form action="<?php echo $editFormAction; ?>" id="bookadd" name="bookadd" method="POST">
      <table width="417" border="0">
        <tr>
          <td width="93" class="formtag">Title</td>
          <td width="314"><span id="sprytextfield1">
            <label for="title"></label>
            <input name="title" type="text" class="formfield" id="title" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
        </tr>
        <tr>
          <td class="formtag">Author</td>
          <td><span id="sprytextfield2">
            <label for="author"></label>
            <input name="author" type="text" class="formfield" id="author" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
        </tr>
        <tr>
          <td class="formtag">Description</td>
          <td><span id="sprytextfield3">
            <label for="description"></label>
            <textarea name="description" class="formfielddesc" id="description"></textarea>
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
        </tr>
        <tr>
          <td class="formtag">Topic</td>
          <td><span id="sprytextfield4">
            <label for="topic"></label>
            <input name="topic" type="text" class="formfield" id="topic" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
        </tr>
        <tr>
          <td class="formtag">Location</td>
          <td><label for="location"></label>
            <select name="location" class="formfield" id="location">
<!--Connection to Other Table-->           
                 <option id="0">-- Select Location --</option>
                <?php
                    require("Connections/drama_database.php");
                    $getallbooklocation = mysql_query("SELECT * FROM booklocation");                   
                    while($viewallbooklocation = mysql_fetch_array($getallbooklocation)){
                ?>
                <option id="<?php echo $viewallbooklocation['id']; ?>"><?php echo $viewallbooklocation['location'] ?></option>
                <?php } ?>
<!--Connection to Other Table-->
          </select></td>
        </tr>
        <tr>
          <td class="formtag">Label Code</td>
          <td><span id="sprytextfield5">
          <label for="labelcode"></label>
          <input name="labelcode" type="text" class="formfield" id="labelcode" />
          <span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">Invalid format.</span></span></td>
        </tr>
        <tr>
          <td class="formtag"> </td>
          <td> </td>
        </tr>
        <tr>
          <td colspan="2" align="center"><input name="addbook" type="submit" class="button" id="addbook" value="Add Book" /></td>
        </tr>
      </table>
      <input type="hidden" name="MM_insert" value="bookadd" />
    </form>
  </div>
  <?php
mysql_free_result($bookadd);
?>
<script type="text/javascript">
var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1");
var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2");
var sprytextfield3 = new Spry.Widget.ValidationTextField("sprytextfield3");
var sprytextfield4 = new Spry.Widget.ValidationTextField("sprytextfield4");
var sprytextfield5 = new Spry.Widget.ValidationTextField("sprytextfield5", "integer");
</script>

I cannot see anything wrong with the code that you have supplied. I would place the session_start() line as one of the first lines of code, but in this case I cannot see the relevance of have the session.
The only thing that I can think of is, have you got the correct path in
$insertGoTo = "bookinventory.php";
This means that bookinventory.php is in the same directory as the insert form page.

Similar Messages

  • I cant find my serial code for my free trial

    please help, i've been trying for hours to activate my free trial of creative cloud, however i cant get past the stage of where it requires a serial code. can you please tell me where to find it

    Cloud programs do not use serial numbers... the PAID versions work by using your log in to your paid Cloud account... I have no idea how trial versions work

  • I cant find the printer code on my HP deskjet 3050 J610 all-in-one printer

    I have disconnected wireless and turned off printer and turned on and re connected.  I have changed DNS to 8888 and secondary to 8844.  I have printed out 5 Network configuration pages and 4 Printer status reports and NOTHING has the printer code on it. How can I get one?  Thanx,  Anna
    This question was solved.
    View Solution.

    Hi Anna,
    I afraid the Deskjet 3050 (J610) does not support any web service as ePrint or Print Apps.
    Only the Deskjet 3050A (J611) support ePrint as you may find listed below:
    http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c02814760&cc=us&dlc=en&lc=en&product=5063582&tmp​...
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Cant find errors

    It shows no errors while compiling but says cannot write the file. What could be the cause?
    import java.io.*;
    import java.util.*;
    class ArrAccounts
              public static void main(String[] args)
              String[] oldAccounts = new String[10];
              String[] currAccounts = new String[10];
              try
                        Scanner oldAcc = new Scanner(new FileReader("U:\\oldAccounts.txt"));
                        String data;
                        while(oldAcc.hasNext())
                             data = oldAcc.nextLine();
                             System.out.println(data);
                        oldAcc.close();
                   catch(Exception e)
                             System.err.println("Unable to read file");
                        try
                                  Scanner currAcc = new Scanner(new FileReader("U:\\currAccounts.txt"));
                                  String data;
                                  while(currAcc.hasNext())
                                            data = currAcc.nextLine();
                                            System.out.println(data);
                                       currAcc.close();
                                  catch(Exception e)
                                            System.err.println("Unable to read file");
                        try
                                  writeRecord(oldAccounts,currAccounts);
                             catch(Exception e)
                                       System.err.println("Unable to write file");
              }      //end of main
    public static void writeRecord(String[] old,String[] curr) throws Exception{
    //Write to gradAcc
    BufferedWriter gradAcc = new BufferedWriter(new FileWriter("U:\\gradAcc.txt"));
    gradAcc.write("ID\tName\r\n");
    boolean gradFound = false;
    for(int m=0; m<old.length; m++){
    for(int n=0; n<curr.length; n++){
    if(old[m].trim().equals(curr[n].trim())){
    gradFound = true;
    break;
    if(!gradFound){
    gradAcc.write(old[m] + "\r\n");
    } //end of for loop
    gradAcc.close();
    //Write to newAcc
    BufferedWriter newAcc = new BufferedWriter(new FileWriter("U:\\newAcc.txt"));
    newAcc.write("ID\tName\r\n");
    boolean newFound = false;
    for(int m=0; m<curr.length; m++){
    for(int n=0; n<old.length; n++){
    if(curr[m].trim().equals(old[n].trim())){
    newFound = true;
    break;
    if(newFound){
    newAcc.write(curr[m]);
    newAcc.close();
    } //end of writeRecord
    } //end of class

    You've already posted this question once:
    http://forum.java.sun.com/thread.jspa?threadID=5228351&messageID=9931404#9931404
    Don't post it twice. You're wasting people's time.
    %

  • Can Find my Activation Code

    I have CS6 and had to get my laptop PC rebuilt due to some system error. I grabbed my CS6 software box and CDs but cant find the activation code. Not on box, not on CD sleeve not on CD? It cost me $3K so would actually like to be able to reinstall it.
    I read through some of the forums and tried to follow to support chat but it just took me in a big loop back here. Tried calling Adobe - no phone support
    I would have to say that so far I have found this customer service expereince the worst I have ever had
    Can someone help with suggestions?
    Thanks

    To locate the serial number:
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html
    http://helpx.adobe.com/x-productkb/policy-pricing/serial-number-retrieval-process-faq.html
    https://redeem.licenses.adobe.com/getserial
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • Where do i find the product code for iLife09 and OSX10.X that i bought together (included in the package) with my MacBook?

    hi everybody!
    i want to register iLife and the operating system of my macbook
    i bought it quite some time ago, and never did it before
    the intallation DVD for both were part of the package i bought and included with the computer
    however, i cant find the product codes, since the code on the installation DVDs do not work on the register.apple site
    anyone has a clue where can i find them?
    thanks a lot!!

    Hi Paolo Dema.
    What are the exact spefications of your computer?
    Also did you computer come with 10.6 ot 10.5?.
    You may try entering the MPN (marketing part number) Format: M*****/**
    The MPN can be found on the product packaging or the System Profiler.

  • I have logic pro, soundtrack pro will not open i get an error message what do i do? i cant find the receipts ive checked my library am i looking in the wrong place?

    I have logic pro, soundtrack pro will not open i get an error message what do i do? i cant find the receipts ive checked my library am i looking in the wrong place?

    I get the same kind of thing..
    I'm on osx 10.7.2 and once I click the soundtrack pro icon I get an error message. I had problems with logic pro & my digi002r soundcard midi drivers but now is fixed (using a midi adapter).
    here is the code:
    Process:         Soundtrack Pro [1705]
    Path:            /Applications/Soundtrack Pro.app/Contents/MacOS/Soundtrack Pro
    Identifier:      com.apple.soundtrackpro
    Version:         3.0.1 (960)
    Build Info:      SoundtrackProProject-9600000~277
    Code Type:       X86 (Native)
    Parent Process:  launchd [140]
    Date/Time:       2011-10-18 13:12:05.201 +0200
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:          195725 sec
    Crashes Since Last Report:           3
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      23728D81-590B-4C3A-8C67-1709945CD132
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    Dyld Error Message:
      Library not loaded: /Library/Application Support/ProApps/*/ProFX.framework/Versions/A/ProFX
      Referenced from: /Applications/Soundtrack Pro.app/Contents/MacOS/Soundtrack Pro
      Reason: image not found
    Binary Images:
        0x1000 -   0x7f7ff8  com.apple.soundtrackpro (3.0.1 - 960) <77CF322B-8BBE-AAEA-173F-75A237035319> /Applications/Soundtrack Pro.app/Contents/MacOS/Soundtrack Pro
      0x947000 -   0x94bfe6 +STPInterleave (??? - ???) <E87D1F34-6D97-63DB-454C-CF3D1B03F8E5> /Applications/Soundtrack Pro.app/Contents/Frameworks/STPInterleave.framework/Versions/A/STPInterleave
      0x952000 -   0x98ffff  com.apple.vmutils (4.2.1 - 107) <43B3BFA5-8362-3EBD-B44B-32DCE9885082> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
      0x9a9000 -   0x9f5ffb  com.apple.audio.midi.CoreMIDI (1.8 - 42) <CBD34EBC-0FFD-34B4-B55A-BE1F61EF4BD8> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
      0xa18000 -   0xc3eff7  com.apple.prokit (7.1.1 - 1511) <498819A4-1BDD-3671-8796-E11865BCFBCE> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
      0xd49000 -   0xd49fff  com.apple.iokit.dvcomponentglue (2.0.7 - 2.0.7) <1CFA5944-AB33-3A41-B4D2-4A624A514C0D> /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
      0xd4d000 -   0xd54fff  com.apple.AEProfiling (1.2 - 22) <43A46C32-8E13-82DD-8AF1-2A40690BF810> /Applications/Soundtrack Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
      0xd5e000 -   0xd6dfff  com.apple.AERegistration (1.2 - 77) <5D18C47F-6F9E-0C4C-8875-24A14A97186D> /Applications/Soundtrack Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
      0xd81000 -   0xd83fff  com.apple.ExceptionHandling (1.5 - 10) <6CA9446C-7EF9-35EE-BDF2-AA8D51E93E9E> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
      0xd89000 -   0xe49fff  com.apple.omf_framework (1.1.0 - 1.0) <ED5F21BC-18CD-D7F7-3D2E-F7F856BC0D40> /Applications/Soundtrack Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x11000000 - 0x1102afeb  com.apple.proapps.ControlSurfaceSupport (2.0 - 68) <BD914236-49D8-9C9A-E8D6-CBC1738850B3> /Applications/Soundtrack Pro.app/Contents/Frameworks/ControlSurfaceSupport.framework/Versions/A/ControlS urfaceSupport
    0x8fe88000 - 0x8feba9c7  dyld (195.5 - ???) <134323A7-49DC-3A9D-ACFD-32FAD0FD6BA2> /usr/lib/dyld
    0x90840000 - 0x90992fff  com.apple.audio.toolbox.AudioToolbox (1.7.1 - 1.7.1) <7646E131-08EE-3D72-ADA2-4A61C562B36E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90993000 - 0x90993ff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91e60000 - 0x92036fe3  com.apple.CoreFoundation (6.7.1 - 635.15) <AC9F6462-6315-3D89-8075-D048DB4DBF7E> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x924a8000 - 0x92509ffb  com.apple.audio.CoreAudio (4.0.1 - 4.0.1) <089D78E0-46A6-38DB-9545-7F35CC815939> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93281000 - 0x9328ffff  com.apple.opengl (1.7.5 - 1.7.5) <81166D23-DE8E-3938-AAD3-29B1FA5E446E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93331000 - 0x93331fff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93332000 - 0x93493ffb  com.apple.QuartzCore (1.7 - 270.0) <0916DA83-6400-3FEA-BC53-5F4BA4D126EC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94326000 - 0x9436dfff  com.apple.SystemConfiguration (1.11.1 - 1.11) <CA6CE2B6-DC18-31FF-9668-70BB2FD8D7BB> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94420000 - 0x946a5fe3  com.apple.QuickTime (7.7.1 - 2306) <F8C64DC4-3FE4-3A06-B10B-59E7F3BA6FDD> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x97dd0000 - 0x98082ff7  com.apple.security (7.0 - 55010) <BE0350C5-5221-3BFF-B674-646AB1BA0F2E> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x99d12000 - 0x99d76fff  com.apple.framework.IOKit (2.0 - ???) <D14460ED-2B6C-375D-B3A4-B8C82E922666> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9adc8000 - 0x9adc8fff  com.apple.audio.units.AudioUnit (1.7.1 - 1.7.1) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9aef1000 - 0x9aef1fff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9b2ec000 - 0x9b2ecfff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    Model: iMac12,1, BootROM IM121.0047.B0A, 4 processors, Intel Core i5, 2.5 GHz, 4 GB, SMC 1.71f21
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3231554538424655302D444A2D4620
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3231554538424655302D444A2D4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.58.4-P2P
    Bluetooth: Version 4.0.1f4, 2 service, 18 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD5000AAKS-402AA0, 500,11 GB
    Serial ATA Device: HL-DT-STDVDRW  GA32N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 3
    USB Device: USB to Serial-ATA bridge, 0x04fc  (SUNPLUS TECHNOLOGY CO., LTD.), 0x0c25, 0xfa120000 / 6
    USB Device: iLok, 0x088e, 0x5036, 0xfa130000 / 5
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 7
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: UM-2G, 0x0582  (Roland Corporation), 0x0106, 0xfd140000 / 5
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 3
    FireWire Device: Digi 002Rack, Digidesign, 400mbit_speed
    thanks everyone
    e

  • Problem with JDK 6 update 5 - Error Message says cant find java compiler

    Hi i am a complete beginner to programming and i am having trouble with the latest java development kit. jdk 6 update 5.
    The problem is i have set the path and the program cant find my compiler.
    I have installed the latest java development kit 6 update 5 on my windows xp machine.
    I have created a simple program as shown below:
    class Hello
         public static void main(String[] args)
                   System.out.println("Hello from java");
    saved the file to my desktop as Hello.java
    I have set the path variable like so:
    Go to control panel then click system icon then click advanced tab then click environmental variables.
    Now in system variables the path is shown as this - %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Program Files\Java\jdk1.6.0_05\bin;C:\Program Files\QuickTime\QTSystem\;c:\Program Files\Microsoft SQL Server\90\Tools\binn\
    I then add this to the end;C:\Program Files\Java\jdk1.6.0_05\bin
    This is the location to the things like compiler, applet viewer etc.
    No in the command prompt i type javac Hello.java and i get this error message:
    C:\> javac Hello.java
    javac: file not found: Hello.java
    Usage: javac <options> <source files>
    use -help for a list of possible options
    The jdk is installed properly im sure but it can find my compiler.
    What mistake have i made in setting the path because im guessing that is related to the problem?
    Could someone out there please help me?
    Thank You
    Rafeeq

    saved the file to my desktop as Hello.java
    C:\> javac Hello.javaC:\ is not the desktop!
    The jdk is installed properly im sure but it can find my compiler.Of course it can! It just can't find the file you are trying to compile, because that's not in the root directory.
    I suggest you make a directory C:\java and save your source file there rather than on the desktop. In the command prompt, enter cd \java to make it the current working directory and then enter javac Hello.java.
    @Pravin: The question is about compiling, not running. CLASSPATH has nothing to do with this problem.
    db

  • I have photoshop C6 on my MAC Pro and want to install it on my new MAC desktop.  I sent the files with AirDrop but photoshop wont open I get an error message that it cant find the Library.  Any thoughts?

    I have photoshop C6 on my MAC Pro and want to install it on my new MAC desktop.  I sent the files with AirDrop but photoshop wont open I get an error message that it cant find the Library.  Any thoughts?

    download the installation files and install using your serial number or adobe id,
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.5 (win), 5.5 (mac) | 5.4 (win), 5.4 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • I just update itunes for latest version. Now I can't open it on win 7- 64 bits. I get an erro: Cant find the entry point of the procudere sqlite_wal_checkpoint.. Windows error 127.. help!!!

    I just update itunes for latest version. Now I can't open it on windows 7- 64 bits. I get an erro: Cant find the entry point of the procudere sqlite_wal_checkpoint.. Windows error 127. What can I do...???

    How did you fix this?

  • I upgraded from Dreamweaver CS4 to CS6. but now "an TFP error occured - cannot make connection to host". I spent hours with the host technician and we cant find the error. I reinstalled DW4 and it connects to host perfectly. Anyone else seen this problem?

    I upgraded from Dreamweaver CS4 to CS6. but now when I want to upload I get "an TFP error occured - cannot make connection to host". I spent hours with the host technician and we cant find the error. I reinstalled DW4 and it connects to host perfectly. Anyone else seen this problem?
    Mac OS 10.8.5
    None of these issues are causing the error in DW CS6. We have double checked all of them and we have everything exactly right. Also I have exactly the same SiteSetup in DW CS4 and that works perfectly well. Could there must be factor in 6 that didn't exist in 4? Something that isnt in the SiteSetup but in some hidden dialog box ?
    I can also upload to my host using Fetch, a third party FTP. And as I said DW CS4 works fine. So the problem is not with my host, its with DW CS6 in particular.

    Thank you Jon, that fixed it perfectly. You have saved me from going crazy. The only difference I see now is in "Server Name" it changed what I had entered (my ftp address) to "Remote Server"; which seems odd -- but it works!   Although I know there maybe also some other dialog box I have never seen
    Of course I saw that menu item "Import"  and but I thought thats obviously not for me: "Why would I want to import an entire website?". I did not however see "Export the selected site" for thats only a tiny icon in the footer. However I would have thought the same:  "Why would I want to export my entire website?".
    An observation: I've seen this problem in a lot of Adobe software, the menu-names of items are  obscure, non descriptive. What would be better would be for the menu names or popups to say "Export Site Setup settings" and "Import Site Setup settings"

  • Says that there was an error downloading my purchase and to check for downlads avaiable in store but cant find where?

    I bought a song and as it was downloading an error occured saying that it could be corrupt and could not be downloaded- to look at itunes stores for to check for avavilablity- I cant find where to do that=)

    Yes.  You need to correct the billing descrepancy before you can use the iTunes store.  Write down what error you are getting, and open a support request at expresslane.apple.com for the iTunes store.  They can check the issue and get a solution for you.

  • Im getting a constant error message: "you can't open the application PACE because PowerPC applications are no longer supported". I cant find PACE to delete it?

    Im getting a constant error message: "you can't open the application PACE because PowerPC applications are no longer supported". I cant find PACE to delete it?

    PACE is a rather crappy copy protection software used by the following;
    Antares
    Melodyne
    Cycling 74 Max/MSP/Jitter
    iZotope oZone
    Line6 POD Farm
    McDSP plug-ins (some software purchases include a green iLok key)
    MOTU
    Overloud
    Pro Tools
    Serato
    Virtually all Digidesign (RTAS and TDM) plug-ins
    Virtually all Waves Products
    So if you have any of there, they might be the cause of your problems.
    Allan

  • I bought this os four days before,but unfortunately havent succed to download it,before it give me error and when i go back to my purchase order i cant find its link to download again

    I bought this os four days before,but unfortunately havent succed to download it,before it give me error and when i go back to my purchase order i cant find its link to download again

    You buy one and only one download.
    As it should have been transferred to your computer when you synced, you can contact itunes support and ask for an exception.
    http://www.apple.com/support/itunes

  • Error number 2 and it cant find apple support?

    It keeps sayiong it Cant find Apple support and im downloading it right off the site.
    Why is this happneing.  Keeps giving me error 2. Not a clur what that is

    With the Error 2, let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

Maybe you are looking for

  • SharePoint 2013 Anonymous (public) site and Office Web Apps Server 2013 issue with download.aspx

    Our organization has a public facing anonymous site in SharePoint 2013 which allows access to documents (docx) in a library.  ViewFormsLockdown is activated as we present the documents via CQWP / custom template.  We are combating the usual issue of

  • Free Item in Purchase Order Item

    Hello All, I would like to ask where in table level can I identify Purchase Orders which have "Free Item".  Because on the screen field i saw from the technical definition that the "Free Item" is of field MEPO1211-UMSON, but when I go to EKPO I canno

  • I cant connect my ipad3 to Windows8 anymore

    it connected last November but when I try it now, all it does is pop up a Windows Explorer window showing my iPad. It doesn't open iTunes. Even if I have iTunes open, it doesn't display my iPad.

  • Oracle 9i Authid problem

    Hi, We are using Oracle9i, we created a package using authid as current_user. while executing a procedure in the package, we are getting table or view does not exist. When I tried to debug I found that while inserting into one table it is giving this

  • Recurring digital camera raw compatibility update offer

    Hi for the last few months I keep getting an update offer for digital camera raw. I haven't got a compatible camera, I have even clicked on the update thinking that would be the end of it, but I am offered the update time and again. Now it not a majo