[PHP] Re: Form Processing

2010-11-30 Thread Pete Ford

On 29/11/10 23:54, Ron Piggott wrote:


I am unable to retrieve the value of $referral_1 from:

$new_email = mysql_escape_string ( $_POST['referral_$i'] );

why?

PHP while lopp to check if any of the fields were populated:



$i=1;
while ( $i<= 5 ) {

 $new_email = mysql_escape_string ( $_POST['referral_$i'] );

 if ( strlen ( $new_email )>  0 ) {

 }

}


The form itself:



















What am I doing wrong?

Ron

The Verse of the Day
“Encouragement from God’s Word”
http://www.TheVerseOfTheDay.info



The Daniels are on the right track, but not very clear:

First, the  elements all have the 'name' attribute set to 'email' and the 
'class' set to 'referral_1' etc. - I think you have that the wrong way round!


Second, using single quotes in the $_POST['referral_$i'] bit will not work (DPB 
is right there)  - use $_POST['referral_'.$i] or $_POST["referral_$i"]





--
Peter Ford, Developer phone: 01580 89 fax: 01580 893399
Justcroft International Ltd.  www.justcroft.com
Justcroft House, High Street, Staplehurst, Kent   TN12 0AH   United Kingdom
Registered in England and Wales: 2297906
Registered office: Stag Gates House, 63/64 The Avenue, Southampton SO17 1XS

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] LDAP, Active Directory, and permissions

2010-11-30 Thread Chris Knipe
Hi,

I've found various sources and are successfully manipulating Active
Directory from PHP on our Domain Controller - frankly, things works much
better than I expected :)

I have now reached the point where I need to set permissions on objects in
Active Directory, i.e. to restrict read permissions to certain OUs and
objects within the directory (mainly related to Exchange stuff).

Is there anything in PHP which can be used to set permissions on AD
objects?  I haven't found any reference to doing this anywhere, so I thought
I'd give it a chance here... If not, then I suppose I'll have to code some
..NET application to act as a gateway between the PHP interface and Active
Directory, but naturally I would like to do as much as possible from within
PHP itself.

Many thanks,


-- 

Regards,
Chris Knipe


Re: [PHP] EE1 plugin code/htmlentities() question

2010-11-30 Thread Richard Quadling
On 29 November 2010 19:24, Micky Hulse  wrote:
> Hello,
>
> I was looking at this ExpressionEngine plugin:
>
> 
> Description: This plugin converts reserved XML characters to entities.
>  It is used in the RSS templates.
>
> ... Curious about this code:
>
> trim(str_replace(array('/', ' '), array("/", ' '), $str));
>
> The plugin author used the above bit of code in the return statement.
>
> Just curious if their is any particular reason why one would want to
> replace / and   with / and   respectively?
>
> For example, I am writing a similar plugin which utilizes
> htmlentities()... I guess I am just wondering if I should apply the
> same code as above to my entity-converted string?
>
> Thoughts?
>
> Thanks!
> Micky

I'm guessing that   is only valid in HTML.

Not sure why / would be encoded as it isn't anything too special
outside of the closing tag.


-- 
Richard Quadling
Twitter : EE : Zend
@RQuadling : e-e.com/M_248814.html : bit.ly/9O8vFY

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Fw: Spoofing user_agent

2010-11-30 Thread Ron Piggott

The following solution works:

