error

ASP Weird Unspecified Error - 80004005

Hello, I had to work on an already made website, just adding some small module While i was updating, there was many files called myDB.mdb in the different subfolders i wanted to make sure that my app is connecting the right database so i started renaming subfolder...at one of those subfolders, i refreshed,the main site and mine stopped ...

PHP: exceptions vs errors?

Maybe I'm missing it somewhere in the PHP manual, but what exactly is the difference between an error and an exception? The only difference that I can see is that errors and exceptions are handled differently. But what causes an exception and what causes an error? ...

Getting error running selenium tests

this is the error i'm getting when i tried to run my selenium script through a build.xml on a network server @BeforeTest Setup java.lang.RuntimeException: Could not start Selenium session: Internal Server Error at com.thoughtworks.selenium.DefaultSelenium.start(DefaultSelenium.java:89) at com.doubleclick.richmedia.selenium.InpageEndT...

Why do I get this compile error in Java?

Hello all, I get the following error: quicksort(int[],int,int)cannot be applied to(int[]) When I compile this: import java.util.*; public class Sort { public static void main(String[] args){ Random rand = new Random(); int[] tab = new int[10]; for(int i = 0; i < tab.length; i++) { tab[i] = rand.nextInt(100); System.out.println(...

PHP: Can't find syntax error

Parse error: syntax error, unexpected $end in blah/blah/blah.php line 1 This is the error that I receive, with this code <?php include("db.php"); if (isset($_POST['username']) && isset($_POST['password']) && isset($_POST['email'])) { //Prevent SQL injections $username = mysql_real_escape_string($_POST['username']); ...

How to get useful error messages in PHP?

I find programming in PHP quite frustrating. Quite often I will try and run the script and just get a blank screen back. No error message, just empty screen. The cause might have been a simple syntax error (wrong bracket, missing semicolon), or a failed function call, or something else entirely. It is very difficult to figure out what w...

Rails error "NoMethodError" - My first ruby app

Hi, I am absolutely and totally new to rails, so the answer is probably very simple. Here goes: My page is generating this error NoMethodError in Tasks#new Showing app/views/tasks/new.erb where line #3 raised: undefined method `tasks_path' for # Here is the view: <% form_for(@task) do |f| %> <%= f.error_messages %> <%= f...

"Length of the data to decrypt is invalid." exception during Rijndael decryption

I get "Length of the data to decrypt is invalid." exception when i try to decrypt a memory stream. I am beginner, cant figure out whats wrong. whats wrong? public bool EncryptStream() { string password = @"myKey123"; // Your Key Here UnicodeEncoding UE = new UnicodeEncoding(); byte[] key = UE.GetBytes(passwo...

Eclipse WTP update Error . What to do Next ?

Hi, I just unzipped the eclipse ganymede (eclipse 3.4.1) zip file (basic platform) and tried to install Webtools (WTP) via its update site. But it reports an error like .. Cannot complete the request. See the details. WST Common UI is already installed, so an update will be performed instead. WST Common Core is already installed, so a...

Simple threading in Python 2.6 using thread.start_new_thread()

I'm following a tutorial on simple threading. They give this example and when I try to use it I'm getting unintelligible errors from the interpreter. Can you please tell me why this isn't working? I'm on WinXP SP3 w/ Python 2.6 current import thread def myfunction(mystring,*args): print mystring if __name__ == '__main__': tr...

Unable to update snapshots or run the install goal with Maven

Does anyone have an idea how to resolve this Maven error? I get the following when I attempt to update my project's snapshots: Build errors for my-projects-name; org.apache.maven.lifecycle.LifecycleExecutionException: Internal error in the plugin manager executing goal 'org.apache.maven.plugins:maven-dependency-plugin:2.0:u...

Workarounds for JavaScript parseInt octal bug

Try executing the following in JavaScript: parseInt('01'); //equals 1 parseInt('02'); //equals 2 parseInt('03'); //equals 3 parseInt('04'); //equals 4 parseInt('05'); //equals 5 parseInt('06'); //equals 6 parseInt('07'); //equals 7 parseInt('08'); //equals 0 !! parseInt('09'); //equals 0 !! JavaScript, I just learned (the hard way), t...

Can someone explain these errors to me?

Im getting these weird errors, but I dont understand them. Here are the errors: error: variable - sized object may not be initialized (#1) error: statically allocated instance of Objective-C class 'Joke' (#1) error: statically allocated instance of Objective-C class 'Joke' (#1) error: cannot convert to a pointer type ...

Oracle triggers error are not captured while using ADODB

I have and application which uses Adodb to insert data in Oracle table(customers database). Data is successfully inserted if there are no errors. If there is any error like invalid datatype etc. Error is raised and captured by my application and dumped in log gile. My customer has written their own triggers on this particular table. Wh...

Have both HTML and ASPX web page in one site

I have an existing website that has only static HTML pages. I have one page where someone can email their information, but would like to code this page using .NET. I've never mixed both before and thought if I published the pages needed from .NET and put it in the root of the existing website that is all I needed, but I am receiving ...

Problem with install CCM msi from GPO

Hi. I have a problem with installing ccm package from gpo. I prepared msi package using wininstall le and added new policy with msi to OU. in workstation event log i saw this: Installator has insufficient privileges to modify file: C:\WINDOWS\system32\CCM\ServiceData\Messaging\EndpointQueues\PeerDPManager\00000001.msg. I know that ins...

Problem including a file in php gives an error whether I include the file or not.

With include('basemodel.php'); I get Fatal error: Class 'BaseModel' not found in C:\xampp\htdocs\allsides\account\model.php on line 2 Without include('basemodel.php'); I get Fatal error: Cannot redeclare class BaseModel in C:\xampp\htdocs\allsides\others\basemodel.php on line 2 ...

Why does my Adobe AIR app say the latest update is damaged?

I have written an HTML/AJAX application with Adobe Air and run it on my WinXP laptop. But now I've released a newer version on my update site, the application downloads the update and says "The application could not be installed because the AIR file is damaged. Try obtaining a new AIR file from the application author." I've tried repack...

Why am I getting an isEqualToString error in this Cocoa code?

I keep getting this error: What is it? I never even called "isEqualToString". Here Is my Joke.M @implementation Joke @synthesize joke; @synthesize rating; - (id)init { [super init]; return self; } - (void)dealloc { [joke release]; [super dealloc]; } + (id)jokeWithValue:(NSString *)joke { Joke *j = [[Joke alloc] init]; j.joke =...

Why am I getting an error for this?

Why am I getting these errors? It says: Error: Request for member "jokeTableView" in something not a struction or union What does that mean? And why is it breaking. I tried reading about initWithStyle but I just could catch up on it Here is my .h file: #import <UIKit/UIKit.h> @interface TableViewController : UITableViewContr...