The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
14 views

Global.asax parse error after minor change and revert to previous version

The project in context is: ASP .NET Web Application .NET Framework: 4 Platform Target: x86 IDE: Visual Studio 2010 Ultimate SP1 Multiple projects in solution with ASP .NET being the startup project. ...
1
vote
1answer
43 views

JSON Parse error: Unable to parse JSON string

I'm trying to send some data into a JSON object, and then into a cookie. But I'm getting this error when im trying to parse it: "SyntaxError: JSON Parse error: Unable to parse JSON string". Here is ...
-2
votes
0answers
46 views

PHP Parse error: syntax error, unexpected T_ENDWHILE in /home5/functions/shortcodes.php on line 1 [closed]

Today i created a shortcode with a custom loop to show my custom post types in page. Everything was fine in the beginning and today i just re-upload the file to my server and found that server is not ...
0
votes
1answer
53 views

Higher order function, parse error in pattern: xs

Here is my code: -- combine lists with binary operation clwbo :: (Num a, Num b, Num c) => (a -> b -> c) -> [a] -> [b] -> [c] clwbo fps lista listb |length lista /= length ...
2
votes
3answers
62 views

Higher-order function, parse error on input `|'

Here is my code: select_where_true :: (Double -> Bool) -> [Double] -> [Double] select_where_true is_neg [a] = case [a] of [] -> [] x:xs -> is_neg x |(is_neg x) == False = ...
-2
votes
1answer
34 views

Parse Error: Syntax Error, unexpected ',' in C:// on line 14 [closed]

I've got a problem with my code and I'd like to get some help with it. I've been trying to make a calculator, however this issue has occurred when trying to view the site. "Parse Error: Syntax ...
0
votes
0answers
30 views

Macro called in header generating “ Expected identifier or '(' ”

When the CGRectDivideWithPadding macro is called like this in the .h file: CG_INLINE void CGRectDivideWithPadding(CGRect rect, CGRect *slicePtr, CGRect *remainderPtr, CGFloat sliceAmount, CGFloat ...
2
votes
3answers
44 views

PHP - How to avoid Parse errors on older servers when using new functions

When I use an anonymous function ( but see also note below ) like : $f = function() use ($out) { echo $out; }; It produces an parse error on servers where PHP is older ...
0
votes
1answer
28 views

Parse error: syntax error, unexpected '[' with php 5.3 [duplicate]

My script is working really fine on my xampp. Now I tried to upload it on the server, but it spat directly a Parse error: syntax error, unexpected '[' in my face. :( The line which its mocking ...
0
votes
2answers
50 views

Haskell Parse Error inside do block

I'm getting the following error: parse error on input `args' while trying to compile the following code: import System.Environment (getArgs) interactWith function inputFile outputFile = do ...
-3
votes
1answer
52 views

Parse error: syntax error, unexpected T_STRING in /home/…/admin.php on line 173 [closed]

I keep getting an error in my code, and I can't pinpoint it, might be really obvious. Any tips appreciated. Note: *This is in fact a botnet, I am not making it for malicious purposes, merely as a ...
2
votes
1answer
125 views

paper, rock, and scissors in Haskell

The codes below is programmed to decide the result of paper rock and scissors in Haskell, however terminal give an error data Move = Paper | Rock | Scissors deriving (Eq, Show) data Result = Win | ...
1
vote
1answer
92 views

I want to make a wireworld move, however it shows me a error

I'm asked to make a wireworld move. So i have written the following codes,(all of the function in the code is somehow defined in other modules, so, dont worry about that XD, feel free to ask me if u ...
0
votes
1answer
62 views

Haskell Issue (Parse Error) [closed]

Okay so I'm teaching myself Haskell with "Learn you a Haskell for a great good" and I keep getting a parsing error every time I feed a simple program through both GHCI and HUGS. ...
0
votes
0answers
72 views

Parse error Inserting into arrays using PHP with Postgres [closed]

I'm running into a parse error using PHP (5.3) to input data into an array data type in PostgreSQL (9.1.5). The example below is nearly identical to the example posted on postgres.org regarding ...
0
votes
0answers
52 views

How to not interpret the preflight in ajax on BB10?

I converted and deployed an Android application using the Eclipse plugin with the extension *.BAR for a smartphone BB10. It's a hybrid application, containing an in-app browser and an application ...
0
votes
1answer
146 views

