|
|
|
stackoverflow.com
- 2012-07-04 13:42:04
- Similar
- Report/Block
I'm trying to get a jQuery mobile app read data from a server as json format. When I load the page, I get the error like'Uncaught SyntaxError: Unexpected identifier' in my chrome console. I'm new for json and jquery,so give me any suggestions for rectify this error. thanks in advance. Here's my Javscript/jQuery: $(document).ready(function...
|
|
|
|
stackoverflow.com
- 2010-10-21 01:24:07
- Similar
- Report/Block
I have some JavaScript code that works in FireFox but not in Chrome or IE. In the Chrome JS Console I get the follow error: "Uncaught SyntaxError: Unexpected end of input". The JavaScript code I am using is (updated code) Sorry miss typed. I get the error with this code: <script> //<![CDATA[ $(function() { $("#mewlyDiagnosed"...
|
|
|
|
stackoverflow.com
- 2012-06-05 07:13:05
- Similar
- Report/Block
I am using ajaxupload.js from and I see the file doing the upload work alright. But I am getting <pre style="word-wrap: break-word; white-space: pre-wrap;">{"id":"006","path":"006.pn g"}</pre> in the response. I think the response should be just {"id":"006","path":"006.png"} but for some reasons it got wrapped around <pr...
|
|
|
|
|
|
stackoverflow.com
- 2012-03-07 09:07:35
- Similar
- Report/Block
I need to use: var obj=document.getElementsByClassName[n]; setInterval("somefunc("+obj+");",10); When I'm trying to run this code, I get "Uncaught SyntaxError: Unexpected identifier". I know about this problem with setTimeout("alert("+str+");) , when I should use .toString() , but what if I need to pass an object in function? Thank you.
|
|
|
|
stackoverflow.com
- 2013-04-11 12:09:30
- Similar
- Report/Block
I'm trying to pass a variable to a function, I know there are many topics about this, and I've nearly tried all suggestions, but still can't get it to work, these are my attempts: var filename = file.name; results in: Uncaught SyntaxError: Unexpected token ILLEGAL results in (alert): 'filename' results in: Uncaught SyntaxError: Unexpec...
|
|
|
|
stackoverflow.com
- 2012-04-28 18:37:18
- Similar
- Report/Block
I am trying to query the http://developer.pintlabs.com/brewerydb/ api-documentation with jquery.ajax. These are two of the Jquery requests i tried (note that "O3tmVI" is a dummy ID): $.ajax({ url:"http://api.playground.brewerydb.com /beer/" + "O3tmVI" + "?key=A1029384756B&format=json", dataType: "jsonp", jsonpCallback: "callbackfun...
|
|
|
|
stackoverflow.com
- 2012-05-06 10:39:40
- Similar
- Report/Block
I'm trying to update a record with JQuery/JSON but I'm seeing this error: An error has occurred: [object Object] parsererror SyntaxError: JSON.parse: unexpected character My JS: jQuery('#commentForm').live('submit', function (event) { event.preventDefault() jQuery.ajax(edit_url, { data: jQuery(this).serialize(), dataType: 'json', type:...
|
|
|
|
|
|
stackoverflow.com
- 2012-06-14 13:13:41
- Similar
- Report/Block
After installation modx Revo 2.2.2 in manager is only menu without any content. Dev Tool in Chrome shows errors: Uncaught SyntaxError: Unexpected token < /connectors/lang.js.php?ctx=mgr&topi c=topmenu,file,resource,dashboards&a ction=53:1 Uncaught SyntaxError: Unexpected token < /connectors/layout/modx.config.js.php?ac tion=5...
|
|
|
|
stackoverflow.com
- 2012-02-24 19:43:51
- Similar
- Report/Block
i use first time ajax call from asax page. it is working fine i am getting data in C# page and but when trying get success function than i am getting error msg in error function "SyntaxError: JSON.parse: unexpected character" here is my code var options = { type: "POST", url: "ChemistrieAddToCart.aspx", data: d...
|
|
|
|
stackoverflow.com
- 2012-03-03 21:02:44
- Similar
- Report/Block
I am using jQuery Ajax to return a JSON object (with dataType: 'json' ) from a PHP file. Here is the returned JSON string that the PHP file echoes out. {'works': true,'text':'<div class=\'animal\'>Elephant</div> <br />'} The Chrome web developer console notes Error:parsererror SyntaxError: Unexpected token ' . I do not se...
|
|
|
|
stackoverflow.com
- 2012-03-11 10:54:36
- Similar
- Report/Block
The line of code below, which I thought creates a javascript object, gives me the following error: Uncaught SyntaxError: Unexpected token { This is the line of code: var flyer2 = {"id":20,"img _url":"http://images.a wfbeat.com/48395b02-59e5-4e26-b7bc-8c603 008c9c4","img_width...
|
|
|
|
webicy.com
- 2013-05-03 19:03:43
- Similar
- Report/Block
I have a Wordpress plugin consisting of 12 files, and after decoding them with http://ioncube-decoder.no-ip.org/ most of them don't work; I think that the decoder works fine etc. These are the particular errors that I get after checking the files with http://www.meandeviation.com/tutoria...n tax-check.php 1) Parse error: syntax error, une...
|
|
|
|
|
|
stackoverflow.com
- 2012-06-07 22:55:57
- Similar
- Report/Block
I am trying to test a Rails app using Michael Hartl's tutorial, but I am getting following error after typing bundle exec rspec spec/requests/static_pages_spec.rb (I am in the sample app directory) static_pages_spec.rb:9: syntax error, unexpected ',', expecting ')' (SyntaxError) ...age.should have_selector ('h1', :text => 'Sample App')...
|
|
|
|
blackberryforums.com
- 2013-02-25 02:58:30
- Similar
- Report/Block
Hi Guys! I was writting an email & the unit suddenly restart itself and hang. I then try to removed the battery then put it back again, but when it started it shows the following warning below; Uncaught exception: java.lang.Error OK Uncaught exception: Applicationregistry.wait For(0xbfca09409ffe99e5) timeout OK Uncaught exception: java.
|
|
|
|
stackoverflow.com
- 2012-05-08 04:31:46
- Similar
- Report/Block
After successfully testing my "alpha" Rails 3 app in my local dev environment, I pushed it up to Heroku (Cedar) for live testing. The push was successful, but the app crashes upon startup with the following errors: : => Booting WEBrick : => Ctrl-C to shutdown server : /app/vendor/bundle/ruby/1.9.1/gems/activ esupport-3.2.3/lib/activ...
|
|
|
|
stackoverflow.com
- 2013-03-25 09:04:04
- Similar
- Report/Block
I have a XmlHttpRequest that works when its outside a function, if I then put it inside I get that row 94 has Uncaught SyntaxError: Unexpected token var . My row 94 is var xmlhttp; I have google around and look at other functions it it should work ? Any ideas ? this is what i have for now. function run(){ readXml(); function readXML{ var...
|
|
|
|
eightforums.com
- 2013-04-10 07:16:58
- Similar
- Report/Block
I am unable to install any software in my windows 8 laptop. The error message is as follows : "The installer has encountered an unexpected error installing this package. This may indicate a problem with this package.The error code is 2503. " Attachment 19881 (http://www.eightforums.com/attachments/ f1/f31/19881-installer-has-encountered-u n...
|
|
|
|
stackoverflow.com
- 2012-03-06 20:25:33
- Similar
- Report/Block
I am trying to run following HTML in every browser: Opera, FF, IE, Chrome <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1- strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="application/xht...
|
|
|
|
|
|
codecall.net
- 2013-04-22 08:38:59
- Similar
- Report/Block
Line 7 : error: expected identifier or '(' before ')' token Line 8 : error: expected identifier or '(' before ')' token Line 9 : error: expected identifier or '(' before string constant get "sum" calculate "sum" get calculate_ "sum" display_ "sum" "void display =sum" (); /*prototype for funtion*/ just one final part of the code giving me...
|
|
|
|
creators.ning.com
- 2013-04-12 05:08:06
- Similar
- Report/Block
My network is experiencing lately the unexpected error page. Here is what happened. I have been getting some new members sign up and I was trying to add someone as a friend and then I got this 500 unexpected error and the friend request was not sent. I don't know if that had anything to do with it or not.
|
|
|
|
stackoverflow.com
- 2012-03-18 14:09:25
- Similar
- Report/Block
I have problem as below: var test = $("#k_w").val().search("sinh("+parseFloa t(sinh_array[i])); The debugger shows an error: Uncaught SyntaxError: Invalid regular expression: /sinh(2/: Unterminated group sinh_array[i] are numbers. What's wrong?...
|
|
|
|
|
|
stackoverflow.com
- 2013-04-26 14:22:20
- Similar
- Report/Block
, also is this valid in javascript/jQuery? If it's not valid, what is an appropriate substitute. Update : This is the full regex /(?-mix:^[^,;]+$)/ Its used in javascript in chrome, and I'm getting the following error: Uncaught SyntaxError: Invalid regular expression: /(?-mix:^[^,;]+$)/: Invalid group...
|
|
|
|
stackoverflow.com
- 2012-05-05 00:27:19
- Similar
- Report/Block
var jsn=getAttr(ref,"json-data").toString(); console.log(jsn); //{test: true,stringtest:"hallo"}. it's OK. JSON.parse(jsn); //Uncaught SyntaxError: Unexpected token s, line: line with JSON.parse; I think JSON.parse does something not right with this data.. I tried to remove stringtest:"hallo" - no result... PS: also I think that I do so...
|
|
|
|
stackoverflow.com
- 2012-05-14 07:53:56
- Similar
- Report/Block
I am doing Visual c++ programming, I have created a CLR console application. I have noticed that String arrays should be declared like String ^, not String[]. What is the use of ^? And why is it being used instead of []? And is this substitution limited only to CLR applications? Here is a line of the code and the error: array<String[]&...
|
|
|
|
|
|
stackoverflow.com
- 2012-06-08 02:00:25
- Similar
- Report/Block
This is from codeschool.com's free course, "Rails for Zombies". In particular, if it matters, this is an error from Level 3, Challenge 5, the assignment being (again, not sure if this matters): "In the each block, make the Zombie's name link to its edit page" Here's my code <% zombies = Zombie.all %> <ul> <% zombies.each d...
|
|
|
|
stackoverflow.com
- 2012-07-03 04:25:05
- Similar
- Report/Block
I'm attempting to delete a facebook story/action, like so: curl -F 'access_token=[valid_token]' -X DELETE https://graph.facebook.com/[action_id] Facebook is responding with an internal server error, like so: {"error": {"message":"An unexpected error has occurred. Please retry your request later.", "type":"OAuthException","code":2}} Is t...
|
|
|
|
vbadvanced.com
- 2013-04-17 09:01:19
- Similar
- Report/Block
Hey guys, i've upgraded my vbulletin from 3.8 to 4.2.0 and then upgraded CMPS with the latest files bu when i access cmps_index.php i get this error: Parse error: syntax error, unexpected T_STRING in /var/www/forum/includes/class_core.php(4 637) : eval()'d code on line 1 What is wrong? Can you help me out please?...
|
|
|
|
|
|
creators.ning.com
- 2013-03-04 05:22:53
- Similar
- Report/Block
Is anyone having a problem getting to their site? I am trying to login mine or get to it and I am getting that old error code: 500: Unexpected Error Please try reloading the page or hitting the browser's Back button to return to where you came from. I reloaded and my site http://www.swagfriends.com is still dead. I hope Ning is aware of...
|
|
|
|
eightforums.com
- 2013-05-03 09:53:45
- Similar
- Report/Block
As the title says, I'm getting a box saying "An unexpected error has occurred" whenever I try and access the properties window for my ethernet adapter. An unexpected power outage earlier in the day rendered my Windows 8 installation half messed up, leaving most of my drivers corrupt, so I had to attempt a refresh today, which solved most...
|
|
|
|
stackoverflow.com
- 2012-04-05 19:53:26
- Similar
- Report/Block
I'm trying to deploy for first time my application to production. For this I want to ue Capifony. I followed Capifony.org instructions but I'm stuck with this error Parse error: syntax error, unexpected T_STRING, expecting T_CONSTANT_ENCAPSED_STRING or '(' in Sensio/Bundle/DistributionBundle/Resourc es/bin/build_bootstrap.php on line 35 Pa...
|
|
|
|
|
|
stackoverflow.com
- 2012-05-12 23:13:13
- Similar
- Report/Block
I have a try/catch thing set up where it will catch all exceptions and then display the error. Here is my code: try { //CODE THAT COULD ERROR HERE } catch (final Exception e) { System.err.println("Unexpected error: " + e.getCause().getMessage()); How do I make this message display the class that error-ed and the line that caused this? T...
|
|
|
|
stackoverflow.com
- 2013-03-17 17:50:35
- Similar
- Report/Block
I have added to oc Slovak language and set Slovak as default from admin and frontend too. English language is disbaled. When I put order through frontend and try to edit this order in admin (add products, delete products ...). Admin function for updating products call frontend class ControllerCheckoutManual through ajax. I get this error...
|
|
|
|
stackoverflow.com
- 2012-04-24 06:13:42
- Similar
- Report/Block
I am wondering if python has its error report message equivalent to $! in perl ? Anyone who could give me an answer will be greatly appreciated. Added: example% ./test File "./test", line 7 test1 = test.Test(dir) SyntaxError: invalid syntax When Exception occurs, I got something like this. If I apply try and catch block, I can catch it a...
|
|
|
|
|
|
eightforums.com
- 2013-04-08 18:39:49
- Similar
- Report/Block
Hello, I keep getting this error when I try to create or delete a folder. I also cannot use applications which create temporary folder such as WinRAR. The error says this: "An unexpected error is keeping you from creating the folder. If you continue receive this error, you can use the error code to search for help with this problem. : The...
|
|
|
|
stackoverflow.com
- 2012-05-31 09:06:40
- Similar
- Report/Block
JavaScript has a Function constructor which produces an anonymous function: new Function() When passing a function as an argument to Function , I get a syntax error: new Function(function(){}) produces SyntaxError: Unexpected token ( However, when I pass a number, all is fine: new Function(10) Why do I get a syntax error when passing a f...
|
|
|
|
stackoverflow.com
- 2013-03-18 13:46:35
- Similar
- Report/Block
I have some .h files that are used for some modules in FORTRAN 77 (which I haven't written myself). I want to write a new routine in Fortran 90 and use such .h files. I've tried to use include 'foo.h' , when I try to compile ( using ifort Version 13.0.0.079 Build 20120731) I get the following error: Syntax error, found IDENTIFIER 'FOO' wh...
|
|
|
|
|
|
creators.ning.com
- 2013-03-19 04:32:03
- Similar
- Report/Block
500: Unexpected Error Please try reloading the page or hitting the browser's Back button to return to where you came from. on my site B-yond Social Network www.b-yond.co...
|
|
|
|
creators.ning.com
- 2013-05-20 23:46:20
- Similar
- Report/Block
My website is showing 500: Unexpected Error and Our apologies We're sorry, we are having an issue with this page. Follow this link to the main page. If you get this message again, please let us know.
|
|
|
|
stackoverflow.com
- 2011-05-30 15:02:59
- Similar
- Report/Block
I just follow same code from Facebook SDK example If FB App point to my local desktop, it will get Facebook uid and user basic information (ex email) if APP get permission from OATH request. But when I upload files to server, executing $facebook->api('/me'); Fatal error: Uncaught CurlException: 28: connect() timed out! thrown in /xxx...
|
|
|
|
|
|
stackoverflow.com
- 2012-05-05 12:46:08
- Similar
- Report/Block
I am trying to load in an old CACHE.DAT database into Intersystems Cache (2012.1.1 win32 evaluation). I've managed to create a namespace and database, and I'm able to query some of the database tables. However, for other tables, I get the following error: ERROR #5540: SQLCODE -400 Message: Unexpected error occurred: <WIDE CHAR> The...
|