Re: [PHP] 'weird error' possibly related to APC... how to begin debugging?

2006-08-15 Thread Richard Lynch
On Tue, August 15, 2006 2:27 pm, Jochem Maas wrote: the error is this: PHP Fatal error: Exception thrown without a stack frame in Unknown on line 0 I've seen messages like this in evaled code. I think I also saw something like this that was something really sick in the guts of PHP

Re: [PHP] weird error, cookies??

2005-12-01 Thread David Grant
Hi Angelo, This simply means that the redirection keeps going, like so: foo.php ?php header('Location: /bar.php'); ? bar.php ?php header('Location /foo.php'); ? Check the logic in your application that decides if the user gets redirected and make sure you're not making any incorrect

Re: [PHP] weird error, cookies??

2005-12-01 Thread Jochem Maas
Angelo Zanetti wrote: Hi guys. Been working on my site and then been trying to navigate through it, the once page redirects to another. then all of a sudden I get this weird popup (in mozilla) Redirection limit for this URL exceeded. Unable to load requested page Also IE seems to timeout.

Re: [PHP] weird error, cookies??

2005-12-01 Thread Matt Monaco
Check your http access file to verify what david and jochem have said, you should see lines upon lines of access for the pages in question. Jochem Maas [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Angelo Zanetti wrote: Hi guys. Been working on my site and then been trying to

Re: [PHP] Weird Error Help

2005-02-18 Thread Joe Harman
Thanks for your help guys... I can't seem to locate the culprut though... here is my line of code it refers to: echo /tr.$nav_bar_end; all it does is close a table though... i hate to blame this error on the PHP processor... but I am

Re: [PHP] Weird Error Help

2005-02-17 Thread Greg Donald
On Thu, 17 Feb 2005 17:04:06 -0500, Joe Harman [EMAIL PROTECTED] wrote: Hey has anyone had an error like this one? and have a solution --- Warning: Unexpected character in input: '' (ASCII=1) state=1 in **/_eid_page_functions.php on line 173

Re: [PHP] Weird Error Help

2005-02-17 Thread Richard Lynch
Joe Harman wrote: Hey has anyone had an error like this one? and have a solution --- Warning: Unexpected character in input: '' (ASCII=1) state=1 in **/_eid_page_functions.php on line 173 it appears to be very random...

Re: [PHP] weird error, might be javascript?

2004-08-13 Thread Harlequin
I have had similar problems in the past Angelo and viewing the source of the HTML file usually helps identify and localise the problematic line. -- - Michael Mason Arras People www.arraspeople.co.uk - John Holmes [EMAIL PROTECTED] wrote

Re: [PHP] weird error, might be javascript?SOLVED

2004-08-13 Thread Angelo Zanetti
Hi, Well I had to basically reconstruct my Javascript file by uncommenting a function and testing that it didnt give an error. I eventually found a small error. It was a really long process and the line numbers in the errrors didnt help. So, thanks to those that contributed anyway. Angelo

Re: [PHP] weird error, might be javascript?

2004-08-11 Thread John Holmes
Angelo Zanetti wrote: I have been working on a pretty big project over the last couple of months and then all of a sudden I started getting errors in my browser, the error in the bottom left corner with the yellow icon. anyway Im not sure what causes these errors. It says that it expects a ) on

Re: [PHP] weird error, might be javascript?

2004-08-11 Thread Angelo Zanetti
yes but even If I take the page source, its not anywhere near 597 lines long...any other ideas? Sorry forgot to mention it in initial post. John Holmes [EMAIL PROTECTED] 8/11/2004 12:44:25 PM Angelo Zanetti wrote: I have been working on a pretty big project over the last couple of months

Re: [PHP] weird error, might be javascript?

2004-08-11 Thread John Holmes
Angelo Zanetti wrote: yes but even If I take the page source, its not anywhere near 597 lines long...any other ideas? Sorry forgot to mention it in initial post. Do you have a URL? It's a Javascript error, either way. -- John Holmes php|architect - The magazine for PHP professionals -

Re: [PHP] weird error, might be javascript?

2004-08-11 Thread Jason Wong
Please do not top post. On Wednesday 11 August 2004 19:03, Angelo Zanetti wrote: yes but even If I take the page source, its not anywhere near 597 lines long...any other ideas? Sorry forgot to mention it in initial post. Depending on your browser and how you view the source the line reported

Re: [PHP] weird error, might be javascript?

2004-08-11 Thread Justin Patrin
On Wed, 11 Aug 2004 13:03:23 +0200, Angelo Zanetti [EMAIL PROTECTED] wrote: yes but even If I take the page source, its not anywhere near 597 lines long...any other ideas? Sorry forgot to mention it in initial post. How long is the JavaScript file? Look at line 597 in that file. If that also

Re: [PHP] weird error

2004-06-03 Thread Miguel J. Jiménez
Better if you use $_SERVER['REMOTE_ADDR'] and so on... pagongski wrote: Hi guys, I recently installed easy-php on my laptop so i could work on the go without having to upload my scripts to the server to test them out. The problem is that when i tried one of my scripts on it, i

Re: [PHP] weird error

2004-06-03 Thread John W. Holmes
From: pagongski [EMAIL PROTECTED] Notice: Use of undefined constant REMOTE_ADDR - assumed 'REMOTE_ADDR' in c:\win2kapp\easyphp1-7\www\index.php on line 35 Notice: Undefined variable: HTTP_REFERER in . I have register globals on. (was off so i turned them on

Re: [PHP] weird error

2004-06-03 Thread Marek Kilimajer
John W. Holmes wrote: From: pagongski [EMAIL PROTECTED] Notice: Use of undefined constant REMOTE_ADDR - assumed 'REMOTE_ADDR' in c:\win2kapp\easyphp1-7\www\index.php on line 35 Notice: Undefined variable: HTTP_REFERER in . I have register globals on. (was off so i

RE: [PHP] weird error

2004-06-03 Thread Ford, Mike [LSS]
On 03 June 2004 15:52, pagongski wrote: Hi guys, I recently installed easy-php on my laptop so i could work on the go without having to upload my scripts to the server to test them out. The problem is that when i tried one of my scripts on it, i get some weird errors,

Re: [PHP] weird error

2004-06-03 Thread John W. Holmes
From: Marek Kilimajer [EMAIL PROTECTED] The second error shows you did not turn on register globals. Look at a phpinfo() page to confirm you edited the right php.ini. You must restart your webserver after the change, also. Or he typed the url into the location bar, or selected a bookmark,

RE: [PHP] Weird error...

2002-03-22 Thread Kevin Stone
I notice you're incrementing the row offset. You shouldn't use mysql_result() to extract multiple fields like that. It will be much faster using mysql_fetch_array() once and then extracting any data you need from the resulting associative array as many times as you need. Mysql_result() is

RE: [PHP] Weird error...

2002-03-22 Thread Kevin Stone
]] Sent: Friday, March 22, 2002 10:38 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] Weird error... -- I notice you're incrementing the row offset. You shouldn't use mysql_result() to extract multiple fields like that. It will be much faster using mysql_fetch_array() once and then extracting

Re: [PHP] Weird error...

2001-05-02 Thread Richard Verstegen
Check your php.ini [SESSION] url_rewriter.tags = . Richard elias [EMAIL PROTECTED] wrote in message 9coco0$uq8$[EMAIL PROTECTED]">news:9coco0$uq8$[EMAIL PROTECTED]... For some reason, whenever i run my script for the first time in the browser, the static source file get parsed and