Error message when opened in browser - Parse error?

I'm having this problem when I use the image upload server behavior in my PHP file.  Anyone have an explanation of this error when I open it into a browser?
Also there is a red exclamation point next to the server behavior.  Is there a place in Dreamweaver that tells me where the error is occuring (like in Flash)?
Parse error:  syntax error, unexpected $end in .......line 308
Thanks for your help!

I tried the Balanced Bracket in Dreamweaver with no luck.  I feel like I'm flying blind but I'm trying to work through this.  Since I couldn't attach the file, I decided to paste it here.  Thanks so much.
<?php require_once('Connections/users.php'); ?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" enctype="multipart/form-data" name="upload" id="uploadform">
  <?php
  if($message_default){echo '<span style="color:'.$color.';" class="uploadtop">'.$message_default.'</span><br />';}
  if($UPFILES[0]){echo '<span style="color:'.$go_color.';" class="uploadgo">'.$message_go.'</span><br />';}
  for($x=0;$x<$inputfiles;$x++){
      if($UPFILES[$x]){echo $UPFILES[$x].'<br />';}
  if($showErrors){
      if($UPFILES[0]){echo '<br />';}
          echo '<span style="color:'.$error_color.';" class="uploaderrors">'.$message_error.'</span><br />';}
  for($x=0;$x<$inputfiles;$x++){
      if($errorfiles[$x]){
        echo $errorfiles[$x].'  <span style="color:'.$error_color.';" class="uploaderror">('.$errormesage[$x].')</span><br />';}
    if($errorthumbfile[$x]){
        echo $errorthumbfile[$x].'  <span style="color:'.$error_color.';" class="uploaderror">('.$errorthumbmessage[$x].')</span><br />';}
  /*start dynamic form*/
  for($x=0;$x<$inputfiles;$x++){
  ?>
  <input name="file<? echo $x;?>" type="file" class="fileUp" />
  <br />
  <? } /*end dynamic form*/ ?>
  <input type="submit" name="submit" value="Upload" />
</form>
<?php
/* *** start upload script *** */
$upload_dir="images";
$extensions_allowed="jpg,jpeg,gif"; // e.g. "jpg,gif,png,pdf"
$max_size="1000000"; // 1000000 = 1MB
$max_height="400";
$max_width="400";
$default_color='#000000';
$error_color='#FF0000';
$go_color='#00CC00';
$inputfiles="1";
$overwrite='true';
$rename='';
$rename_new=(!empty($_POST['newfilename']))?$_POST['newfilename']:'';
$rename_post='_#';
$resizePic='';
$new_width="600";
$new_hight="450";
$makeThumbs='';
$thumbDir='thumb';
$thumbPrefix='tb_';
$thumb_width="150";
$thumb_hight="100";
$insert_db='';
$insert_tb='';
$updateRec='true';
$sqlId="$";
$message_default="Choose file(s):";
$message_go="This files were uploaded:";
$message_error="This problems occurred:";
$error_filesize="Filesize too big";
$error_picsize="Imagesize too big";
$error_nothumb="No thumbnail created";
$error_noupload="Upload failed";
$error_ext="Wrong file extension";
$error_overwrite="File already exists";
$error_db="File path couldn't stored in database";
$error_nodir="Couldn't create upload folder";
function rmkdir($path, $mode = 0777) {
    $path = rtrim(preg_replace(array("/\\\\/", "/\/{2,}/"), "/", $path), "/");
    $e = explode("/", ltrim($path, "/"));
    if(substr($path, 0, 1) == "/"){$e[0] = "/".$e[0];}
    $c = count($e);
    $cp = $e[0];
    for($i = 1; $i < $c; $i++) {
        if(!is_dir($cp) && !@mkdir($cp, $mode)) {
            return false;
        $cp .= "/".$e[$i];
        chmod($e[$i], 0777);
    return @mkdir($path, $mode);
function addColumn($colName) {
    global $users,$database_users;
    mysql_select_db($database_users, $users);
    $query = ("SHOW COLUMNS FROM images = '$colName'");
    $result1 = mysql_query($query, $users);
    $rarray = mysql_fetch_array($result1);
    if (NULL == $rarray[0]) {
        $query = ("ALTER TABLE images ADD COLUMN $colName VARCHAR(255) NOT NULL");
        $result = mysql_query($query, $users);
    return $result;
function sql_protect($sCode) {
    if (function_exists("mysql_real_escape_string")) {
        $sCode = mysql_real_escape_string($sCode);
    }else{
        $sCode = addslashes($sCode);
    }return $sCode;
function sql_insert($path,$thumbpath) {
    global $users,$insert_tb,$database_users,$updateRec,$x,$sqlId;
    $path1=str_replace('//', '/',sql_protect($path));
    $thumbpath1=str_replace('//', '/',sql_protect($thumbpath));
    $sqlId=sql_protect($sqlId);
    mysql_select_db($database_users, $users);
    if($updateRec){$col='file_'.$x;$tbcol='tbfile_'.$x;}else{$col='file_0';$tbcol='tbfile_0'; }
    if($thumbpath && $insert_tb){   
        addColumn($col);addColumn($tbcol);
        if($updateRec){
        $insertSQL="UPDATE images SET $col='$path1', $tbcol='$thumbpath1' WHERE image1 = '$sqlId'";
        }else{
        $insertSQL="INSERT INTO images ($col, $tbcol) VALUES ('$path1', '$thumbpath1')";}
    }else{
        addColumn($col);
        if($updateRec){
        $insertSQL="UPDATE images SET $col='$path1' WHERE image1 = '$sqlId'";
        }else{
        $insertSQL="INSERT INTO images ($col) VALUES ('$path1')";}
    $query =  mysql_query($insertSQL, $users);
    return $query;
function createthumb($name,$filename,$new_w,$new_h){
    if (preg_match("/jpg|jpeg|JPG|JPEG/",$name)){$src_img=imagecreatefromjpeg($name);}
    if (preg_match("/png|PNG/",$name)){$src_img=imagecreatefrompng($name);}
    $old_x=imageSX($src_img);
    $old_y=imageSY($src_img);
    if($old_x<=$new_w){$new_w=$old_x;}
    if($old_y<=$new_h){$new_h=$old_y;}
    if ($old_x > $old_y){
        $thumb_w=($new_w<=$new_h)?$new_w:$old_x/($old_y/$new_h);
        $thumb_h=($new_w<=$new_h)?$old_y/($old_x/$new_w):$new_h;
    if ($old_x < $old_y){
        $thumb_w=($new_h<=$new_w)?$old_x/($old_y/$new_h):$new_w;
        $thumb_h=($new_h<=$new_w)?$new_h:$old_y/($old_x/$new_w);
    if ($old_x == $old_y){
        $thumb_w=($new_w<=$new_h)?$new_w:$new_h;
        $thumb_h=($new_w<=$new_h)?$new_w:$new_h;
    $dst_img=ImageCreateTrueColor($thumb_w,$thumb_h);
    imagecopyresampled($dst_img,$src_img,0,0,0,0,$thumb_w,$thumb_h,$old_x,$old_y);
    if (preg_match("/png|PNG/",$name)){
        imagepng($dst_img,$filename);
    } else {
        imagejpeg($dst_img,$filename);
    imagedestroy($dst_img);
    imagedestroy($src_img);
if ($_POST['submit']=='Upload') {
$stop2 = false;
$upload_dir=($upload_dir)?$upload_dir:'./';
if(!is_dir($upload_dir)){
    if(rmkdir($upload_dir, 0777)/*$stop2==true*/){
        $stop2=false;
    }else{
        $errorfiles[]=' ';$errormesage[]=$error_nodir;$stop2=true;
    }/*rmkdir*/
}/*!is_dir*/
if(!$stop2){
for($x=0;$x<$inputfiles;$x++){
    $ok = false;
    $stop = false;
    if($_FILES['file'. $x]['name']) {$message_default='';}
    $akt_filename=$_FILES['file'. $x]['name'];
    $extension = pathinfo($_FILES['file'. $x]['name']);
    $extension = strtolower($extension[extension]);
    $allowed_paths = explode(",", $extensions_allowed);
    for($i = 0; $i < count($allowed_paths); $i++) {
        if ($allowed_paths[$i] == "$extension") {
            $ok = true;
        if($rename && $akt_filename){
        switch ($rename_post) {
             case "_#":$rename_post = '_'.$x;break;
            case "#":$rename_post = $x;break;
            default:$rename_post = '_'.$x;}
        $akt_filename=$rename_new.$rename_post.'.'.$extension;
if(!$overwrite && is_file($upload_dir.'/'.$akt_filename)){
    $errorfiles[]=$akt_filename;
    $errormesage[]=$error_overwrite;
}else{
  if ($ok){
    if($_FILES['file'. $x]['size'] > $max_size)
        $errorfiles[]=$akt_filename;
        $errormesage[]=$error_filesize;
    }else{
        if ($max_width && $max_height) {
            list($width, $height, $type, $w) = getimagesize($_FILES['file'. $x]['tmp_name']);
            $max_width=($max_width)?$max_width:1000000;
            $max_height=($max_height)?$max_height:1000000;
            if($width > $max_width || $height > $max_height)
                $errorfiles[]=$akt_filename;
                $errormesage[]=$error_picsize;
                $stop=true;
            } /*max_width - max_hight*/
        }/*$max_width && $max_height*/
        if(!$stop){
                /*Upload the file*/
                if(is_uploaded_file($_FILES['file'. $x]['tmp_name']))
                    move_uploaded_file($_FILES['file'. $x]['tmp_name'],$upload_dir.'/'.$akt_filename);
                    if($resizePic){
                        $uploaded_file=$upload_dir.'/'.$akt_filename;
                        createthumb($uploaded_file,$uploaded_file,$new_width,$new_hight);
                    if($makeThumbs){
                        if($thumbDir){mkdir($upload_dir.'/'.$thumbDir, 0777);chmod($upload_dir.'/'.$thumbDir, 0777);}
                        $t_filename=($thumbDir)?$akt_filename:$thumbPrefix.$akt_filename;
                        $t_path=($thumbDir)?$upload_dir.'/'.$thumbDir.'/':$upload_dir.'/';
                        if(preg_match("/jpg|jpeg|png|gif|tif|ico/",$extension)){
                            createthumb($upload_dir.'/'.$akt_filename,$t_path.$t_filename,$thumb_width,$thumb_hight);
                        if(!is_file($t_path.$t_filename)){
                            $errorthumbfile[]=$t_filename;
                            $errorthumbmessage[]=$error_nothumb;
                     }/*make tumbs*/
                    if(is_file($upload_dir.'/'.$akt_filename)){
                        $UPFILES[]=$akt_filename;
                        if($insert_db){
                            if($makeThumbs && is_file($t_path.$t_filename)){
                                if(sql_insert($upload_dir.'/'.$akt_filename,$t_path.$t_filename)!=1){
                                $errormesage[]=$error_db;$errorfiles[]=$akt_filename;}
                            }else{
                                if(sql_insert($upload_dir.'/'.$akt_filename,'')!=1){
                                $errormesage[]=$error_db;$errorfiles[]=$akt_filename;}
                        }/*insert_db*/
                    }else{
                        $errorfiles[]=$akt_filename;
                        $errormesage[]=$error_noupload;
                    }/*if_file*/
                }/*is_uploaded_file*/
        }/*stop*/
    }/*max_size*/
} else {
    $errorfiles[]=$akt_filename;
    $errormesage[]=$error_ext;
  }/*ok*/
}/*overwrite*/
}/*end of loop*/
}/*!stop2*/
} else {
    $message_def=$message_default;
    $color=$default_color;
for ($i=0; $i<count($errorfiles) ;$i++) {if ($errorfiles[$i]) {$showErrors=true;}}
for ($i=0; $i<count($errorthumbfile) ;$i++) {if ($errorthumbfile[$i]) {$showErrors=true;}}
/* *** end upload script *** */
?>
<!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" />
<title>Untitled Document</title>
</head>
<body>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" enctype="multipart/form-data" name="upload" id="uploadform">
  <?php
  if($message_default){echo '<span style="color:'.$color.';" class="uploadtop">'.$message_default.'</span><br />';}
  if($UPFILES[0]){echo '<span style="color:'.$go_color.';" class="uploadgo">'.$message_go.'</span><br />';}
  for($x=0;$x<$inputfiles;$x++){
      if($UPFILES[$x]){echo $UPFILES[$x].'<br />';}
  if($showErrors){
      if($UPFILES[0]){echo '<br />';}
          echo '<span style="color:'.$error_color.';" class="uploaderrors">'.$message_error.'</span><br />';}
  for($x=0;$x<$inputfiles;$x++){
      if($errorfiles[$x]){
        echo $errorfiles[$x].'  <span style="color:'.$error_color.';" class="uploaderror">('.$errormesage[$x].')</span><br />';}
    if($errorthumbfile[$x]){
        echo $errorthumbfile[$x].'  <span style="color:'.$error_color.';" class="uploaderror">('.$errorthumbmessage[$x].')</span><br />';}
  /*start dynamic form*/
  for($x=0;$x<$inputfiles;$x++){
  ?>
  <input name="file<? echo $x;?>" type="file" class="fileUp" />
  <br />
  <? } /*end dynamic form*/ ?>
  <input type="submit" name="submit" value="Upload" />
</form>
</body>
</html>
O

Similar Messages

  • Error message when opening 2nd browser

    When opening a 2nd Safari 3.1 browser for Windows for a 2nd monitor, I get the following Safari.exe- application error message:
    The instruction at "0x10004dbf" referenced memory at "0x0000000". The memory could not be "read". Click ok to terminate program.
    I click "OK" and the message goes away, though the browser remains and works just fine. How do i get this error message to stop popping up every time I open an additional Browser window?

    Same problem here, but different message:
    Safari.exe - Application Error
    The instruction at "0x129b371b" referenced memory at 0x000000000". The memory could not be "read."
    I'm an Apple user at home, no problems there. This is happening on my PC at work: Compaq nx5000, Intel Pentium M, 504MB RAM, Windows XP Professional SP2

  • Error message when opening File Browse

    I get this message "Error2: Photoshop is undefined. Line:1 - photoshop.invokeBridge (false, false)". Anyone know what the issue is here? THANKS in advance.

    Can you send me a copy of your file at [email protected] and include a link to this thread? If it's too big for e-mail (>20 mb) you could use a service like SendThisFile, WeTransfer or Adobe SendNow.
    Most of Adobe in North America is shutdown this week and I'll be away from my computer much of the day but will take a look at your file as soon as I can.

  • Error message when opening adobe premier 10 saved film file , this file is not supported or required codec not installed

    Hi
    Can any one help, keep getting error message,error message when opening adobe premier 10 film file , this file is not supported or required codec not installed,
    Thanks
    Colin65

    Steve,
    Not to sure what type AVI files they are, the storage devise is at present offshore on a job.
    Can you clarify, if you edit/import video footage with adobe premiere 10 and then create a file, the file or the original raw footage is not stored on computer for re-use, if it is stored, is it stored in the original format.
    Also please find details of storage devise,
    Dogcam Portable Media Center PMC-500r
    Quick DetailsModel Number:PMC-500R
    SpecificationsPMC-500R20G/40G Portable Multimedia PlayerPMC-500R 20G/40G Portable Multimedia Player, Supports
    PMC-500R20G/40G Portable Multimedia PlayerPMC-500R 20G/40G Portable Multimedia Player, Supports MPEG-4 File FormatsKey Specifications/Special Features:Video recorder: supports digital video recoding in MPEG4 from Line-in Video playback: supports MPEG4 (AVI), MPEG1 (.MPG), DVD (MPEG2,.VOB) Supports MPEG4 with 720 x 480 at 30 Frames/s MPEG4 movie playing with Fast Forward, Fast Reverse, Time search function Music playback: supports MP3, WMA, WAV Music playing with play list function MP3 ID3 information and sorting, LRC Music playing with repeat, shuffle playing function Photos view: supports JPEG and slide show, rotate, nail view Easy backup of photos in digital camera -USB OTG technology Audio recording: continues recording for over 40 hours High resolution output for HDTV (Y, U, V output; 704 x 480 (N) or 704 x 576 (P), at 25/30 frames/s) Super dlim size: 126 x 79 x 22.5 mm Games E-book with bookmark, auto turning page, page search function File browser function with Copy, Delete, HDD capacity information With 3.5" LCD QVGA TFT panel (960 x 240) Long time battery running (over 5 hours for video, and 9 hours for audio) 1.8" 20G/40G storage capacity High fidelity sound with good earphoneCompass Electronics Co.,

  • I am getting a 42404 error message when opening itunes and itunes will not let me connect my iphone to it trying to get me to restore. I need help?

    I am getting a 42404 error message when opening itunes and itunes will not let me connect my iphone to it trying to get me to restore. I need help? I am not that technically inclined and really simple terms  are appreciated.

    Try downloading the songs from a different device. If you are doing it from your iOS device, try form your computer.

  • Error Message when open iTunes -42032. What can I do?

    Error Message when open iTunes -42032. What can I do?

    Try 2 solutions: 1.  Press both Ctrl and Shift keys then double click on ITunes.  Hold keys down until a box appears on screen indicating ITunes is starting in "safe mode'.  left click on 'continue" and ITunes will run without closing.
    2;  Start ITunes normally, then  after loading, choose "Match" and then touch "stop" beforre step 3 , Uploading songs...",  runs for more than a few seconds.  The code problems are in Match;  the uploading function in Match.  ITunes won't crash if you stop Match soon enough!

  • Error message when opening a document "this document is being used by another user

    error message when opening a document "this document is being used by another user, do you want to make a copy?
    I select yes, then new message - word can not open this document.the document might be in use or it may not be an invalid document.
    Any suggestions?

    Hello MrNeuf,
    I would recommend releasing and renewing the IP lease on the affected computer. The following article provides further information and details the process of doing so.
    Mac OS: How to release and renew a DHCP lease
    http://support.apple.com/kb/TS1920
    Cheers,
    Allen

  • Error message when opening CS6 files in earlier versions

    PSCS6 with 12.0.4 update.  Mac OSX 10.8.2   16GB 1333 Mhz DDR3  543 GB Available
    I've recently become aware that other people are getting an error message when opening many of my my psd files if they are on earlier versions of PS and also on PSE, (including the latest version).  The message is:
    This document contains unknown data which will be discarded to keep layers editable.  To preserve the original appearance instead, choose flatten to load composite data as a flattened image. 
    Three options follow:  Flatten  Cancel  Keep Layers
    When 'keep layers' is selected the file opens as normal.  However, people with much earlier version (CS version 8) don't get the option to keep layers, and the layers are flattened when the document is opened.
    I still have CS5 on my mac, and I find that if I take my finished file into CS5 and save it there, the customer does not get the message above, and the file behaves as it should.  Those on very early version of PS can also open the files without any issues. 
    I've been using CS6 since it was released and have had to delve through all my files and save them in CS5.  Not every file is affected and I've been unable to find a common thread.
    Hoping someone can throw some light on this.

    This similar to the message one should get in an older version of photoshop such as photoshop 7.
    If one presses ok instead of read composite that might preserve the layers with the original look.
    But sometimes if a layer blending mode or some other feature is used an earlier versions of photoshop doesn't have, reading the composite is the only way to preserve the look of the image.
    You said your using shape layers?
    If they are shape layers you didn't use a stroke from the tool options bar?
    Can you post an example of the image with the layers panel visible that you get that message with?
    I guess your using photoshop cs6 with the 13.01 update?

  • Error message when opening Photoshop CC

    For the last month, I've been getting an error message when opening Photoshop CC that says:
    "Could not load actions because an unexpected end-of-file was encountered"
    I've been having to go back and use CS5 in order to get anything accomplished between this and my plugins not showing up (post about plugins in another thread).

    See my reply #1 in your other thread http://forums.adobe.com/thread/1419961?tstart=0

  • I had to reinstall CS4 and now have error messages when opening bridge and photoshop

    The error message is "The specified module could not be found. C:\Program Files (x86)\Common Files\Adobe\Adobe Version Cue CS4\Client\4.0.1\Version Cue.DLL

    I tried what you suggested and it did not help.  whenever I try to open either photoshop or bridge, I get a message saying that there was a problem loading scripts the last time that Bridge was open and do I want to try loading them again?  If I click yes, I get that same error message that I reported in my original question and photoshop/bridge will immediately close.  If I click no, photoshop and bridge will open but it will not let me open a raw format document.  It seems like Adobe Camera Raw is not being recognized.   One of the updates I downloaded was an update to Adobe Camera Raw so the functionality is there, it just can't be accessed.  do you think I should try to uninstall and re-install Photoshop again?
    Date: Mon, 3 Sep 2012 19:48:31 -0600
    From: [email protected]
    To: [email protected]
    Subject: I had to reinstall CS4 and now have error messages when opening bridge and photoshop
        Re: I had to reinstall CS4 and now have error messages when opening bridge and photoshop
        created by Arpit Kapoor in Downloading, Installing, Setting Up - View the full discussion
    Go To Help->Updates and install the latest update. It should work.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4670793#4670793
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4670793#4670793. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • HT2041 I receive an error message when opening up a downloaded program as "Safari can't open the file because no availabel application can open it". Not sure what exactly this means or what I have to do!

    I receive an error message when opening up a downloaded program "safari can't open the file because no available application can open it" I am not sure what I need to do to get these programs open!

    What is the file?
    Where did you get it from?
    Allan

  • Fatal Error Message when opening PhotoshopCS4

    I am receiving a fatal error message when opening photoshop cs4. "Fatal Error -Missing Component (/Library/Application Support/Adobe/Adobe Version Cue CS4/Client/4.0.0/VersionCue.framework" I was recently using the trial version of Photoshop CS5.1 but that trial period has ran out. Now I cannot open my file in CS4. Within that trial period, I also switched from using Snow Leopard to Lion OS. Could anyone shed some light on the issue?! I need to get some work done!

    See my reply #1 in your other thread http://forums.adobe.com/thread/1419961?tstart=0

  • I always got error message when opening BlackBerry App World using 3g

    Hi there, I always got error message when opening BlackBerry App World using 3g network, but it's fine if I open it through wifi network. Does anyone ever had the same problem and how to fix it? Thanks.

    You need the latest version of BlackBerry World installed on your smartp

  • Error message when opening FF: can't create mcafee plug-in object: TypeError: Components.classes[cid] is undefined

    I can click ok and firefox will open, but it's still odd... I get the same message when opening any kind of pop-up window.

    This issue is most likely caused by a McAfee extension that isn't working properly and you will have to disable the extension that causes it.
    You can also check if there is an update available from McAfee that fixes this problem.

  • Message when opening VI "LABVIEW: VI not loadable

    I am receiving a message when opening my VI:  "VI not loadable".
         The message box is attached in a Word document.
         The VI is also attached.
    This VI was working this morning.
       It uses DAQmx to acquire data from 3 load cells.
       The data was displayed using a dial and numeric indicator for each channel.
        Then I added a waveform chart to the front panel.
         The chart history was at 1024. The chart worked, but the history was too short.
         The VI was shut down.
    An hour later:
        I opened the VI and changed the chart history length from 1024 to 2100000000.
        The Vi was closed without testing the VI.
    The next time I tried to open the VI, I got the message the VI was not loadable.
       The message also said "Could not load the default data".
    Did I cause the problem by entering a huge number in the chart history length?
    If I can't open the VI, how can I begin to fix it?
      The VI is not an executable.
      The VI has been opened on only one computer.
    I am using Labview 8.0.
    Thanks,
    Bill
    Solved!
    Go to Solution.
    Attachments:
    VI not loadable.doc ‏26 KB
    NC Zulu Wire Movement.vi ‏131 KB

    Hi Kevin,
    You were right. It is an issue with not having enough memory.
    The problem was caused my me and my haste to close the VI and ignoring the messages.
    Here’s how I recreated the problem using a different VI.
         Open the attached VI
         Change the chart history length to 2100000000.
         Save the VI.
         Run arrow goes from solid to broken.  (I missed this the first time it hapened)
         The error list says “You must make more memory available for LabVIEW to generate the code for this VI.”
    Exit Labview
    At this point, a popup window says an error has occurred and Labview will be shut down.
    Thanks for your help. 
    Bill
    Attachments:
    Data Acquisition .vi ‏365 KB

Maybe you are looking for

  • Problem starting Repository Browser Service on Windows Server 2008

    Using the default Warehouse Builder installation in the 11g (11.1.0.7.0) databaseinstallation on a clean Windows Server 2008 64-bit installation. Warehouse Builder installed and populated ok, OWB client works fine etc. When trying to start the Reposi

  • Running exe file

    Hello, Is there any way that i can run exe file from wd application ? I will appreciate any answer or hint. thanks in advance, Ofer.

  • All icons on desktops keep flashing

    I have a 500GB transcend external hard drive. It used to work totally fine with Mac OS X Snow Leopard until a few days ago. When I plugged the hard drive in, all icons on desktop keep flashing every 3 seconds. When I open my hard drive, it disappeare

  • Re: Invalid user ID/Password with OVI Sync

    I have same problem on my 5800xm. When I try to sync to OVI server from phone with WIFI. Can anyone help me? Message Edited by spark11 on 22-May-2009 01:04 PM

  • Can I safely delete the backup on my iPhone?

    I recently upgraded from an iPhone 4 to an iPhone 6. I backed up my 4 to my computer and then transferred all the info from it (contacts, etc) to my 6. But the backup of the 4 is still on my iPhone 6 and since it's taking up a lot of space I'd like t