Tagged Questions
The parse-error tag has no wiki summary.
5
votes
1answer
7k views
Node.js JSON parsing error
I am attempting to make a Facebook application with node.js, however I'm having trouble in checking signed requests. Every time I make a request, the program throws a SyntaxError: Unexpected token ...
5
votes
5answers
2k views
PHP : Custom error handler - handling parse & fatal errors
How can i handle parse & fatal errors using a custom error handler?
3
votes
1answer
169 views
PHP: Unexpected T_OBJECT_OPERATOR
I am getting the following error:
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in.. on line 52.
Line 52 is if ($result = mysqli->query....
If I comment out the line, the same error ...
3
votes
1answer
99 views
Why can't I declare an instance variable as an array of objects in PHP?
I am writing a customer management system in PHP, for use offline (i.e. on the clients computer). I have considered using Java or C# but have come to the conclusion that it is easier to let the ...
3
votes
5answers
789 views
Custom Control in ASP.NET C#
I created a simple custom control that only inherits from the Literal control, and doesn't have any extensions yet, code is empty.
Namespace: CustomControls
Class name: Literal : ...
3
votes
2answers
222 views
Logging fatal/parse errors in PHP5
I'm writing an error logging service that will be integrated into websites running on my server, that will email me error batches, etc.
So I've been trying to find out if there's a way to handle ...
3
votes
6answers
660 views
php parse error always on the last line
I'm trying to read a comment that is stored in a mysql table. For some reason I always get a parse error on the last line of the file even if the last line is blank. I'm not sure if it's relevant but ...
3
votes
1answer
1k views
Parser error using Perl XML::DOM module, “reference to invalid character number”
I am a complete Perl newb, but I am certain that learning Perl will be easier than figuring out how to parse XML in awk. I would like to parse the .sgm files from this dataset:
...
2
votes
1answer
44 views
Parse Error T_CLASS
I am trying to write a class for users of my site to login, I haven't gotten very far and am already getting errors.
<?php
function isIn () {
if(isset($_SESSION) && ...
2
votes
2answers
113 views
Parse Error [empty string] - W3C CSS Validator bug due to CSS size?
I have a problem with the following css validation:
http://www.provincia.le.it/html/portal/css.jsp
If I try to validate using "Validate by URI", I get a "Parse Error [empty string]";
If I try to ...
2
votes
1answer
123 views
Parse Error on Input '<-' inside a do block?
I'm trying to do some parsing in Haskell using Parsec. I've got a number of parsers in my code, but am getting an error on one of them:
expression2 =
do (operator lexer "|"
a <- ...
2
votes
4answers
111 views
why php use T_ in parse error?
i just want to know is there any reason/story behind to use T_ before parse error like
parse error : unexpected T_ELSE in ... blah blah blah
parse error : Unexpected T_IF in ....blah
parse error : ...
2
votes
3answers
219 views
Strange parse error with static concatenated string variable
I'm getting this error:
Parse error: syntax error, unexpected '.', expecting ',' or ';' in /var/(...)/config.php on line 5
With this (simplified) code:
<?php
class Config
{
public ...
1
vote
2answers
80 views
Why am I getting a parseerror when using jQuery's ajax()?
Can someone tell me why in the world I keep getting a parseerror in the console with the following code?
$.ajax({
url : "file.php",
data : data,
dataType : "json",
success : function ...
1
vote
2answers
99 views
Haskell: Parse error in pattern
Who likes to tell me what is wrong with this code (syntactically)?
-- merge two sorted lists
mergeX [] b res = b ++ res
mergeX a [] res = a ++ res
mergeX a:as b:bs res
| a > b = mergeX as ...
1
vote
1answer
91 views
PHP Parse Error: unexpected T_STRING, expecting T_FUNCTION [closed]
I've been trying to set up a web service to connect to an iPhone app using a great tutorial from Ray Wenderlich: ...
1
vote
4answers
72 views
PHP 4- ignore parse errors?
I have a script that uses a PHP 5 syntax that's apparently not supported in PHP 4.
like MyClass::method()->method(...)
I'm trying to display a error at the beginning of the script telling that the ...
1
vote
2answers
88 views
Parse error using lexically scoped type variables in Haskell
When I submit to GHC the code
{-# LANGUAGE MultiParamTypeClasses, FunctionalDependencies, ScopedTypeVariables #-}
class Modular s a | s -> a where modulus :: s -> a
newtype M s a = M {unM ...
1
vote
4answers
177 views
Displaying strtotime() effectively in MySQL/PHP query
This is my PHP/MySQL query, as mentioned at Displaying links in PHP/MySQL?:
http://pastebin.com/5Td9Bybn
I'll admit, I've forgotten how to use the strtotime() function effectively, as I want to show ...
1
vote
1answer
407 views
rails 3 jquery ajax call fails with statusText: “parsererror”
That might be a silly question. Sorry if that's the case.
On a rails 3 application with the latest jquery-rails gem "1.0.12" I am trying to replace html from an ajax call
$.ajax({
type: "POST",
...
1
vote
2answers
109 views
PHP XMLReader - accessing ELEMENT constant but getting T_PAAMAYIM_NEKUDOTAYIM error
Got a server running: php 5.2.17, libxml 2.7.8 with XMLReader enabled.
The problem is, it's complaining about parse error with T_PAAMAYIM_NEKUDOTAYIM when I try $xmlReader::ELEMENT.
Is there any ...
1
vote
4answers
46 views
<PHP> error in code, can't seem to find the issue
there seems to be an error in this piece of code. But i can't seem to figure out what's going wrong with it.
//Check for duplicate login ID
if($Username != '') {
$qry4 = "SELECT * FROM Login ...
1
vote
3answers
97 views
I'm getting a semicolon error in PHP and can't understand why it's a problem
This is the error message:
Parse error: syntax error, unexpected ';' in /home1/goldensu/public_html/camira/contactForm.php on line 155
and this is the code:
$sendMessage = "Someone is ...
1
vote
5answers
165 views
Managing PHP Errors
I have been searching all over the net to try and find a way to catch all errors thrown by PHP (5.3)
I have been reading through the documentation and it looks like set_error_handler is what I need ...
1
vote
2answers
137 views
awk parse error on '<' operator
I'm trying to make an alias in .alias file for tcsh.
Alias is something like this :
alias do "grep -iE '<pattern>' <file> | awk '{if($2 < 0)print}'"
When i try to run the alias it ...
1
vote
4answers
936 views
PHP Version 5.2.14 / Parse error: syntax error, unexpected T_FUNCTION, expecting ')'
I have a certain piece of code that I'm trying to use with PHP Version 5.2.14 . Is it incompatible?? I run the following,
jailshell-3.2$ php -l /XYZ/functions.php
And it gives:
Parse error: ...
1
vote
2answers
75 views
How to tell when a PHP Fatal Error is really a veiled Syntax Error, and when do they happen?
Considering the following PHP class:
class someObject {
public function broken(){
return isset($this->something()) ? 'worked' : 'didnt';
}
public function something(){
...
1
vote
4answers
1k views
PHP endforeach parse error
I'm learning PHP and CakePHP and I have a problem with the following code. When I execute it (with WAMP: PHP 5.3.0, Apache 2.2.11 and MySql 5.1.36) appears a parse error in the line of endforeach. ...
1
vote
2answers
168 views
Parse error when concat'ing a defined variable and string in a class!
I have defined a variable in a separate config file:
define('URL', 'someurl.co.uk');
However, when I try to use it to concat with a string inside a class:
class AdminEmail extends Email {
...
1
vote
3answers
810 views
PHP Parse Error
I am trying to add an echo statement after the line:
echo '<td class="today" valign="top"><a class="monthnav" href="dayPlanner.php?d='.$day.'">'.$day.'</a></td>';
It is just ...
0
votes
3answers
26 views
Parseerror with Json and Jquery
I have the following Json:
[{"label":"75001","value":"75001"},
{"label":"75002","value":"75002"},
{"label":"75003","value":"75003"},
{"label":"75004","value":"75004"},
...
0
votes
2answers
42 views
How to use ' in a single quoted string?
I use the following for a preg_replace:
$replace = '/[!\/."",#\s\-:?"]+/';
For example when I try and add ' above it gives me an error on the file:
Parse error: syntax error, unexpected ...
0
votes
1answer
23 views
/usr/include/arpa/inet.h:35:27: Parse Error in Splint
While checking my code with splint, I got one problem. At first i got an error on POSIXLIB. So I run splint with +posixlib as follows,
splint mss_client_main.c +posixlib -I ../include/
But i got ...
0
votes
2answers
16 views
Parse Error When Going To Web Application
I am getting a parse error when I go to my web application. I am not sure how to solve this, as I am new to WebApps. I have read some things about adding it into the right namespace, is that what I ...
0
votes
3answers
40 views
Binary Search Tree not working properly? (parse errors)
I'm getting parse errors in my code. I'm probably missing something silly.. but after staring at it, I can't figure out what's wrong. The errors start at line 26:
BinaryTree.cpp:26: parse error ...
0
votes
3answers
132 views
“Parse error: syntax error, unexpected T_IF in …” when I use the return statement
This is part of a bigger code, I keep getting the parse error ::: if I create the if function outside of the $return & reference it with a session it works but this is not "good" coding :::how can ...
0
votes
1answer
53 views
String was not recognized as a valid DateTime
im trying to parse exact a date based on the capture of information of a user from facebook. I get the error message: String was not recognized as a valid DateTime.
which is the best way to parse a ...
0
votes
1answer
33 views
Problem with calling jquery ajax in asp.net
i am having a strange problem, while calling ajax jquery in asp.net.. i am getting the parseError, and this is not expected, because everything is in place.
below is my webmethod.
public class ...
0
votes
1answer
42 views
cakephp: parse error in $this->model->field(
i'm getting the following syntax error:
Parse error: parse error in C:\wamp\www\merry_flowers\controllers\merry_parents_controller.php on line 12. What am I doing wrong? thanks in advance.
when i try ...
0
votes
1answer
63 views
Closing Parenthesis Throwing Parse Error in PHP eval()
Can somebody please explain to me why this code:
$string = eval("return isset($string) ? $string : false;");
issues the warning:
mod_fcgid: stderr: PHP Parse error: syntax error, unexpected ...
0
votes
2answers
31 views
php syntax checker and server disagree. Syntax checker is correct?
The syntax checker I am referring to is a neat little tool that I've used to help me check my code before committing it over our tortoiseSVN. It's never lead me astray until today.
I've made a simple ...
0
votes
2answers
57 views
PHP Parse Error: Missing a ; in if statement?
I got this error when I was running some code:
Parse error: syntax error, unexpected T_IF, expecting ',' or ';' in C:\xampp\htdocs\scanner\mine.php on line 31
Line 31 is:
...
0
votes
2answers
99 views
PHP Parse error when adding javascript
I get a Parse error: syntax error, unexpected $end when adding this piece of javascript in my php file. I don't know why adding Javascript would cause this and don't know why Javascript causes a php ...
0
votes
2answers
97 views
Parse error: syntax error, unexpected '{', expecting '(' help?
I'm trying to make a photo gallery plugin for express engine, yet it's giving me this error and everything seems to close. Any help?
$whats_gonna_happen=$_GET['pictures'];
class upload_pictures
{
...
0
votes
3answers
47 views
file editor, PHP, " problem
I have a code that takes $_POST var. However, this var may sometimes include some ", therefore it makes the var end, and it's not complete, so my editor only sends a part of file.
Is there any way how ...
0
votes
1answer
64 views
How do I handle parse and fatal errors?
I wrote a custom error handler for my site and I'm aware that PHP doesn't allow handling of parse and fatal errors. Is there something I can do to make it handle these errors? I don't want them being ...
0
votes
2answers
589 views
jQuery getJSON parseerror Expected ';'
Using IE8, jQuery 1.6.1.min.js.
The JSON that comes from the REST service seems to be valid (atleast when I validate it on jsonlint.com)
{
"requestId":"1624517264",
"acknowledge":1,
"errorCode":0,
...
0
votes
1answer
79 views
Novice parse error T_DOUBLE_ARROW
I'm starting to make my first steps into CakePHP 1.3, and I'm having a parse error I can't find. I'm trying the main tutorial and encountering this error:
Parse error: syntax error, unexpected ...
0
votes
2answers
825 views
PHP, Parse error: syntax error, unexpected T_IF, expecting T_FUNCTION
Parse error: syntax error, unexpected T_IF, expecting T_FUNCTION in C:\wamp\www\Exam Creator\cls_FillInTheBlank.php on line 31
I received this error while trying to run the cls_FillInTheBlank.php ...
0
votes
0answers
229 views
PHP parse error: syntax error in mailchimp contact form
"
Parse error: syntax error, unexpected T_IF in (this was a link to the file on my server) on line 7"
PHP is way above my head and I have no idea what to do to fix this.
Please.. help! :)
...