500 Server error instead of display parse error [duplicate]

I receive 500 error message when there is a parse error in my coding. HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the ...
0
votes
3answers
51 views

whats wrong in my code its giving parse error [closed]

This code is giving parse error Parse error: syntax error, unexpected T_STRING at line $gender=$user['gender']; .....whats wrong in this code...need help.....thanks <?php require_once ...
0
votes
1answer
39 views

using super by defining class-inheritance in coffeescript gives me parse error when compiling

I am trying to define a class inherited from another base-class in coffeescript and I am getting parse-error when compiling. Exyctly : Parse error on line 6: Unexpected ',' My code looks like : class ...
1
vote
1answer
138 views

Haskell can't call function after '<-'?

I'm just beginning with Haskell and I can't understand one thing - why doesn't something like this work? fun f = f * f main = do foo <- getLine bar <- getLine ...
1
vote
0answers
209 views

Parse Issue: Type Name Requires a Specifier or Qualifier

I keep getting following error for the following code. Can Any one Tell me how to solve this Error. In .h file #ifdef __cplusplus namespace tesseract { class TessBaseAPI; }; #endif Inside ...
0
votes
1answer
127 views

Error using http.request in node.js

This is my little piece of code: var options = { host: 'www.cuantocabron.com', port: 80, path: '/index.php', method: 'GET' }; var http = require('http'); var req = http.request(options, ...
0
votes
2answers
65 views

eval error when using “if” short form

when doing something like $date = mktime(); $xxx = 'if ( date("N",$date ) == 1 ) { return TRUE; } else { return FALSE; }'; $yyy = eval( $xxx ); echo $yyy; it works. But when doing something like ...
1
vote
0answers
72 views

How to change keyboard character output on Mac (ALT+SPACE disrupting source code validity with invalid character, charcode 194)

I use NetBeans for coding purposes. Sometimes typing must happen in a flow. When i type real fast, i often end up writing conditions like this if($x==1 || substr('something else',0,1)=='x') and ...
0
votes
1answer
97 views

What's wrong with or throw new Exception? [closed]

I'm using this code inside the public function __construct() of a class: $this->mConnection = mysql_connect(BASE_DB_HOST,BASE_DB_USER,BASE_DB_PASS) or throw new Exception("Couldn't connect to ...
0
votes
2answers
57 views

Parse error: syntax error, unexpected '<' on line 36 [closed]

This is the complete code: <?php $host="localhost"; // Host name $username="root"; // Mysql username $password="pass07"; // Mysql password $db_name="test_db"; // Database name ...
0
votes
1answer
32 views

Set an objects property equal to an instance of another object [duplicate]

Possible Duplicate: Initializing PHP class property declarations with simple expressions yields syntax error I dont want to have to instantiate my session object in every method. Why cant ...
0
votes
5answers
179 views

Php script returns json, but I am getting parseerror

i know that there was similar questions, but i would like to get some clarification here. With following Ajax setup: $.ajaxSetup({ cache: true, dataType: 'json', ...
0
votes
2answers
64 views

Parse error on compilation

I tried to look into the similar topics but couldn't find a solution, done everything I learned but its giving me same error always, & here's the code: <script type="text/javascript" ...
2
votes
2answers
97 views

In PHP, why does “or die()” work, but “or return” doesn't?

In PHP, you can handle errors by calling or die to exit when you encounter certain errors, like this: $handle = fopen($location, "r") or die("Couldn't get handle"); Using die() isn't a great way to ...
0
votes
1answer
147 views

Ajax call throws parse error

I am getting a parse error when trying to perform the following call: $.ajax({ cache: true, url: "http://localhost:3000/app/test/result1", data: "{}", type: ...
1
vote
2answers
118 views

Copying lines divisible by 5

It's me again:). I try to write a program which copies lines which number is divisible by 5 to another file. Here is code (sorry for Polish names): import IO przepiszConHelper :: Handle -> Handle ...
1
vote
1answer
193 views

Parse Error, Inserting PHP code in MyBB

I'm inserting this code in the <head> </head> for a mybb forum: <?php if(isset($_REQUEST['url'])): // <-- only include jQuery if url set ?> <link rel="stylesheet" ...
-2
votes
2answers
78 views

T_STRING error at Curl [closed]

When I'll upload my .php I get these error: Parse error: syntax error, unexpected T_STRING in /users/allybong/www/twitteroauth/twitteroauth/twitteroauth.php on line 201 The script of line 197 - ...
-3
votes
2answers
123 views

Parse error: syntax error, unexpected T_STRING in line [closed]

When I trying to run a file using cron jobs I am getting the following Parse error: syntax error, unexpected T_STRING in /home/joshand2/public_html/application/models/model_posting.php on line 1787 ...
0
votes
2answers
80 views

PHP Parse error in localhost [closed]

The below code is running a portion of my code file and this file is running perfect in my server whereas when I am trying to run this code in my own system using WAMP server I am getting Parse error: ...
0
votes
0answers
39 views

node.js parse error in module past file end

I'm building my first project with node.js and I've got a parse error on a module I've made "...exporter.js:700" }); However, exporter.js is only 699 lines long. What does that mean?
0
votes
2answers
41 views

Receiving this error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' [closed]

I'm receiving the error above and can't find out where I'm missing either a "'" or a ";"? Or if it due to a line above perhaps? if($num_rows) { echo '<form name="fixtureform" method="POST" ...
-1
votes
2answers
63 views

Printing logout button via the view on the condition that the user is logged in (using codeigniter) [closed]

I've been tinkering with the echo statement to make my logout button print in my header (when a user is logged in) but I keep either getting errors of this nature: Parse error: syntax error, ...
1
vote
2answers
151 views

“Parse error: syntax error, unexpected $end” For my uni registration assignment [closed]

I am new to php so I used a Youtube tutorial to create this script, however the uploader seems to have disappeared so I cannot ask him any questions. My login form seems to work fine but the ...
-1
votes
1answer
113 views

PHP eval parse error

I have following code: <?php function calculate_string( $mathString ) { $mathString = trim($mathString); // trim white spaces $mathString = preg_replace("/[^0-9\(\)\+\-\*\/\.]/", "", ...
1
vote
1answer
44 views

Php Parse Error “For-Loop” [closed]

is it possible to do this? here is my code and error: for ($i=1; ; $i { if (is_numeric($row[$i])) { //Error Line $c .= ",".$row[$i]; } else { $c .=",'".$row[$i]."'"; } } $c.=")"; ...
1
vote
1answer
108 views

Haskell - defining a function with guards inside a 'where'

I'm just starting out at teaching myself Haskell. This code is supposed to do prime factorisation: divides :: Integer -> Integer -> Bool divides small big = (big `mod` small == 0) ...
0
votes
3answers
253 views

Parse error: syntax error, unexpected '}', expecting T_STRING client.php on line 137 [closed]

Here is the code, I cannot find any unenclosed single or double quotes - but when executed it returns Parse error: syntax error, unexpected '}', expecting T_STRING client.php on line 137 : ...
152
votes
2answers
6k views

In PHP, why does </script> not show a parse error?

I was running the following PHP code: <?php </script> ?> There were no parse errors and the output was "?>" (example). In similar cases I do get a parse error: <?php ...
-1
votes
4answers
149 views

Parse error: syntax error, unexpected T_ELSE - WHY? [closed]

So I have the following code on my index.php: <?php define('WP_USE_THEMES', false); // Don't use WP themes require('../wp-load.php'); // Allows the use of WP functions ?> <?php // Check if ...
1
vote
2answers
330 views

PHP, unexpected T_IF, expecting T_FUNCTION in xxx file on line xxx

Very strange, I got code running on my localhost, but when I deployed it on remote server. it got T_IF error. The code is as follow: The xxx line is around: $experiment['import_result'] = TRUE; ...
0
votes
2answers
808 views

Prestashop: new error in admin's modules page, can't see module anymore, but module working fine [closed]

I created a module (called send code) for my store following the tutorial in the documentation. The module is working fine, but now, when I go to the modules page in the admin area, I get this error ...
0
votes
2answers
163 views

Haskell - Parse error on input '->'

I created this program to return a list of positions of a matrix that no has zero value. This Code: type Pos = (Int,Int) type Matrix = [[Int]] v0 [Pos]->Matrix->[Pos] v0 [] m =[] v0 [p:ps] m ...
1
vote
1answer
116 views

Haskell - Parse error in pattern

This code: validate :: Matrix-> Bool validate x: [] = length x validate x: xs = (length x == lenght.head $ xs) == (validate tail xs) produces this error: Parse error in pattern: validate ...

1 2 3