[PHP] connection to SSL enabled ldap problem

2009-11-27 Thread Tanveer Chowdhury
Hi all I am having a problem in connection to an SSL enabled ldap server. In localhost is easily connects to the ldap server with SSL but if try to connect remotely then it cannot bind to ldap server but can connect. In the slapd.conf I added the 3 lines to enable SSL TLSCACertificateFile /usr/loc

[PHP] PHP APACHE SAVE AS

2009-11-27 Thread Julian Muscat Doublesin
Hello Everyone, I have installed PHP, Apache and MySQL on a Windows 7 machine :(. I would prefer linux or unix :) These have been setup and working correctly. However when I access a php page. I get the save as dialog. Has anyone ever experinced such a situation. Can anyone please advise.

Re: [PHP] PHP APACHE SAVE AS

2009-11-27 Thread Tanveer Chowdhury
That means its not recognizing the php code and thats why its giving the download prompt. why not install xampp or wamp. On Fri, Nov 27, 2009 at 4:24 AM, Julian Muscat Doublesin < opensourc...@gmail.com> wrote: > Hello Everyone, > > I have installed PHP, Apache and MySQL on a Windows 7 machine :(

Re: [PHP] PHP APACHE SAVE AS

2009-11-27 Thread Lester Caine
Julian Muscat Doublesin wrote: Hello Everyone, I have installed PHP, Apache and MySQL on a Windows 7 machine :(. I would prefer linux or unix :) These have been setup and working correctly. However when I access a php page. I get the save as dialog. Has anyone ever experinced such a sit

Re: [PHP] PHP APACHE SAVE AS

2009-11-27 Thread Jonathan Tapicer
You are probably missing something like this in the apache httpd.conf: LoadModule php5_module "c:/PHP/php5apache2_2.dll" PHPIniDir "c:/PHP/php.ini" AddType application/x-httpd-php .php DirectoryIndex index.php index.html index.html.var Regards, Jonathan On Fri, Nov 27, 2009 at 6:24 AM, Julian M

[PHP] Re: Return object to client

2009-11-27 Thread Tony Marston
It is not possible to return an object via a web service, only data. You can create an object in the client process, then populate it with data obtained from a web service. -- Tony Marston http://www.tonymarston.net http://www.radicore.org "Manoj Singh" wrote in message news:3859a5309112604

Re: [PHP] Re: Return object to client

2009-11-27 Thread Robert Cummings
Tony Marston wrote: It is not possible to return an object via a web service, only data. You can create an object in the client process, then populate it with data obtained from a web service. You can serialize the object and return that via the web service. On the receiving end it can then b

Re: [PHP] PHP APACHE SAVE AS

2009-11-27 Thread Julian Muscat Doublesin
Hi, Just to update every one. This solution below worked perfectly. Thank you very much Jonathan. I have one other question though. Can anyone help me on the folowing. Database Error: Unable to connect to the database:The MySQL adapter "mysql" is not available. Thank you Julian On Fri, Nov 27,

Re: [PHP] PHP APACHE SAVE AS

2009-11-27 Thread Ashley Sheridan
On Fri, 2009-11-27 at 17:10 +0100, Julian Muscat Doublesin wrote: > Hi, > > Just to update every one. This solution below worked perfectly. Thank you > very much Jonathan. I have one other question though. Can anyone help me on > the folowing. Database Error: Unable to connect to the database:The

Re: [PHP] PHP APACHE SAVE AS

2009-11-27 Thread Bastien Koert
On Fri, Nov 27, 2009 at 11:20 AM, Ashley Sheridan wrote: > On Fri, 2009-11-27 at 17:10 +0100, Julian Muscat Doublesin wrote: > >> Hi, >> >> Just to update every one. This solution below worked perfectly. Thank you >> very much Jonathan. I have one other question though. Can anyone help me on >> th

[PHP] PHP internal memory

2009-11-27 Thread Daniel Kolbo
Hello PHP-hipsters, I am not sure how to phrase these questions so please bare with me. I am thinking about performance of a single web server running Apache (non-cluster) with php as a module. I have a web app that requires the same php objects(classes) for each http request. First, I would li

Re: [PHP] PHP APACHE SAVE AS

2009-11-27 Thread Jim Lucas
Bastien Koert wrote: On Fri, Nov 27, 2009 at 11:20 AM, Ashley Sheridan wrote: On Fri, 2009-11-27 at 17:10 +0100, Julian Muscat Doublesin wrote: Hi, Just to update every one. This solution below worked perfectly. Thank you very much Jonathan. I have one other question though. Can anyone help

Re: [PHP] PHP APACHE SAVE AS

2009-11-27 Thread kranthi
as jim stated you'll get a "undefined function" error if php_mysql extension is not loaded. in this case probably the MySql server is not running, or not running on the default port (most likely the former) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.ne

Re: [PHP] PHP internal memory

2009-11-27 Thread Robert Cummings
Daniel Kolbo wrote: Hello PHP-hipsters, I am not sure how to phrase these questions so please bare with me. I am thinking about performance of a single web server running Apache (non-cluster) with php as a module. I have a web app that requires the same php objects(classes) for each http reque