I set my user-agent to:
VerseOfTheDaySitemapRobot/1.0 (http://www.TheVerseOfTheDay.info)

By doing:
ini_set('user_agent', "VerseOfTheDaySitemapRobot/1.0 
(http://www.TheVerseOfTheDay.info)");

When ran by a cron job this causes AWSTATS to treat the hits as:
Unknown robot (identified by 'robot')9704+18284.82 MB30 Nov 2010 - 
07:12

The part which tricked me is that if I run the site map generator PHP script 
using a user interface the hits on the site are credited to the Firefox (the 
browser I use) user-agent string.  The following article discusses how to 
change browser user agents:
http://www.walkernews.net/2007/07/05/how-to-change-user-agent-string/ 

Ron

The Verse of the Day
“Encouragement from God’s Word”
http://www.TheVerseOfTheDay.info


[PHP] Little Assistance...

2010-11-30 Thread Don Wieland

Hi all,

I am needing to find someone with extensive mySQL chops to assist me  
in building a few mySQL queries to run from PHP. Compensation, of  
course...


Probably an hour or so of effort for qualified. Please contact me  
PRIVATELY if interested.


Don

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] EE1 plugin code/htmlentities() question

2010-11-30 Thread Micky Hulse
Hi Richard! Thanks for the reply, I really appreciate the help. :)

On Tue, Nov 30, 2010 at 5:49 AM, Richard Quadling  wrote:
> I'm guessing that   is only valid in HTML.

 I see.

Ah, it looks like I need to be Googling for "htmlentities and xml".

Thanks for tip!

> Not sure why / would be encoded as it isn't anything too special
> outside of the closing tag.

Hrmm, yah. That must be an EE-specific thing... IIRC, in EE1, the
slashes needed to be converted from entities to a "/" when coming out
of the DB?

Ah, here we go:

[[

The SLASH constant has been removed from the template parser, and
forward slashes are no longer converted to entities.

]]

- 


Thanks again Richard! Much appreciated!

Cheers,
Micky

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] PHP shows nothing

2010-11-30 Thread Mohammad Taghi Khalifeh
Hi there,
I have a package written in pure PHP, some .php files that refer to others
via require_once(''),
but when I try to see package's contents via a browser, the pacakge just
shows nothing: a blank page.
I've activated all log levels, and it seems that php doesn't encounter any
problem.
I'm using PHP 5.3.3 and apache httpd 2.2.
FYI, I'm new to PHP and this mailing list :)
I would appreciate if someone could help me.


Best
Mohammad


RE: [PHP] PHP shows nothing

2010-11-30 Thread Bob McConnell
From: Mohammad Taghi Khalifeh

> Hi there,
> I have a package written in pure PHP, some .php files that refer to
others
> via require_once(''),
> but when I try to see package's contents via a browser, the pacakge
just
> shows nothing: a blank page.
> I've activated all log levels, and it seems that php doesn't encounter
any
> problem.
> I'm using PHP 5.3.3 and apache httpd 2.2.
> FYI, I'm new to PHP and this mailing list :)
> I would appreciate if someone could help me.

One of the irregularities about require_once is that if there is a
syntax error anywhere in the chain, the interpreter simply exits without
emitting anything. If you have display errors turned off, you get
nothing at all. There may be clues in the Apache error log, but don't
depend on it. To debug, enable errors temporarily, or print some bread
crumbs at the start of each file. That should at least help identify how
far you get before it fails.

Bob McConnell

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP shows nothing

2010-11-30 Thread Steve Staples
On Tue, 2010-11-30 at 22:26 +0330, Mohammad Taghi Khalifeh wrote:
> Hi there,
> I have a package written in pure PHP, some .php files that refer to others
> via require_once(''),
> but when I try to see package's contents via a browser, the pacakge just
> shows nothing: a blank page.
> I've activated all log levels, and it seems that php doesn't encounter any
> problem.
> I'm using PHP 5.3.3 and apache httpd 2.2.
> FYI, I'm new to PHP and this mailing list :)
> I would appreciate if someone could help me.
> 
> 
> Best
> Mohammad


Pacakges, as in the classes?   if you're trying to view a class file,
then yes, you won't (err... usually shouldn't) see anything.  If you
were to go to the main page that actually builds the pages, utilizes the
classes and stuff, then you should see something.

There is also another potential issue.  There was a godaddy server that
i used to use, i switched over a site to their servers, and all of a
sudden, the site didn't show up.   The issue was that there were either
trailing spaces after the ?>, or there was no closing ?> for the php
file.  

Make sure that the page you're trying to pull up has some kind of echo,
or at least output of any type... if that fails, then you can try
adding:
error_reporting(E_ALL);
to the top of the page you're trying to view, to see if there are any
errors it is generating.

