1
vote
3answers
66 views
C -multidimensional array causes Segmentation Fault (GCC)
Why if I change the size of one of the dimensionality of an array I get a run-time Error: "Segmentation Fault?". Example:
#include <stdio.h>
#define DIM 8
int main(int argc …
-1
votes
1answer
19 views
Jquery.AjaxComplete and not executing specific code if I want
For example I have general code for catching json, that says - "its error request". This code is in ajaxComplete, how can I stop executing specific code from ajaxComplete point?
$ …
0
votes
1answer
22 views
Pure NetBeans doesn’t work…
I had system: ubuntu-9.04-amd64. I installed IDE NetBeans 6.5 from official default repositories. Everything worked correctly.
But now, I decided to use ubuntu-9.10-desktop-amd6 …
0
votes
0answers
23 views
Visual Studio 2008 Designer File Bug?
This has been driving me crazy for months. I have a multiple projects that compile without errors. If I start copying and pasting controls (or even just plain 'p' tags) the designe …
-2
votes
3answers
85 views
What does this null entry error mean?
I am getting the following error in my MVC application.
The parameters dictionary contains a null entry for parameter 'isFeature' of non-nullable type 'System.Int32' for method …
1
vote
3answers
54 views
Frequent error in Oracle ORA-04068: existing state of packages has been discarded
Hi,
We're getting this error once a day on a script that runs every two hours, but at different times of the day.
ERROR at line 1:
ORA-04068: existing state of packages has been …
1
vote
1answer
49 views
PHP script unable to find a file when called by a flash program
I'm working on a program right now that calls the script mail.php located in /var/www/vhosts/company/httpdocs. mail.php is trying to execute require_once dirname(__FILE__).'/../pea …
0
votes
1answer
20 views
curl error 18 - transfer closed with outstanding read data remaining
Hello,
when retrieving data from a URL using curl, I sometimes (in 80% of the cases) get
error 18: transfer closed with outstanding read data remaining
Part of the returned data …
1
vote
1answer
25 views
How to resolve java.nio.charset.UnmappableCharacterException in Scala 2.8.0?
I'm using Scala 2.8.0 and trying to read pipe delimited file like in code snipped below:
object Main {
def main(args: Array[String]) :Unit = {
if (args.length > 0) {
…
0
votes
0answers
27 views
error: There is no SDK with the name or path ‘iphoneos2.2.1’ - after Xcode upgrade.
I upgraded my Xcode to the Latest version today, my iPhoneSDK OS was 2.2.1 previously. I was alerted during installation I can upgrade Xcode but iPhoneSDK cannot be upgraded. Becau …
1
vote
2answers
15 views
Framework not found AudioUnit
Been banging my head agains the wall for awhile now.
My Xcode project went a little haywire while refactoring, and refused to build. I've squashed all the other errors, except one …
0
votes
3answers
26 views
asp.net iis error
I am using asp.net 2.0 and IIS 7 on vista 64 bit.
everytime, when i try to open page in browser, i get following error.
Access is denied.
Description: An error occurred while acc …
0
votes
2answers
30 views
error in CUDA compilation
I'm getting this error while trying to run sample codes in CUDA SDK. I have CUDA 2.3 and Visual studio 2008
LINK : fatal error LNK1181: cannot open input file 'cutil32D.lib'
Any …
1
vote
1answer
14 views
Web.config : showing detailed error information from subdirectory
I have an asp.net web application .I have a web.config in the root which will take care about the application related settings. as per my web.config,the site will not show any er …
1
vote
5answers
137 views
C++ compile error
#include<string>
using namespace std;
int main(){
const int SIZE=50;
int count=0;
ifstream fin("phoneData.txt");
ofstream fout("phoneList.txt");
string f …
