Tagged Questions
The illegal tag has no wiki summary.
8
votes
11answers
4k views
URL Routing: Handling Spaces and Illegal Characters When Creating Friendly URLs
I've seen a lot of discussion on URL Routing, and LOTS of great suggestions... but in the real world, one thing I haven't seen discussed are:
Creating Friendly URLs with Spaces and illegal ...
4
votes
4answers
221 views
illegal 0000-00-00 00:00:00 timestamp being sent by php to mysql using codeigniter
here is a Database_update_entry function in my CodeIgniter model which gets executed upon successful form submission.
<?php
function update_entry(){
$data = array(
'sl' ...
3
votes
2answers
283 views
effect of undefined opcodes on the (original) Intel 8086/88
Since the original 8086 and 8088 do not have a software exception for illegal instructions, how do they behave when fed such, for instance "FF FF" (not an opcode) ? Do they stall, do it reset itself, ...
2
votes
2answers
199 views
Embedded assembly in C (DOS) - illegal instruction
I'm trying to re-program instruction vector table. Here is the code I use:
#include <stdio.h>
int a=1;
void func();
void keyboard()
{
printf("\n\nkeyboard!!!\n");
a=0;
asm{iret}
}
...
2
votes
3answers
39 views
Approaches to finding / controlling illegal data
(Reactively) capturing illegal data...
The Environment:
I manage a few very "open" databases. The type of access is usually full select/insert/update/delete. The mechanism for accessing the data is ...
1
vote
5answers
55 views
Java illegal start of expression
I have done a google around but can't get my head around what's wrong with my code here.
I'm getting an Illegal start of expression error in the if statement at the first 'Else if'
I'm pretty new to ...
1
vote
2answers
32 views
Uncaught TypeError: Illegal invocation in javascript
I'm creating a lambda function that executes a second function with a concrete params.This code works in Firefox but not in Chrome, its inspector shows a weird error, Uncaught TypeError: Illegal ...
1
vote
1answer
500 views
Uncaught SyntaxError: Unexpected token ILLEGAL when returning link to facebook profile picture
im trying to return the profile picture of a user with the facebook api, but i get an error in chrome about the link.
here is the code
FB.getLoginStatus(function(response){
...
1
vote
1answer
378 views
1
vote
3answers
123 views
when was youtube avilable for download? [closed]
I was asked by my boss to incorporate "downloading from youtube" into my android app, while I have tried to explain to him that it is illegal, he repeatedly claimed that he has done it before, and by ...
1
vote
1answer
473 views
illegal use of this type as expression (error) C++
The most recent file I've added to my VC++ 2010 project is suddenly giving me errors about the data types.
After doing a bit of searching, this error seems to be common in C code but I'm using C++ ...
1
vote
1answer
586 views
Rails app getting Illegal Instruction every time I change logic
I have a fairly large Rails app that is getting increasingly harder to develop on. The development environment has gotten slower and slower and WeBrick is taking forever to start up.
The oddest ...
1
vote
2answers
397 views
Migrating from Powerbuilder 6.5 to 10.5
We have an application that is built using PFC. I am facing a strange problem. When I define a workspace and open only the PFC librares, I can migrate and do a full Build. However, when I include this ...
1
vote
2answers
1k views
How to solve - Illegal mix of collations in mysql?
Am getting the below error when trying to do a select through a Stored procedure in mysql.
Illegal mix of collations (latin1_general_cs,IMPLICIT) and (latin1_general_ci,IMPLICIT) for operation '='
...
1
vote
1answer
1k views
System.InvalidCastException: System.Data.DataViewManagerListItemTypeDescriptor
Am getting an exception randomly. I have a barcode scanner which enters barcodes into a table. The code is written in C#. I was able to get the exception twice at first; however, am no longer able to ...
0
votes
0answers
17 views
How to really ensure that app is purchased from app store and is not downloaded from installous
i'm developing an app and i want to check if app is purchased from app store or not. i see some post on stackoverflow, but no one is good.. have you got a good tutorial to ensure what i want?
using:
...
0
votes
1answer
50 views
Javascript Unexpected token ILLEGAL
I have a PHP script (fetchData.php) that fetches some data and outputs it to a page.
<?php
require 'config.php';
require 'jsonapiSDK.php';
$api = new JSONAPI($ip_address, $jsonapi_port, ...
0
votes
1answer
82 views
Getting Illegal characters in path exception after enabling HttpUnhandledException
I added to my .net app in the Global.asax.cs file error trapping like so
void Application_Error(object sender, EventArgs e)
{
HttpUnhandledException httpUnhandledException = new
...
0
votes
0answers
90 views
MonoDevelop 2.8.2: Build failed. Illegal characters in path
I have just installed MonoDevelop 2.8.2. After opening a new solution named test I attempted to run the project. I push f5 and all I see is a "Build failed. Illegal characters in path" error in the ...
0
votes
1answer
55 views
Why do I get “illegal operand” errors when compiling SPARC assembly with GCC (2 lines, cmp and bl instructions)?
GCC complains that:
A3.s: Assembler messages:
A3.s:32: Error: Illegal operands
A3.s:33: Error: Illegal operands
The offending lines (italicized) and surrounding code are:
b random_init_for_test
nop
...
0
votes
3answers
154 views
Illegal instruction while compiling with g++
I have the problem that a C++ program running under linux, compiled with g++ raises after some time a illegal instruction exception and I get a core dump. When I do a backtrace using gdb I get
(gdb) ...
0
votes
1answer
104 views
Flex TextArea Strings and prohibited characters i.e. <meta charset=“utf-8”>
I'm trying to set the text of a TextArea with some text containing forbidden characters. I'm trying to set the text as <meta charset="utf-8"> and there is of course a problem with the "'s. I ...
0
votes
0answers
54 views
How To Msg any one has download my app outside appstore [closed]
Hi is there a way to check if my ios app is downloaded from appstore
0
votes
0answers
121 views
Why would I be getting “SyntaxError: Unexpected token <” [closed]
If I go to google.com I get this alert message when google loads, why would I be getting this alert? Is google broken?
0
votes
1answer
799 views
Android HttpGet Url causes “Illegal Character at Index 110” error
I'm trying to instantiate an HttpGet Object so that I can send a get request to the foursquare api. However, every time I attempt this, (and I've tried it with several different tokens) I get the ...
0
votes
0answers
151 views
mysql error illegal mix of collation while creating view
I am trying create one view which is based on another view...but while creating a view.....I am getting an error of illegal mix of collation.....
While setting up MySQL server I have selected ...
0
votes
1answer
332 views
mysql: Illegal mix of collations in a store procedure problem
I get this error: Illegal mix of collations (greek_general_ci,IMPLICIT) and (latin1_swedish_ci,IMPLICIT) for operation '=' when I call this store procedure of mine:
DELIMITER //
CREATE PROCEDURE ...
0
votes
1answer
261 views
File Encoding - Mysterious “?” Mark and “ILLEGAL Token” Error Messages
Come across this once in awhile.
Unpacked a zip file sent to me by a coworker. Loaded it up on my tomcat server to find out that there's this weird question mark at the beginning of the included JS ...
0
votes
1answer
194 views
Exception Illegal value in Firebug
Today, I've found exception in my firebug console:
uncaught exception: [Exception... "Illegal value" nsresult: "0x80070057 (NS_ERROR_ILLEGAL_VALUE)" location: "JS frame :: ...
0
votes
1answer
722 views
Javascript Illegal Token Error
Forgive me if this is a simple problem but I can't seem to find why this code:
function create_content(c)
{
var html = "<div id='header'>"+c+"</div>";
if(c ...
0
votes
0answers
99 views
Unusual “Illegal Forward Referance” Java Compile error
I'm developing a small program which shows the screen co-ordinates of the mouse pointer in real time, displaying the co-ordinates in the format: "[x;y]"
Here is a small piece of code which for some ...
0
votes
1answer
2k views
Illegal Instruction When Programming C++ on Linux
Heyo,
My program, which does exactly the same thing every time it runs (moves a point sprite into the distance) will randomly fail with the text on the terminal 'Illegal Instruction'. My googling ...
0
votes
3answers
996 views
jQuery keyup() illegal characters
I have a field and want to prevent some illegal characters while showing the user as he types.
How can I do this in follow example?
$('input').bind("change keyup", function() {
var val = ...
0
votes
1answer
356 views
Android full Screen flag gives an exception
In my android app I set
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN );
Then my touch screen ...
0
votes
2answers
690 views
setContentView gives an exception
In my android app I set
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN );
Then my touch screen event ...
0
votes
5answers
2k views
Bash script, Illegal number: 08
I'm running a pretty simple bash script in ubuntu but have come up with a problem.
If needed I'll post the whole script, but I've narrowed down the problem.
Basically, I want to run some code every 15 ...
0
votes
1answer
2k views
java.net.MalformedURLException: Illegal character in URL
I am working on struts.I am encrypting password in one application and passing encrypted password to another application through open url connection.Some times this works fine if i click on the link ...
-1
votes
1answer
162 views
python Illegal instruction on AIX5.2
everyone:
I run my python script functions like this:
read from a text file, and store the data as dict. But when in the loop, an Illegal instruction occurs. why this happens?
the code is like this:
...
-2
votes
4answers
78 views
who is to take responsiblity for “illegal” code [closed]
First of all, let me start by pointing out that this is not off-topic question. Quote from FAQ:
"but if your question generally covers … "[..] "practical, answerable
problems that are unique to ...
-5
votes
1answer
216 views
How to fix this illegal start of expression? [closed]
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* CurrencyCalculator.java
*
* Created on May 3, 2011, 9:57:40 AM
*/
/**
*
* @author ...