error

Sharepoint File Not Found error

I can't seem to find any relevant information on this exception. It seems to come and go on a specific site, any ideas? [FileNotFoundException]: File Not Found. at Microsoft.SharePoint.ApplicationRuntime.SPLocalFileInfo.get_CacheKey() at Microsoft.SharePoint.ApplicationRuntime.GhostedFileTemplateInfo.get_CacheKey() at Microsoft...

What is causing this strange PHP fatal error?

I have a generic Logger class that looks like this: class Logger { ... public function add($userId, $siteId, $logTypeId, $message) { $Log = LogMapper::create(); $Log->setUserId($userId); $Log->setSiteId($siteId); $Log->setLogTypeId($logTypeId); $Log->setMessage($message); $Log->save(); ... } ... ...

Xcode Error "Couldn’t load the next page."

It's really not my day, I was about to create a new class in Xcode (Version 3.1.4) so I went to (right click) Add > New File... selected Objective-C Class and i got the message "Couldn’t load the next page.". Anyone? Thanks in advance... ...

Eclipse (with Pydev) keeps throwing SyntaxError

My code: print "Hello World!" I even tried adding a semicolon behind, but everytime I save and run (as Python run) it says: File "E:\Software\Eclipse\Workspace\Python1\src\main.py", line 1 print "Hello World!"; SyntaxError: invalid syntax I have no idea why. ...

Django Unhandled Exception

It is running under DEBUG = True mode. Sometimes it can throw out an error message with traceback information when encounter an error but sometimes it just display the following lines: Unhandled Exception An unhandled exception was thrown by the application. I have to switch to development server to see detail message. How can I mak...

Custom Silverlight control assembly not found in XAML, but is definitely referenced

I recently added a control library project to my Silverlight app's solution, so the solution now has three projects: SLClient SLClient.Controls SLClient.Web SLClient has a project reference to SLClient.Controls, which contains the following: Themes Generic.xaml (contains default CustomTextBox template) Templates.xaml (contains add...

Basics of Haskell compiling

I'm working on the 2nd Euler's problem, but for now I'm just trying to define the Fibonacci sequence. Currently, I have my Fib function defined as Fib 0 = 0 Fib 1 = 1 Fib x = Fib (x - 1) + Fib (x - 2) Because I want the program to depend on my keyboard input, I used main = do putStrLn "Enter desired Fibonacci index: " ...

HTTP 500 error-.NET 2.0

I've recently moved from [Windows 2003-32 bit, IIS 6 .NET 2.0] to [Windows 2008-64 bit, IIS 7 .NET 2.0]. Everything seems to be working fine except from the HTTP 500 error I am getting periodically and I also get timeouts in my database MSSQL 2005-randomly and on any on random stored procedures (DB is optimized and working fine-all stor...

Flash compile error

hey everyone, i am creating a web site and when i compiled my flash code so it writing that TypeError: Error #1009: Cannot access a property or method of a null object reference. at gallery_fla::MainTimeline/frame1() I dunno what is wrong, please help my with my problem. thanks for your reply. This is code from first fram...

Error: Incompatible types in initialization? (iPhone,Objective-C)

I'm getting the error on "float pos = [sender value];"...sender should be a UISlider that I set up in Interface Builder. ButtonViewController.m - (IBAction)slide: (id)sender { float pos = [sender value]; loadValue.progress = pos; } ButtonViewController.h @interface Button_Fun4ViewController : UIViewController { IBOutlet UIProgres...

empty file problem [solved]

REWROTE: SOLVED Hi there, I currently worked on a simple application with a database, a bunch of controllers, views and a model class. I coded the controllers and inserted the db connections directly E.g. Each controller method has his own PDO to connect to a specific database+table. I refactored this because I had too many active P...

Fixing JS errors in IE

I'm using jQuery for my app and I'm getting this error in IE: Line: 13 Char: 9 Error: Expected Identifier, string or number Code: 0 ..well, as you can see, the error isn't quite helpful. How do you fix those weird IE errors? Is there any tool or a list of error descriptions that tells you what to fix? Thanks ...

How to identify why android app crashed

When I are using Java we put System.out.println() for identifying errors, where it went wrong. A very naive method. With android, I cannot even use this method to isolate why the app crashed. With Rails we would read the log file. But as I am new to Java and android, I don't know which is the best practice. I believe there is a best ...

How do I install the Apache FtpServer as a service within Windows 7 (64-bit)?

I tried everything I could think of, but I always get this error when I try to start the Apache FtpServer service. Windows could not start the Apache FtpServer on Local Computer. For more information, review the System Event Log. If this is a non-Microsoft service, contact the service vendor, and refer to service-specific error code ...

Help required in configuring Crystal Reports

Hi, We have an application which uses VS.NET 2003 and Crystal Reports version 9.1.5000.0 We are migrating this application into a different server. We had reconfigured each and every report with the new connection details and in the process of reconfiguration we had changed all the SQL Server DB connection details to new server. But wh...

Getting a "Fatal error: Cannot redeclare <function>" error

I have a function(this is exactly how it appears, from the top of my file): <?php //dirname(getcwd()); function generate_salt() { $salt = ''; for($i = 0; $i < 19; $i++) { $salt .= chr(rand(35, 126)); } return $salt; } ... And for some reason, I keep getting the error: Fatal error: Cannot redeclare gene...

Any suggestions on how to trouble shoot internal server error for an almost identical script?

On my site I have a contactUser.php that sends mail and a replyMail.php. I have put PHPMail on my contact user to send email notifications which is working great. When I put the same code chunk on my replyMail (which mail goes to the same place as the contact user mail,the inbox) that shares the same variables its giving me a internal se...

C# Error Report E-Mail - Web Service

Hey guys, I am trying to add the capability of my Windows Form application being able to send me an e-mail message when my application generates an error message. How do I setup a web service for my application? Any feedback would be greatly appreciated. ...

Troubleshooting a Dreamweaver Form with checkboxes

Hi guys, I am trying to build a page with a form for a friends hockey blog. He was hoping to have a contest that allows his users to submit their selections for Team Canada's Olympic roster. I attempted to create this form with checkboxes in Macromedia. It basically seems to work, and when I add formmail information the results are succ...

Getting the overall return value of a function within a loop

What I am doing is looping over an array and running a function on each value of the array (the function returns true on success, false on error). I would like to return false if any of the calls inside the loop returned false, but I want the whole loop to be processed. Probably easier to explain with code: foreach($this->_cacheLocatio...