Re: [PHP] Size Limit for PHP scripts

2001-03-30 Thread Yasuo Ohgaki
Typo in my post ""Yasuo Ohgaki"" <[EMAIL PROTECTED]> wrote in message 9a3hpe$n1m$[EMAIL PROTECTED]">news:9a3hpe$n1m$[EMAIL PROTECTED]... SNIP > > BTW, do you use multi-type char codeset? BTW, do you use multi-byte char codeset? > Regards, > > -- > Yasuo Ohgaki -- PHP General Mailing List (h

Re: [PHP] Size Limit for PHP scripts

2001-03-30 Thread Yasuo Ohgaki
contain class definitions. My average page includes 8 classes and my average class is 250-400 lines of code. Have you debugged your individual scripts first before including them in other pages? Cal http://www.calevans.com -Original Message- From: Wally Hartshorn [mailto:[EMAIL PROTECTED]

RE: [PHP] Size Limit for PHP scripts

2001-03-30 Thread Greg Donald
March 30, 2001 1:53 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Size Limit for PHP scripts > > > Is there a limit to the size of PHP scripts? I'm having a problem > in which scriptA.php is including() scriptB.php, which then > requires() scriptC.php. The result is that

Re: [PHP] Size Limit for PHP scripts

2001-03-30 Thread Jon Rosenberg
> Sent: Friday, March 30, 2001 4:33 PM Subject: RE: [PHP] Size Limit for PHP scripts > The script I'm calling (member.php) is 41K bytes (1,200 lines) > It includes() global.php, which is 8K bytes (300 lines). > That in turn requires() sessions.php, which is 13K bytes (370 lines). &

Re: [PHP] Size Limit for PHP scripts

2001-03-30 Thread Michael Kimsal
To reiterate Cal's statement, we've not had issues with PHP size, other than speed. HUGE scripts take longer to compile and parse, but overall we've been fine. I've got scripts that are in excess of 1500 lines, which also include templates and other classes, which would often put the combined fil

RE: [PHP] Size Limit for PHP scripts

2001-03-30 Thread Wally Hartshorn
calevans.com -Original Message- From: Wally Hartshorn [mailto:[EMAIL PROTECTED]] Sent: Friday, March 30, 2001 1:53 PM To: [EMAIL PROTECTED] Subject: [PHP] Size Limit for PHP scripts Is there a limit to the size of PHP scripts? I'm having a problem in which scriptA.php is including() sc

RE: [PHP] Size Limit for PHP scripts

2001-03-30 Thread Cal Evans
http://www.calevans.com -Original Message- From: Wally Hartshorn [mailto:[EMAIL PROTECTED]] Sent: Friday, March 30, 2001 1:53 PM To: [EMAIL PROTECTED] Subject: [PHP] Size Limit for PHP scripts Is there a limit to the size of PHP scripts? I'm having a problem in which scriptA.php is including() s

[PHP] Size Limit for PHP scripts

2001-03-30 Thread Wally Hartshorn
Is there a limit to the size of PHP scripts? I'm having a problem in which scriptA.php is including() scriptB.php, which then requires() scriptC.php. The result is that PHP itself dies. If I remove some code from scriptA.php to reduce the size of the script, it works fine. (The code that I'm re