just some things to think/check...

good luck, and Welcome to PHP!!!

Steve


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP shows nothing

2010-11-30 Thread Mohammad Taghi Khalifeh
On Tue, Nov 30, 2010 at 10:38 PM, Bob McConnell  wrote:

> From: Mohammad Taghi Khalifeh
>
> > Hi there,
> > I have a package written in pure PHP, some .php files that refer to
> others
> > via require_once(''),
> > but when I try to see package's contents via a browser, the pacakge
> just
> > shows nothing: a blank page.
> > I've activated all log levels, and it seems that php doesn't encounter
> any
> > problem.
> > I'm using PHP 5.3.3 and apache httpd 2.2.
> > FYI, I'm new to PHP and this mailing list :)
> > I would appreciate if someone could help me.
>
> One of the irregularities about require_once is that if there is a
> syntax error anywhere in the chain, the interpreter simply exits without
> emitting anything. If you have display errors turned off, you get
> nothing at all. There may be clues in the Apache error log, but don't
> depend on it. To debug, enable errors temporarily, or print some bread
> crumbs at the start of each file. That should at least help identify how
> far you get before it fails.
>
the files are so many,  so I think tracking problem by printing some bread
crumbs at the start of each file is not easy,
something that might help is that I've turned on magic_quotes_gpc because of
the package developer's suggestion.
but I got this warning in both php log:
"PHP Warning:  Directive 'magic_quotes_gpc' is deprecated in PHP 5.3 and
greater in Unknown on line 0"
is this warning mean that 'magic_quotes_gpc' will not work properly? so
whats the alternative?

Bob McConnell
>


Re: [PHP] PHP shows nothing

2010-11-30 Thread tedd

At 10:26 PM +0330 11/30/10, Mohammad Taghi Khalifeh wrote:

Hi there,
I have a package written in pure PHP, some .php files that refer to others
via require_once(''),
but when I try to see package's contents via a browser, the pacakge just
shows nothing: a blank page.
I've activated all log levels, and it seems that php doesn't encounter any
problem.
I'm using PHP 5.3.3 and apache httpd 2.2.
FYI, I'm new to PHP and this mailing list :)
I would appreciate if someone could help me.


Best
Mohammad


Mohammad;

Do the included files run OK?

If there are any errors in them, you may get a blank page.

To trouble shoot this, I typically place an:

 echo('aaa');

 in the first include. That way, if I see 'aaa' at the top of the web 
page, then I know the include has loaded properly.


Cheers,

tedd

--
---
http://sperling.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP shows nothing

2010-11-30 Thread Mohammad Taghi Khalifeh
On Tue, Nov 30, 2010 at 10:39 PM, Steve Staples  wrote:

> On Tue, 2010-11-30 at 22:26 +0330, Mohammad Taghi Khalifeh wrote:
> > Hi there,
> > I have a package written in pure PHP, some .php files that refer to
> others
> > via require_once(''),
> > but when I try to see package's contents via a browser, the pacakge just
> > shows nothing: a blank page.
> > I've activated all log levels, and it seems that php doesn't encounter
> any
> > problem.
> > I'm using PHP 5.3.3 and apache httpd 2.2.
> > FYI, I'm new to PHP and this mailing list :)
> > I would appreciate if someone could help me.
> >
> >
> > Best
> > Mohammad
>
>
> Pacakges, as in the classes?   if you're trying to view a class file,
> then yes, you won't (err... usually shouldn't) see anything.  If you
> were to go to the main page that actually builds the pages, utilizes the
> classes and stuff, then you should see something.
>
By saying Packages, I just meant  a bunch of files. there is no classes.


> There is also another potential issue.  There was a godaddy server that
> i used to use, i switched over a site to their servers, and all of a
> sudden, the site didn't show up.   The issue was that there were either
> trailing spaces after the ?>, or there was no closing ?> for the php
> file.
>
> Make sure that the page you're trying to pull up has some kind of echo,
> or at least output of any type... if that fails, then you can try
> adding:
> error_reporting(E_ALL);
> to the top of the page you're trying to view, to see if there are any
> errors it is generating.
>
> just some things to think/check...
>
> good luck, and Welcome to PHP!!!
>
> Steve
>
Thank you  very much for your "things" Steve, I'll check them all.

