Visualizzazione dei risultati da 1 a 2 su 2
  1. #1

    aprire file php su apache

    Ho un problema con apache 2 ho installato php e apache ma non so come fare per fare aprire i file php ad apache con php.

  2. #2
    Utente di HTML.it L'avatar di Cerebro
    Registrato dal
    Jan 2005
    Messaggi
    193
    There are two ways to set up PHP to work with Apache 2.0 on Windows. One is to use the CGI binary the other is to use the Apache module DLL. In either case you need to stop the Apache server, and edit your httpd.conf to configure Apache to work with PHP.

    You need to insert these three lines to your Apache httpd.conf configuration file to set up the CGI binary:

    Example 3-7. PHP and Apache 2.0 as CGI
    ---------------------------------------------
    ScriptAlias /php/ "c:/php/"
    AddType application/x-httpd-php .php
    Action application/x-httpd-php "/php/php.exe"
    ---------------------------------------------

    If you would like to use PHP as a module in Apache 2.0, be sure to move php4ts.dll for PHP 4, or php5ts.dll for PHP 5, to winnt/system32 (for Windows NT/2000) or windows/system32 (for Windows XP), overwriting any older file. You need to insert these two lines to your Apache httpd.conf configuration file to set up the PHP-Module for Apache 2.0:

    Example 3-8. PHP and Apache 2.0 as Module
    ----------------------------------------------------
    ; For PHP 4 do something like this:
    LoadModule php4_module "c:/php/sapi/php4apache2.dll"
    AddType application/x-httpd-php .php

    ; For PHP 5 do something like this:
    LoadModule php5_module "c:/php/sapi/php5apache2.dll"
    AddType application/x-httpd-php .php
    ----------------------------------------------------

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.