[PHP] Re: problem with sessions config.

2008-03-22 Thread Nilesh Govindrajan
N . Boatswain wrote: Hello guys; i'm having a problem with session behavior; i'm going straight to it, but first some considerations: PHP Version 5.2.5IIF 5.1Running on localhost (XP machine)I start sessions at the top of every page. A the start of a test page, just as example, i do the

[PHP] Memory Leaks

2008-03-22 Thread Nilesh Govindrajan
I am having 2 memory leaks while calling phpinfo() via FastCGI (lighttpd) when session.auto_start is 1. Otherwise there is no memory leak. Here are the two memory leaks - [Sat Mar 22 14:07:49 2008] Script: '/var/www/lighttpd/test.php' /root/php-5.2.5/ext/standard/url_scanner_ex.c(305) :

Re: [PHP] strange list behavior when replying to message on list

2008-03-22 Thread Nilesh Govindrajan
Greg Bowser wrote: Yeah. I always forget to reply to all. The problem is with the headers. Whereas other lists have a reply-to: mailing list address in the email headers, this list does not. It annoys the hell out of me. On Sat, Mar 22, 2008 at 11:13 AM, Mark Weaver [EMAIL PROTECTED] wrote:

Re: [PHP] strange list behavior when replying to message on list

2008-03-22 Thread Nilesh Govindrajan
Orther -Original Message- From: Mark Weaver [mailto:[EMAIL PROTECTED] Sent: Saturday, March 22, 2008 10:57 AM To: php-general@lists.php.net Subject: Re: [PHP] strange list behavior when replying to message on list Nilesh Govindrajan wrote: Greg Bowser wrote: Yeah. I always forget

Re: [PHP] strange list behavior when replying to message on list

2008-03-22 Thread Nilesh Govindrajan
Shawn McKenzie wrote: Mark Weaver wrote: Andrew Ballard wrote: On Sat, Mar 22, 2008 at 11:13 AM, Mark Weaver [EMAIL PROTECTED] wrote: Hi all, I'm wondering if anyone else happens to be using Mozilla Thunderbird and seeing this behavior, and also if this behavior is a feature or a bug.

[PHP] Re: pulling text from a file

2008-03-22 Thread Nilesh Govindrajan
Richard Kurth wrote: I have a text file that looks like the one below. I need to read the file into a database. I was trying the script below but is not working can you help? $lines = file_get_contents('clientlist1.txt'); $find=Address:; $f= strstr($f,$find); $separat=City:; $ADDRESS =

[PHP] Re: spider

2008-03-22 Thread Nilesh Govindrajan
tedd wrote: Hi gang: How do you spider a remote web site in php? I get the general idea, which is to take the root page, strip out the links and repeat the process on those links. But, what's the code? Does anyone have an example they can share or a direction for me to take? Also, is there

[PHP] Re: question about customized error

2008-03-22 Thread Nilesh Govindrajan
Sudhakar wrote: if a user by mistake types the wrong url directly in the address bar ex= www.website.com/abou.php instead of typing www.website.com/aboutus.php instead of the browser displaying File not found or a 404 error message i would like to display a customized page which will still have

[PHP] Re: selling gpl software?

2008-03-22 Thread Nilesh Govindrajan
Colin Guthrie wrote: Larry Garfield wrote: If the code is work for hire and the initial ownership is with the client/company, then there is no distribution and so you are not required to do anything. That includes if you are a full time employee of the company. OK, that's more or less my

Re: [PHP] strange list behavior when replying to message on list

2008-03-23 Thread Nilesh Govindrajan
Mark Weaver wrote: Nilesh Govindrajan wrote: Shawn McKenzie wrote: Mark Weaver wrote: Andrew Ballard wrote: On Sat, Mar 22, 2008 at 11:13 AM, Mark Weaver [EMAIL PROTECTED] wrote: Hi all, I'm wondering if anyone else happens to be using Mozilla Thunderbird and seeing this behavior

[PHP] Re: question about linux editor

2008-03-25 Thread Nilesh Govindrajan
Sudhakar wrote: i need to connect to the linux server using an editor. can anyone suggest which would be an ideal linux editor to connect to the server. apart from the ip address, username and password are there any other details i would need to connect to the server. please advice. thanks.

[PHP] tidy configuration disabled still html is generated

2008-03-25 Thread Nilesh Govindrajan
I have tried everything. setting tidy.clean_output = Off or 0 in php.ini OR using ini_set but still tidy makes a plaintext file html. help. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] tidy configuration disabled still html is generated solved

