error

Error Showing Up in Server Logs...How Do I Stop It?

I'm getting an error and I've googled everything I can think of with barely any insights. Maybe you can help with a fresh set of eyes. I have a function that returns an array of objects. The code that calls this function then loops through this array and does what it needs to do with each object. It seems to work visually when it spits ...

RewriteLog triggers Internal Server Error

I am trying to do some debuging on my rewrite rules and wanted to enable RewriteLog to view how they are interpreted. but when i activate it i get Internal Server Error heres the line: RewriteLog "/home/solomongaby/www/project/logs/rewrite.log" thanks ...

FluentNHibernate: Getting the Examples.FirstProject to work

Im trying to get the most basic of examples to run in FnH. I started with the Examples.FirstProject. However, I did not use the SQL lite configuration. Instead, I set the configuration to SQL2005 and created the tables as was diagramed in the example. When stepping through the code, there appears to be no problems when creating the...

WPF starting animation from vb.net code giving error

I'm trying to trigger an animation declared in the window's XAML file from the window's vb code when an event is raised (calling a function), like a window's "loaded" event. Here's how I declare the animation (as a storyboard): Dim StartAnimation As Storyboard = DirectCast(FindName("ServiceOn"), Storyboard) Dim StopAnimation As Storybo...

Secure ELMAH in asp.net application that doesn't use forms authentication

I have a very basic asp.net application that relies on a master page's INIT event to verify the user via a session object. Yes, I know this is way-suboptimal. I'd like to add ELMAH to it, but can't find any references to securing the console without using forms authentication and a web.config allow/deny setting. Is there another way to...

Specify page/line when throwing die() ?

I am using PHP 4, the only way I know of to cause an error and stop everything is calling die(). But in case I run into the error later and don't remember where its coming from I would like to specify the page and line number that the die() occurred on (like other php errors do). Is there a way to do this? Thanks! ...

Using divs to display errors

Hi I have an ASP.NET(2.0, C#) web application, and I wanted to know how to display all the general errors that could occur on the master page using divs. For example if there is an 'add new user' page, all the fields that had problems will be shown something like this: The following Error(s) Occured: ... ... I am using a master pag...

Referencing Error to the AudioToolbox in Objective C

I'm getting the following error in a simple Roulett app where I'm trying to play some wav files. I'm not sure what the error means because no warning flags come up in the code, and I've imported Here is the error: Undefined symbols: "_AudioServicesCreateSystemSoundID", referenced from: -[CustomPickerViewController pla...

Configuration Issue with rails gem nkallen-cache-money (0.2.5): Get RecordNotFound exception on find method

I installed nkallen's cache-money gem per the github readme. I run into RecordNotFound exceptions during my tests. If I comment out the contents of config/initializers/cache-money.rb, the tests run fine. My cache-money.rb file is identical to that on the github instructions. Here is the contents of my config/memcached.yml: development:...

Troubleshoot IE6 + 7 only error message.

Hello again, I have built the site: www.bgarchitect.co.nz which was as much a learning experience in jQuery and CSS/xHTML but is also a real project and as such should work in most browsers (IE6 is still a problem but IE7 should really not have an issue here). Something that bugs me terribly is getting this error: which only happens...

Git pull error: unable to create temporary sha1 filename

Hi everyone, I've got a small git repo setup with the only real purpose to be able to develop locally on several machines (work, home, laptop). Thus I have one branch and I commit/push once I leave a computer, pull once I sit down at the next. Has worked fine, up to now that is. Now when I pull on my 'live test' machine, I get the follo...

Odd javascript Error (using jQuery)

I have a code that grabs the buttons click and then vanishes the actual content and makes the content of the clicked item appear. I have it running along with other thins in an init.js file that is I have: $(function() { $('#contacto').fancybox({ 'hideOnContentClick': false, 'frameWidth': 600, 'frameHeight': 550, ...

gData API - "This feed is read-only" error when adding even to Google Calendar

I'm using Google Apps for my domain, and trying to enable access to the Calendar on my website. The problem is that I get "This feed is read-only" error every time I try to add an event to the calendar. Here's the url I post to: https://www.google.com/calendar/feeds/mydomain.com_oaiat5pq6l6dsfnmrodn8susvc%40group.calendar.google.com/...

How can I expand the IE7 error message “This program cannot display the webpage” to Debug?

Is there a way to get Ie7 to expand on the error message “This program cannot display the webpage”? I have turned off friendly error messages but this has not helped. The background is that intermittently I get the error while using IE7 navigating to a around a particular a website. However I know the server has returned the web page ...

How do I return errors from my asp.net mvc controller when doing a jquery ajax post?

Hi! I'm creating a website in ASP.NET MVC and have stumbled across something I really can't figure out. I've got a user profile page that allows a user to change his password. On the serverside, I want to validate that the user has entered a correct "current" password before allowing the change. What's the best way to return to my Vi...

svn update not working in post commit

I am trying to implement a post-commit hook to update a working copy. As far as i can figure out the post commit hook is being runned ( i wrote something in a file to test it out ) but the update command was not runned At first i did cd /home/user/working/copy svn update but that didn't work, then i read you have to give the full pa...

asp.net someusercontrol_ascx is defined in multiple places error

I've had this intermittent issue when using asp.net. My site is dynamically compiled. Sometimes when I modify a user control my web site complains that it is defined in multiple places. It almost seems like the old control did not get removed from the asp.net temporary files and the updated control is compiled to the same directory s...

Need Review Comments for my Error Logging Mechanism

On every break on the Production/QA/Dev getting to the root of the exception is very crucial and time taking process. As the web applications are in multi user environment and Stateless \ Asynchronous (HTTP) ,its really a tough job to look at the Eventviewer / log files and root cause an issue reported by the end user; Also it depends o...

Error: System.Data.Linq.Binary' cannot be converted to '1-dimensional array of Byte'

I am trying to return a binary from the DB using linq for display in the browser. The method below using ado.net works but I am trying to ypgrade to linq but the linq version returned the error. Public Sub ProcessRequest(ByVal context As System.Web.HttpContext) Dim imageId As String = context.Request.QueryString("id") Dim r...

Ruby on Rails: errors.add_to_base vs. errors.add

I have read that errors.add_to_base should be used for errors associated with the object and not a specific attribute. I am having trouble conceptualizing what this means. Could someone provide an example of when I would want to use each? For example, I have a Band model and each Band has a Genre. When I validate the presence of a ge...