php-windows Digest 22 Jun 2007 13:46:34 -0000 Issue 3265
Topics (messages 28124 through 28127):
Re: Can't execute external program -> error "Access is denied"
28124 by: Davide Molteni
28126 by: muquaddim
Re: Windows IIS Question!
28125 by: Gustav Wiberg
PHP and MYSQL
28127 by: Leandro Martinez
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[EMAIL PROTECTED]
----------------------------------------------------------------------
--- Begin Message ---
Hi,
as additional information.
I've to execute a batch file that launch another batch as a domain
privileged user to perform some domain administrative tasks.
Do you have any idea? how can I do that?
Thanks a lot for your help.
Regards
Dave
--- End Message ---
--- Begin Message ---
To run this tasks a good way can be running a daemon. The daemon must be run
by administrative user.
when you request a task ( a command parhaps ) php request to the request
pool of that daemon.
And wait for execution status. On getting SUCCESS php will show "it was
successfull".
Of course you have to write your own daemon.
Thanks
--- End Message ---
--- Begin Message ---
Hi!
My tip is to don't use PHPMyAdmin to start with. Try something like mysql
control center (google for it, don't remember the url)
In IIS you have to create a site and create a DNS for the same site.. That is
the basics. Other people have sent links to setting up IIS.
Best regards
/Gustav Wiberg
-----Original Message-----
From: Matthew Gonzales [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 19, 2007 8:26 PM
To: PHP-Windows Group
Subject: [PHP-WIN] Windows IIS Question!
Hello,
I am having trouble getting PHP to work with IIS. Every time I get it
installed and then go to change some configuration so it will work with
PHPMYADMIN, it stops working. The test file that I created to show the
phpinfo(); now just displays a blank page. My questions!
1. When installing the newest version of PHP do I select IIS ISAPI or CGI
2. If I use CGI what files do I need to point IIS to.
3. Is anyone using phpmyadmin successfully with IIS. I love this tool
and would like to keep using it.
If anyone can be of assistance the would greatly appreciated. I am
trying to get PHP to work so I can deploy a web app. Thanks for your help!
Matt G
--
Matthew Gonzales
IT Professional Specialist
EITS
[EMAIL PROTECTED]
706-542-9538 Office
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
Hello. I just instaled PHP and MySQL on IIS.
Then from any php file I try to conect to the mysql server and nothing
happends. I just get an empty page. All white. No data and no error!
This is the code
$link = mysql_connect('localhost', '[user]', '[pass]');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);
Can anyone help me?
Thanks
--- End Message ---