Mohammad



>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


RE: [PHP] PHP shows nothing

2010-11-30 Thread Bob McConnell
From: Mohammad Taghi Khalifeh

> On Tue, Nov 30, 2010 at 10:38 PM, Bob McConnell  wrote:
>> From: Mohammad Taghi Khalifeh
>>> Hi there,
>>> I have a package written in pure PHP, some .php files that refer to
>>others
>>> via require_once(''),
>>> but when I try to see package's contents via a browser, the pacakge
>>just
>>> shows nothing: a blank page.
>>> I've activated all log levels, and it seems that php doesn't
encounter
>>any
>>> problem.
>>> I'm using PHP 5.3.3 and apache httpd 2.2.
>>> FYI, I'm new to PHP and this mailing list :)
>>> I would appreciate if someone could help me.
>>
>> One of the irregularities about require_once is that if there is a
>> syntax error anywhere in the chain, the interpreter simply exits
without
>> emitting anything. If you have display errors turned off, you get
>> nothing at all. There may be clues in the Apache error log, but don't
>> depend on it. To debug, enable errors temporarily, or print some
bread
>> crumbs at the start of each file. That should at least help identify
how
>> far you get before it fails.
> 
> the files are so many,  so I think tracking problem by printing some
> bread crumbs at the start of each file is not easy,
> something that might help is that I've turned on magic_quotes_gpc
because
> of the package developer's suggestion.
> but I got this warning in both php log:
> 
> "PHP Warning:  Directive 'magic_quotes_gpc' is deprecated in PHP 5.3
and
> greater in Unknown on line 0" 
> is this warning mean that 'magic_quotes_gpc' will not work properly?
so
> whats the alternative?

No, As long as it is just a warning it still works correctly, The
message simply points out that magic quotes was a terrible idea and they
are finally going to remove it from the language. You should never have
to use it.

You will probably have to selectively add breadcrumbs to isolate which
file or files are causing your problem. Even if you put them in every
fourth file, you at least get some idea where to start digging.

Bob McConnell

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP shows nothing

2010-11-30 Thread Mohammad Taghi Khalifeh
Bob and tedd

On Tue, Nov 30, 2010 at 11:20 PM, Bob McConnell  wrote:

> From: Mohammad Taghi Khalifeh
>
> > On Tue, Nov 30, 2010 at 10:38 PM, Bob McConnell  wrote:
> >> From: Mohammad Taghi Khalifeh
> >>> Hi there,
> >>> I have a package written in pure PHP, some .php files that refer to
> >>others
> >>> via require_once(''),
> >>> but when I try to see package's contents via a browser, the pacakge
> >>just
> >>> shows nothing: a blank page.
> >>> I've activated all log levels, and it seems that php doesn't
> encounter
> >>any
> >>> problem.
> >>> I'm using PHP 5.3.3 and apache httpd 2.2.
> >>> FYI, I'm new to PHP and this mailing list :)
> >>> I would appreciate if someone could help me.
> >>
> >> One of the irregularities about require_once is that if there is a
> >> syntax error anywhere in the chain, the interpreter simply exits
> without
> >> emitting anything. If you have display errors turned off, you get
> >> nothing at all. There may be clues in the Apache error log, but don't
> >> depend on it. To debug, enable errors temporarily, or print some
> bread
> >> crumbs at the start of each file. That should at least help identify
> how
> >> far you get before it fails.
> >
> > the files are so many,  so I think tracking problem by printing some
> > bread crumbs at the start of each file is not easy,
> > something that might help is that I've turned on magic_quotes_gpc
> because
> > of the package developer's suggestion.
> > but I got this warning in both php log:
> >
> > "PHP Warning:  Directive 'magic_quotes_gpc' is deprecated in PHP 5.3
> and
> > greater in Unknown on line 0"
> > is this warning mean that 'magic_quotes_gpc' will not work properly?
> so
> > whats the alternative?
>
> No, As long as it is just a warning it still works correctly, The
> message simply points out that magic quotes was a terrible idea and they
> are finally going to remove it from the language. You should never have
> to use it.
>
> You will probably have to selectively add breadcrumbs to isolate which
> file or files are causing your problem. Even if you put them in every
> fourth file, you at least get some idea where to start digging.
>
> Bob McConnell
>

