मुझे एक PHP/MySQL वेब साइट दी गई है जिसे मैं 64-बिट विंडोज सर्वर 2008 पर आईआईएस 7.0 के साथ होस्ट करना चाहता हूं।
मैं एक .NET/MSSQL डेवलपर हूं, और PHP या MySQL से अपरिचित हूं।
Kev wrote:
Have you taken a look at this…
मुझे नहीं पता कि Win64 PHP का कोई भी कार्यान्वयन किसी अन्य से अधिक आधिकारिक या लोकप्रिय है या नहीं।
मैं केवी के IIS7.0 में फास्टसीजीआई समर्थन सक्षम करें आलेख php-5.2.5-x64-2007-11-12.zip fusion-x lan ।
यह "PHP संस्करण 5.2.5 (x64)" है, लेकिन php.net के अनुसार, नवीनतम संस्करण PHP 5.2.6 है। ओह अच्छा।
Make sure "ISAPI Extensions" are installed in IIS (mine were).
Download and then unzip php-5.2.5-x64-2007-11-12.zip
Copy contents of folder php-5.2.5 (x64) into *C:\php*
Copy file C:\php\php.ini-dist into folder *C:\Windows*
Rename file C:\Windows\php.ini-dist as php.ini
Edit php.ini in Notepad. Remove leading semi-colon (;) from line:
;extension=php_mysql.dll
Save and close
Copy file C:\php\ext\php_mysql.dll into folder *C:\Windows\System32*
Within IIS Manager's "Handler Mappings", choose "Add Script Map…"
Request path: *.php
Executable: C:\php\php5isapi.dll
Name: PHP
Install MySQL (someone had already installed MySQL 5.0 for me).
Create file C:\inetpub\wwwroot\test.php as
<html>
<head>
<title>PHP Information</title>
</head>
<body>
<?php phpInfo(); ?>
</body>
</html>
Navigate to http://localhost/test.php in your web browser. You will see a page of information about PHP.
Roadblock: How do I get PHP to work with ADOdb and MySQL?