error-message

how to solve problem exit status with 10 in device?

I have implemented pdf reader application for ipad.Its working fine in simulator.But its terminated in device with exit status 10.I done know whats happning.Please help me solve this problem. Thanks in advance. ...

Starting MySQL Error on Snow Leopard

I just erased and re-installed Snow Leopard. I installed MySQL 5.1.48 64-bit clean. I'm having issues with the MySQL server... when I boot the computer and log in, the server is not running. I tried to start it using the preference pane by clicking "Start MySQL Server", but all it did was highlight the button blue and think for like a mi...

Reading and writing to an XML - DTD error

I have a program where it reads and writes XML using XMLReader and XMLWriter XmlWriter writer = XmlWriter.Create(fullpath, settings); //content... writer.Flush(); writer.Close(); and my reader code XmlReader reader = XmlReader.Create(fullpath); while (reader.Read()) { switch(reader.NodeType) {...

Classic ASP Sending errors to browser does not work on IIS7 for remote connections

I can’t get detailed error reporting for IIS7 for ASP pages on a remote browser connection. However, when I run the page locally on the server I do see a detailed error message. I have enabled Send Errors To Browser but IIS keeps sending an internal server error. I have unchecked show friendly HTTP error messages on IE. Does anyone kn...

C++ simple string replace, non complicated code, but producing crazy error

First, thank for you all your help! The error I am getting is: Unhandled exception at 0x7c812afb (kernel32.dll) in Readerboard.exe: Microsoft C++ exception: std::out_of_range at memory location 0x0012f8a8.. I have found the problem to be with this line: str.replace(str.find(sought), sought.size(), replacement); It is lo...

Eclipse on Windows 7

Every time I open eclipse Galilio on Windows 7 64bit this message appear and it won't work ------------------------------------------------------------------------------------- Faild to load the JNI shared library "C:\Program Files(x86)\java\jre6\client\jvm.dll" ---------------------------------------------------------------------------...

Why is my custom CodeIgniter library failing with a rather confusing error message?

Hi folks! So I've put together this CodeIgniter library to encrypt stuff into Base62 and decrypt it back again. Just before anyone asks, the file is application/libraries/Basecrypt.php Here's the contents of Basecrypt.php: <?php if (!defined('BASEPATH')) exit('No direct script access allowed'); class Basecrypt { funct...

Need Help w/ Annoying Makefile Errors -- g++: g++ and shell errors -- and Multi-Makefile Design Advice

I have a makefile: #Nice, wonderful makefile written by Jason CC=g++ CFLAGS=-c -Wall BASE_DIR:=. SOURCE_DIR:=$(BASE_DIR)/source BUILD_DIR:=$(BASE_DIR)/build TEST_DIR:=$(BASE_DIR)/build/tests MAKEFILE_DIR:=$(BASE_DIR)/makefiles DATA_DIR:=$(BASE_DIR)/data DATA_DIR_TESTS:=$(DATA_DIR)/tests MOLECULE_UT_SOURCES := $(SOURCE_DIR)/molecule_tes...

Oracle temporary table access error

I have a GLOBAL TEMPORARY table in Oracle. It uses ON COMMIT DELETE ROWS. One of the columns in the table is an XMLType column. I have used GLOBAL TEMP tables quite a bit...with success. However, after introducing the XMLType columne and running a function against the TEMP table I get this error message: ORA-14453: attempt to use a ...

"Error converting data type varchar to numeric." - What column?

I have a huge INSERT-statement with 200 columns and suddendly I get the dreaded Error converting data type varchar to numeric. Is there somewhere I can see the actual column that contains the "varchar" value? I know I can remove one of the columns at a time until the error disappears, but it's very tedious. ...

Android Launch - Inexplicable error

I am developing an Android application, I was doing just fine then I made some changes to the code. Everything went fine, no error messages, until I ran the code. Then I get this in a popup dialog. Your project contains error(s), please fix them before running your application The title of the popup dialog is "Android Launch". I know t...

Calling a user defined scalar function from a sql program

I am still really new to SQL functions. I am trying to figure out how to use the in a SQL program properly. I am wanting to test scalar UDF's that I have created to see that the return the data correctly and can return a large quantity of data in order. I am not sure what is wrong with my syntax in the SQL to use the function as this is...

Nginx problem - failed (20: Not a directory)

I have some rewrites for the SMF forum and they work just fine. The problem I'm having is that they are filling up my error log with "failed (20: Not a directory)" messages. My rewrites are : location /forum/ { root /usr/www-data/domain.com/httpdocs; if (!-e $request_filename) { rewrite ^/index\.php/([a-z]...

What does "Error: Illegal declaration of subroutine" signify?

I got an error from my Perl module "Error: Illegal declaration of subroutine". What does that mean? I tried googling for it and got the following unhelpful information: There is a new compilation error, Illegal declaration of subroutine, for an obscure case of syntax errors. The code which caused the error is like this (trunca...

How can I get rid of this ruby warning?

I have just installed ruby 1.9.1-p429 with macports. Every time I use it, it displays this error message: $ ruby1.9 -e "puts 'hi.'" Error loading gem paths on load path in gem_prelude can't modify frozen string <internal:gem_prelude>:69:in `force_encoding' <internal:gem_prelude>:69:in `set_home' <internal:gem_prelude>:38:in `dir' <inter...

OpenJUMP Error: Relation does not exist

I am trying to open a dataset through a data store layer in OpenJUMP. I have successfully made the connection to the project that I have created with Postgres. However, when I select the dataset that should be loaded, OpenJUMP gives an error message saying that the relation does not exist (Runtime Exception, PSQL Exception) What could be...

Error when try consuming WCF service in Silverlight app

I have error in Silverlight app: An exception occurred during the operation, making the result invalid. Check InnerException for exception details. at System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary() at SecretaryAppNav.ServiceReference1.GetChildByFirstnameCompletedEventArgs.get_Result() ...

custom cakephp error messages not showing

I have created a custom page for error messages in my web application. I have created these two files in the views/errors/ directory named 'missing_action.ctp' and 'missing_controller.ctp'. On server the error message is shown as follows: and on localhost the error is shown properly like as follows: I want to show the error messag...

PostgreSQL Error: geometry contains non-closed rings

I am desperately trying to backup using pgAdmin III my database and I receive an error: geometry contains non-closed rings. How can I get around this?? ...

How to add messages to a class with addClassRules

I'm using jQuery Validate to validate a page with a large number of repeated rows of data. Due to limited space, each row has it's own validation summary. I use addClassRules to apply the validation rules to the page but the default error messages are too generic in the summary (e.g. "Field is required, Field is required etc). Example...