As you recommended, by adding breadcrumbs, I found the hotspot: pg_connect()
Actually, somewhere php tryes to connect to postgresql via pg_connect().
The strange thing about it is that program dies in it without any echo.
providing connection information as $connection_string, the below block ends
the program:

if(!$db = @pg_connect($connection_string)) {
return FALSE;
}
return $db;

how can I find the problem and fix it?


Re: [PHP] PHP shows nothing

2010-11-30 Thread Marc Guay
>        if(!$db = @pg_connect($connection_string)) {
>                return FALSE;
>        }
>        return $db;
>
> how can I find the problem and fix it?


The @ symbol is telling it to ignore errors.  Remove it and you'll see
them if that's where the problem is.

http://php.net/manual/en/language.operators.errorcontrol.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP shows nothing

2010-11-30 Thread Mohammad Taghi Khalifeh
Marc

On Wed, Dec 1, 2010 at 1:02 AM, Marc Guay  wrote:

> >if(!$db = @pg_connect($connection_string)) {
> >return FALSE;
> >}
> >return $db;
> >
> > how can I find the problem and fix it?
>
>
> The @ symbol is telling it to ignore errors.  Remove it and you'll see
> them if that's where the problem is.
>
> http://php.net/manual/en/language.operators.errorcontrol.php
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
> Thanks for advise (I didn't know that). but removing @ did not change
anything.
it seems that the problem is in pg_connect().


Re: [PHP] PHP shows nothing

2010-11-30 Thread Daniel P. Brown
On Tue, Nov 30, 2010 at 16:51, Mohammad Taghi Khalifeh
 wrote:
> it seems that the problem is in pg_connect().

Do you have PostgreSQL support compiled into PHP?

Command line:
php -i | egrep -i 'postgres|pgsql'

Web:


-- 

Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting
(866-) 725-4321
http://www.parasane.net/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] LDAP, Active Directory, and permissions

2010-11-30 Thread Tommy Pham
> -Original Message-
> From: ckn...@savage.za.org [mailto:ckn...@savage.za.org] On Behalf Of
> Chris Knipe
> Sent: Tuesday, November 30, 2010 4:47 AM
> To: php-general@lists.php.net
> Subject: [PHP] LDAP, Active Directory, and permissions
> 
> Hi,
> 
> I've found various sources and are successfully manipulating Active
> Directory from PHP on our Domain Controller - frankly, things works much
> better than I expected :)
> 
> I have now reached the point where I need to set permissions on objects in
> Active Directory, i.e. to restrict read permissions to certain OUs and
objects
> within the directory (mainly related to Exchange stuff).
> 
> Is there anything in PHP which can be used to set permissions on AD
> objects?  I haven't found any reference to doing this anywhere, so I
thought
> I'd give it a chance here... If not, then I suppose I'll have to code some
..NET
> application to act as a gateway between the PHP interface and Active
> Directory, but naturally I would like to do as much as possible from
within
> PHP itself.
> 
> Many thanks,
> 
> 
> --
> 
> Regards,
> Chris Knipe

Chris,

1) Shouldn't the OU security permissions be set within the AD itself?
2) If the above is done, then the user account that's being authenticated
shouldn't be able to access privileged information.

Just curious, are you using phpldapadmin?

Regards,
Tommy


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP shows nothing

2010-11-30 Thread Mohammad Taghi Khalifeh
Daniel

On Wed, Dec 1, 2010 at 1:28 AM, Daniel P. Brown
wrote:

