Skip to main content

Install PHP on IIS 7.0 and Enable Classic ASP

I have read many articles that basically did not show the proper way to enable the ASP in IIS 7.0 Specially when you are using vista 64 bit IIS well it is so easy

Here are the following steps

1) Click on the Controll panel
2) Click on the program
3) Select the Turn on / off window features
4) Select ALL IIS property (Make sure select ASP and CGI script) i recomend to select all scripting languages also other options
5) click ok
6) Click on start > Program > Administrative Tool > IIS Managment
7) Click on the Computer name
8) You will see the ASP Icon on the right panel
9) Click on the Enable in script
10) also if you need to view the error you will set the property with same location

now define any ASP website in IIS and it will run

How to run PHP
First you need to download the setup from the PHP website its better if you download the setup instead of the downloading the zip file

you will find the PHP set up on internet very eaisaly its a exe file (make sure if you are using vista there is some setup installation issue so make sure you always run the setup by "Run as administrator option" by right clicking on the php setup

once you install PHP setup either on c:\php or where you want to install then
1) Open the IIS
2) click on computer name
3) Double click Handler Mappings
4) Click on the "Add Module Mapping link" under right side bar link section
5) Place following information
Request Path : *.php
Module: FastCGIModule
Executable path: C:\PHP\Php-cgi.exe (Select your php-cgi.exe path and make sure it will be exe)
Name: PHP
6) Click OK

now define any PHP website in IIS and it will run
Check this video
Get Microsoft Silverlight

Note: Please follow this blog this i face the error on June 05 2011 
http://bestvisualization.blogspot.com/2011/06/http-error-5000-internal-server-error.html


Regards
Rashid Imran Bilgrami
CEO Best visualization
http://www.bestvisualization.com/
For any query just send me the email at
rashidbilgrami@hotmail.com

Rashid Bilgrami
CEO Best Visualization

Comments

Popular posts from this blog

How to convert and crack windows server 2012 from Evaluation to Full

Dear All This is a way how you Convert Evalution to Full Step1: Open CMD and run following command DISM /online /Get-CurrentEdition <edition ID> is like ServerStandard with out Eval Step 2: DISM /online /Set-Edition:<edition ID> /ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /AcceptEula WINDOWS SERVER 2012 Serial Key Windows Server 2012 DataCenter: 48HP8-DN98B-MYWDG-T2DCC-8W83P Datacenter: Y4TGP-NPTV9-HTC2H-7MGQ3-DV4TW Standard: XC9B7-NBPP2-83J2H-RHMBY-92BT4 Standard R2: DBGBW-NPF86-BJVTX-K3WKJ-MTB6V Server Essentials: K2XGM-NMBT3-2R6Q8-WF2FK-P36R2 For Standard R2 here is a command For R2 its like that DISM /online /Set-Edition:ServerStandard /ProductKey:DBGBW-NPF86-BJVTX-K3WKJ-MTB6V /AcceptEula Regards

SugarCRM Footer Logo Remove & SugerCRM violation Message Remove

Hi Reader, Let us discuss about how to remove the SugarCRM Footer logo.. You all are aware of the power of the SugarCRM Tool and also must be very eager to remove the footer in order to make it look more professional. So below mentioned are some tricks for removing the footer from SugarCRM Community edition. 1)  O pen-modules/Administration/ updater_utils.php Add-exit() ; in between   function check_now()   and   return . any where By doing this u can remove 'powered by sugar crm' footer logo. 2) Go to  modules/Trackers/Tracker.php, line 128, in the 'logPage' function. Drop the 'echo' statement. 3) Now to root(Sugarfolder)\include\mvc\view\sugarview.php and modify the line array(show header => true, show subpanel => true...........and so on) and make the changes to showfooter=>true to  showfooter=>false Now how you remove the violation  Go to include /utils/ mvc_utils.php and remove the line or code b...

DNN 7 Won't go into edit mode or not working with control bar

Dear All, Today when i install the DNN 7 then i found and issue in edit mode after installation. The problem is when i go to edit mode the page refresh with out enabling the edit mode, after a short research on Google i found the solution. I hppe it save your time 1. backup your web.config 2. Open your web.config in a text editor 3. within the web.config file, find the <system.webserver><modules> section. 4.  If the <modules> section says <modules runAllManagedModulesForAllRequests="false"> change it to <modules runAllManagedModulesForAllRequests="true"> OR  if it just says <modules>, change it to <modules runAllManagedModulesForAllRequests="true"> 5. Save the config file. 6. Retry by refreshing the page and trying again.  You can also test this out by trying to a do a journal post (which also uses the services framework in an authenticated way. If some how its will not work then, you must chang...