2008-03-25 Thread Nilesh Govindrajan
Nilesh Govindrajan wrote: I have tried everything. setting tidy.clean_output = Off or 0 in php.ini OR using ini_set but still tidy makes a plaintext file html. help. I am sorry. :) It was a silly problem. FIXED. :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] tidy configuration disabled still html is generated

2008-03-25 Thread Nilesh Govindrajan
Wolf wrote: Nilesh Govindrajan [EMAIL PROTECTED] wrote: I have tried everything. setting tidy.clean_output = Off or 0 in php.ini OR using ini_set but still tidy makes a plaintext file html. help. Contact the creators of Tidy I told na it was a silly problem. didn't you get

Re: [PHP] extract column from multidimentional array

2008-09-29 Thread Nilesh Govindrajan
On Monday 29 September 2008 09:34:10 pm It flance wrote: Hi, below you will find the code for a small script where i'm able to extract a row but not a column. So the question is how can I do that. Here is the code: ?php $arr = array( array('00', '01', '02', '03'),

Re: [PHP] error warning while connecting to posgreSQL

2008-09-29 Thread Nilesh Govindrajan
On Monday 29 September 2008 10:02:06 pm Richard Lynch wrote: -Original Message- i try to understand the error_reporting statement and to avoid all warning or error messages. for example i stop the postgresql service and i try to connect to it. when error_reporting is set to

Re: [PHP] extract column from multidimentional array

2008-09-29 Thread Nilesh Govindrajan
On Monday 29 September 2008 10:15:29 pm Philip Thompson wrote: On Sep 29, 2008, at 11:08 AM, Boyd, Todd M. wrote: -Original Message- From: It flance [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2008 11:04 AM To: php-general@lists.php.net Subject: [PHP] extract column

[PHP] Zend_Form: How to change positions of elements ?

2008-09-30 Thread Nilesh Govindrajan
Hi, I am new to Zend Framework. I would like to know how to change the positions of elements created using Zend_Form. I mean that how do I place two elements one near other instead of in a top-down manner ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: [fw-general] Re: Zend_Form: How to change positions of elements ?

2008-09-30 Thread Nilesh Govindrajan
On Tuesday 30 September 2008 07:13:11 pm Colin Guthrie wrote: Nilesh Govindrajan wrote: I am new to Zend Framework. I would like to know how to change the positions of elements created using Zend_Form. I mean that how do I place two elements one near other instead of in a top-down

Re: [PHP] db_* = pg_*/my_*/ifx_* ?

2008-09-30 Thread Nilesh Govindrajan
On Saturday 27 September 2008 10:01:51 pm Michelle Konzack wrote: Hello, I am using some crapy software, which does not allow switching the Database, where I use PostgreSQL since 1999 and those crapy software force me to install mysql, sqlite and other databases which let the

Re: [PHP] Making $_POST and $_FILES play together nicely

2008-09-30 Thread Nilesh Govindrajan
On Tuesday 30 September 2008 09:41:33 pm Mike Potter wrote: Hi, I have a PHP5 .class file that validates form inputs and sends notification emails from contact pages. Recently a client wanted to add a file upload function. No sweat, I thought. Well, I can't get the $_FILES portion to

Re: [PHP] Login

2008-10-07 Thread Nilesh Govindrajan
? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Nilesh Govindrajan ([EMAIL PROTECTED]) iTech7 Site and Server Administrator www.itech7.com

Re: [PHP] Login

2008-10-07 Thread Nilesh Govindrajan
On Wednesday 08 October 2008 06:14:33 am Terry J Daichendt wrote: I want to open a page if a login is correct and another if not. What is the function to open a page in PHP? Can you show me a simple example of the syntax? There is no such function. You have many options like redirecting a

Re: [PHP] PHP-FPM security.limit_extensions

2012-02-23 Thread Nilesh Govindrajan
Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php I'm not sure why would you want to do that. Why dont you use rewrite rules instead? -- Nilesh Govindrajan http://nileshgr.com