> On Tue, Nov 30, 2010 at 16:51, Mohammad Taghi Khalifeh
>  wrote:
> > it seems that the problem is in pg_connect().
>
> Do you have PostgreSQL support compiled into PHP?
>
>Command line:
>php -i | egrep -i 'postgres|pgsql'
>
>Web:
> ?>
>

In Command line output, there was --with-pgsql=shared and
--with-pdo-pgsql=shared,
but phpinfo() did not load any library related to pgsql. so I figured out
that some libraries are not installed.
Installing php-pgsql package from fedora repos, problem solved.
Thank you so much for your help: it works for me very well. :)

Other thing that I want to know is that,
somewhereI read
that loading pdo drivers
as shared libraries are not recommended. whats wrong with that? and how can
I change that?

Mohammad


RE: [PHP] LDAP, Active Directory, and permissions

2010-11-30 Thread Chris Knipe
Hi,

> Chris,
> 
> 1) Shouldn't the OU security permissions be set within the AD itself?
> 2) If the above is done, then the user account that's being authenticated
> shouldn't be able to access privileged information.

1) Not sure.  The permissions I'm after is similar to that of NTFS
permissions on the file system.  Essentially, it is a way to restrict an
application to read certain OU's or Objects completely, making it invisible.
FYI... http://technet.microsoft.com/en-us/library/cc785913(WS.10).aspx

2) This is completely irrelevant to authentication.  See point 1 above.
 
> Just curious, are you using phpldapadmin?

A modified version of adLDAP, http://adldap.sourceforge.net/

Regards,
Chris.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] LDAP, Active Directory, and permissions

2010-11-30 Thread Tommy Pham
> -Original Message-
> From: Chris Knipe [mailto:ckn...@savage.za.org] On Behalf Of Chris Knipe
> Sent: Tuesday, November 30, 2010 10:52 PM
> To: php-general@lists.php.net
> Subject: RE: [PHP] LDAP, Active Directory, and permissions
> 
> Hi,
> 
> > Chris,
> >
> > 1) Shouldn't the OU security permissions be set within the AD itself?
> > 2) If the above is done, then the user account that's being
> > authenticated shouldn't be able to access privileged information.
> 
> 1) Not sure.  The permissions I'm after is similar to that of NTFS
permissions
> on the file system.  Essentially, it is a way to restrict an application
to read
> certain OU's or Objects completely, making it invisible.
> FYI... http://technet.microsoft.com/en-us/library/cc785913(WS.10).aspx

I guess you didn't read far down enough to 'User Authentication':  'Active
Directory ... to access objects...'  (Note that every OU is the same any
network resource.)  That's exactly what I mentioned.  OU security settings
is similar to NTFS, user/group with the lesser privilege applies.

> 
> 2) This is completely irrelevant to authentication.  See point 1 above.

It's completely relevant, if you set the permissions on the OUs. (How do you
think have the access permission to the OUs?  Are a domain/enterprise admin?
Create a test a user account and an OU.  Set the security permissions.  Test
with the user account on accessing that OU and compare it to a domain admin
account.) The app that logins under a certain account would be restricted to
the set permissions.  If the users are using the PHP app then the app should
be passing the user's authentication along to AD for authentication instead
of a network service type account to login and then validate user's
authentication to see if the user is a valid.  Thus the security is
maintained/restricted to each individual login.  (Think of as network share
mapping.  You can login to a share and still change to a different user
account afterwards.)  If you try to do a work around in C# or a DLL of some
type as you mentioned earlier, you'll have to do the same thing.  So, I
strongly suggest you look into the adLDAP and modify accordingly if the app
isn't behaving as I mentioned.  Also, look into these [1] & [2].

> 
> > Just curious, are you using phpldapadmin?
> 
> A modified version of adLDAP, http://adldap.sourceforge.net/
> 
> Regards,
> Chris.
> 

Regards,
Tommy

[1] http://support.microsoft.com/kb/320528
[2] http://support.microsoft.com/kb/326690


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php