error

Wordpress Blog :: 500 Internal Server Error

Hi Everbody, I am getting this error message while trying to access a wordpress blog which is installed in a directory. Is this due to .htaccess or something? Any help is appreciated. 'The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, webmas...

Python syntax error

import os xp1 = "\Documents and Settings\" xp2 = os.getenv("USERNAME") print xp1+xp2 Gives me error File "1.py", line 2 xp1 = "\Documents and Settings\" ^ SyntaxError: EOL while scannning single-quoted string Can you help me please, do you see the problem? ...

Installation problems with ASP MVC Release Candidate 1

I've tried installing RC1 must have been 5 times already and always run into the same issue around the "Configuring Templates' step. I've tried everything I can think of but now I have neither RC1 or Beta. Has anyone run into this error? Any suggestions for what I can do? Screenshot of my problem here (not sure why I can't place it a...

Flex Builder, keep flash player running on Error

I got this project, where there this error keeps occurring and its not on my table to fix it right now. I have other priorities. This error isn't that big deal as well for the rest of the project - but everytime this error gets thrown when I launched the debug player in Flex Builder, it shuts down the player right away. Is it possible t...

Hashtable insert failed. Load factor too high. - ASP.NET 2.0

I received the following error while trying to login to a secured directory. As far as I know there are no large hashtables in use. The user login information is in the web.config file. Notice this is happening in .NET 2.0. I've searched and found references to this occurring in .net 1.0 or 1.1 environments but I haven't found a solution...

VS2005 C++ compiler problem including <comdef.h> in MFC application

I am having some trouble converting an old project from VS6 to VS2005. At one place in the code it uses the type variant_t so it includes comdef.h for this purpose. comdef.h then includes comutil.h which generates these errors for me: c:\program files\microsoft visual studio 8\vc\include\comutil.h(978) : error C2535: '_variant_t::_varia...

IIS & ASP.NET blocking file

Hi I have an ASP.NET app running in IIS that is hosting files all great but it blocks all *.upd files and says http 404. If I turn directory listing on it lists the file just great but I cant download it any way... Is there any way to fix this? ...

How to stop contextmenu in visualstudio 2008 from dissapearing.

Whenever I rightclick something in visualstudio, I get a context menu for about half a second. Then it goes away, before I got a chance to click anything. Sometimes if I'm really fast I manage to click something anyway, then it works. So annoying. Sometimes the problem goes away for a few hours, then it comes back (in the sams visual ...

PowerShell - How do I test for a variable value with "Set-StrictMode -version latest"?

I've just started doing some PowerShell scripting, and I'm running into a problem testing variables for a value. I try to run everything with all warnings enabled, especially while I'm learning, in order to catch dumb mistakes. So, I'm using CTPV3 and setting strict mode on with "set-strictmode -version latest". But I'm running into a ro...

How to handle OutOfMemoryError in Java?

I have to serialize around a million items and I get the following exception when I run my code: Exception in thread "main" java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOfRange(Unknown Source) at java.lang.String.<init>(Unknown Source) at java.io.BufferedReader.readLine(Unknown Source) at java.io.B...

Error when updating eclipse

I click update in eclipse and i get error, its because i updated eclipse more than once. Is there any way to fix eclipse and have ability to use update? An error occurred while collecting items to be installed No repository found containing: org.eclipse.jem/osgi.bundle/2.0.202.v200810282000 No repository found containing: org.eclip...

Having Issues Connecting to Microsoft SQL Server Express (2008) from PHP

As the title says, I'm having issues connecting to MSSQL from a PHP Script. The setup:- PHP is running on an Apache Linux Server. Microsoft SQL Server 2008 is on an XP Machine. I've got Remote Connections turned on in the MSSQL Server. The database bggs does exist. The database is running (I can see a green arrow). I have no firewall ...

What is the "metadata operation failed" VS2008 linker error?

I have a big project that was first created in Borland C++ 6. We're porting the program gradually to VS2008. There are many projects, which all compile to .lib, and I'm trying to build the exe of the test project for a set of projects. After fixing the compiler errors, I got this crazy linker error: *1>av_geos_core_domain.lib(GerTamMo...

How to get error messages from ruby threads

I'm having a problem right now where I can't see where my child threads are spitting out error messages which is making it difficult to debug. eg: Thread.new{ a = 1/0 } Is there any way to have all thread errors print out at stderr? ...

Inconsistency error C#

Hi, I've got an issue with protected SceneItem scene = null; but I can't see why, the error is: Inconsistent accessibility: field type 'AsteroidsFinal.Helpers.SceneItem' is less accessible than field 'AsteroidsFinal.Helpers.Screen.scene'` using System; using System.Collections.Generic; using System.Text; using Microsoft.Xna.Framew...

Assembly Prototype instruction

I am writing an assignment in MASM32 Assembly and I almost completed it but I have 2 questions I can't seem to answer. First, when I compile I get the message: INVOKE requires prototype for procedure & invalid instruction operands the first is due to this piece of code: .data? Freq DWORD ? Time1 DWORD ? Time2 DWORD...

After upgrading Wordpress, I get a fatal error "Call to undefined function require_wp_db()"

I followed instruction as mentioned in Wordpress, but I still got the error and referred Google and I was shocked to see many blog have same problem and they are not fixed yet and those blogs are indexed in Google, please try searching "Call to undefined function require_wp_db()" or find here Google search result Any advice how to fix...

Error deploying an app to JBoss 5 that was working fine on JBoss 4.2

Im trying to deploy an application (.ear file) to JBoss 5, and I'm receiving the following error. The app deploys fine under 4.2.2. 15:31:33,172 ERROR [AbstractKernelController] Error installing to Real: name=vfszip:/C:/ASE/ext/jboss-5.0.0.GA/server/all/dep loy/UGC-WS.ear state=PreReal mode=Manual requiredState=Real org.jboss.deployers....

error C2039: 'memchr' : is not a member of '`global namespace''

Hi, It has been quite a while since I am getting this error in the standard <cstring> header file for no apparent reason. A google search brought up many answers but none of them worked. ...

compiling a C++ class in Xcode: error during compilation: stl vector

I have a C++ class that compiles fine on linux with gcc and on widows in visual studio. boid.h: #ifndef BOID_CLASS_HEADER_DEFINES_H #define BOID_CLASS_HEADER_DEFINES_H #include "defines.h" class Boid { public: // Initialize the boid with random position, heading direction and color Boid(float SceneRadius,float NormalVel); ...