error

Linq failing to connect... or is it?

I have a web-application which is reciving the following while trying to connect to a database hosted on another server. A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is conf...

Django Error: Cannot Import csrf.py

Hello everyone, My Django app started breaking all of a sudden and I cannot understand why. I can't even get it to run now. I'm running revision 11798. When I use the stand-alone server to test my app, it suddenly started not importing csrf. I previously had it working perfectly. I tried to see what was up by using the shell and here ...

Makefile rule to check svnversion result

Trying to make a makefile rule to check that svnversion gave a proper result. Normally, it should return something like one of the following: 1023:1055M 1056 However, it can get an error like: svn: This client is too old to work with working copy '.'; please get a newer Subversion client So here is my version of the rule based on ...

ANTLRWorks error compiling grammar: "syntax error: invalid char literal: INVALID"

I wrote a stub for a grammar (only matches comments so far), and it's giving me the error "syntax error: invalid char literal: <INVALID>". Moreover, i've tracked down the error to being in the following command: ... ~LINE_ENDING* ... LINE_ENDING : ( '\n' | '\r' | '\r\n'); Can someone help me fix this? ...

What does this WCF error mean: "Custom tool warning: Cannot import wsdl:portType"

I created a WCF service library project in my solution, and have service references to this. I use the services from a class library, so I have references from my WPF application project in addition to the class library. Services are set up straight forward - only changed to get async service functions. Everything was working fine - un...

iPhone SDK - UIWebView embedding a YouTube Video

I am using this to prevent the app from opening the youtube app and instead plays the video whilst staying inside my app. It works fine and all but it's a bit slow with loading it's date (they're inside a tableview, each cell for about 15 atm~). The moment when it suddenly loads everything correctly is when this error has been passed i...

SubSonic - Serializing Classes with Nullable types and collections?

Using SubSonic v2.x: The first issue is the error discussed here: Server Error in '/......' Application. Cannot serialize member '.....' of type System.Nullable I'm not sure where to place the code in my DAL from this post to get this working. I tried placing it in one of the partial classes I created for a table, but no go. Another ...

NHibernate: receiving index out of range while calling flush for insert operation

I've spent the better part of my day trying to solve this message while using NHibernate: "Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index" My update and delete work just fine but the call to flush after a call to save() does not work. I don't think it will be useful to post a...

PHP broken code on local machine but working on staging server

Hiya all, I'm having a strange issue here, i have this bit of code: <?php if ($node->nid == "1") { include 'front.tpl.php'; return; } else { ?> <div id="left-col" class="grid_9"> <h1><?php print $title ?></h1> <hr /> <?php global $user;if ( $is_admin ) { ?>[<a href="/node/<?php print $node->nid ?>/edit">Edi...

Wordpress Install: "ERROR: you must provide an e-mail address."

Hey, Just trying to install Wordpress on a client server. Have installed Wordpress 20+ times before with no issues what so ever. However on this fresh install i am getting the following error when i try to progress from stage 1: ERROR: you must provide an e-mail address. (The first stage of the install, for anyone who isnt't aware, r...

rpm build error

Hi I tried to build a rpm package which is giving me the following error /usr/lib/rpm/find-debuginfo.sh /usr/src/redhat/BUILD/RPMS find: invalid predicate `' error: Bad exit status from /var/tmp/rpm-tmp.86590 (%install) what could be the reason .can any one help me in this...Thanks ...

Windows Live ID Error 1017

Hello all, I have a web application that has been up and running for quite some time now using the Windows Live ID delegated authentication. It's been in production for a couple of months, and all of a sudden this morning, it failed with the following error: There's a problem with the site you are trying to share your information wi...

Module with handle [xxxx] and index [x] has no application entry point

I'm having a problem with calling: HomeScreen.updateIcon(_Icon); or HomeScreen.setName("${app.title}"); This throws an exception "Module with handle [xxxx] and index [x] has no application entry point". Only when the application is first installed, but not subsequent reboots. What's wrong with .updateIcon()? ...

.NET Reflector Fail - Windows 7 64-bit

Has anyone else had issues using Redgate's .NET Reflector on Windows 7 Ultimate 64-bit? I'm getting an error saying: "Unable to find a version of the runtime to run this application." Any ideas what's going on with this? Anyone have alternative recommendations for a .NET object browser? I'm thinking lightweight tools, not like Visual ...

What could be causing these error?

I am seeing a very large number of the errors below in my log files. Nothing seems to be causing them in the way that none of our users are seeing any errors. What could be causing them? We are running CF 8. FYI: They are happening many times per second. 12/11 12:30:13 error jrunx.scheduler.SchedulerService.cancel() java.lang.NoSuchMet...

SQLITE update fails with error code 1 (SQLITE_ERROR)

Hey sqliters, I am having a strange or maybe not so strange problem with my sqlite db. I have a field of "Text" type and it worked like a charm with any English texts for ages. The text in the field used to come from an MFC CEdit. Now I switched to CRichEditCtrl to support formatting and UNICODE texts. The CRichEditCtrl dumps the for...

Modules and Delphi

Hi dudes, I'm using dynamic link to load (BPL) modules into my app, the loading works fine with simple forms built into those moudles, but when adding more and more (third-) components and code to one form I get this error message "Invalid class typecast" for tha first time, 'cause for the second time the loading works ok, so I caught t...

Ruby: "in `<=': comparison of Fixnum with Array failed (ArgumentError)"

Hopefully something less newbish than my last... Anyhow, I am doing a bit of coding on a small app that simplifies numbers down to primes, mainly to help with small things like homework. However, a particular method is giving me the error mentioned in the title: def get_simps(num) curr = 2 print("Working...") while (curr <...

GDB can't load dll

I am running windows 7 x64. I recently just set up mingw and gdb on my system. While it appears the debugger works every time I load a app into it I get the following error. Error: dll starting at 0x771c0000 not found. Anyone know what is up with this? ...

Python tempfile module and threads aren't playing nice; what am I doing wrong?

I'm having an interesting problem with threads and the tempfile module in Python. Something doesn't appear to be getting cleaned up until the threads exit, and I'm running against an open file limit. (This is on OS X 10.5.8, Python 2.5.1.) Yet if I sort of replicate what the tempfile module is doing (not all the security checks, but jus...