|
|
Capitolo 50. Installazione
In questa sezione sono presenti le domande pi� frequenti riguardo l'installazione di PHP. PHP �
disponibile per quasi tutti i sitemi operativi, eccetto forse MacOS prima di OSX, e per quasi tutti
i webserver.
Per installare PHP, segui le istruzioni del file
della tua distribuzione. Gli utenti Windows possono anche leggere il file
o visitare questo sito per avere ulteriori
suggerimenti.
- 1.
Unix/Windows: dove devo copiare il mio file
php.ini?
- 2.
Unix: ho installato PHP, ma ogni volta che carico uno script ricevo un messaggio di errore che dice:
'Document Contains No Data' (Lo script non contiene dati). Che sta succedendo?
- 3.
Unix: ho installato PHP usando dei pacchetti RPM, ma Apache
non processa le mie pagine PHP. Che sta succedendo?
- 4.
Unix: ho installato PHP 3 usando dei pacchetti RPM, ma il supporto per database del quale ho bisogno
non viene compilato correttamente. Che sta succedendo?
- 5.
Unix: ho installato la patch di Apache per avere compatibilit� con le estensioni del server di FrontPage,
e improvvisamente PHP ha smesso di funzionare: PHP � quindi incompatibile con le estensioni del server di
FrontPage per Apache?
- 6.
Unix/Windows: ho installato PHP, ma se provo ad accedere ai miei
script via browser, ricevo una pagina vuota.
- 7.
Unix/Windows: ho installato PHP, ma se
provo ad accedere ai miei script via browser,
ricevo un errore 500 dal server.
- 8.
Diversi sistemi operativi: ho installato PHP senza ricevere errori,
ma se provo a far partire Apache ricevo un errore con strani simboli:
[mybox:user /src/php4] root# apachectl configtest
apachectl: /usr/local/apache/bin/httpd Undefined symbols:
_compress
_uncompress |
- 9.
Windows: ho installato PHP, ma se provo ad accedere
ai miei script via browser, ricevo questo errore:
cgi error:
The specified CGI application misbehaved by not
returning a complete set of HTTP headers.
The headers it did return are: |
- 10.
Windows: ho seguito tutte le istruzioni, ma
proprio non riesco a far convivere PHP con IIS!
1.
Unix/Windows: dove devo copiare il mio file
php.ini?
Nei sistemi UNIX il percorso predefinito � /usr/local/lib. Molti utenti vorranno
cambiare questo percorso durante la fase di compilazione con il flag
--with-config-file-path. Per esempio
potresti modificare il percorso in un modo simile a questo:
--with-config-file-path=/etc |
e quindi dovresti copiare il file php.ini-dist della distribuzione in
/etc/php.ini e modificarlo
per ottenere tutti i cambiamenti voluti.
Nei sistemi Windows il percorso predefinito
corrisponde alla cartella stessa di Windows.
2.
Unix: ho installato PHP, ma ogni volta che carico uno script ricevo un messaggio di errore che dice:
'Document Contains No Data' (Lo script non contiene dati). Che sta succedendo?
Probabilmente PHP sta riscontrando un qualche tipo di problema e
sta generando un core dump. Controlla il file log degli errori del tuo
server ed individua il problema, quindi cerca di riprodurre il problema in un
piccolo script. Se sai come usare 'gdb', sarebbe di aiuto fornire agli
sviluppatori una copia dei messaggi di errore per consentire agli stessi di
localizzare il problema. Se usi PHP come modulo di Apache prova ad eseguire
le seguenti operazioni:
Ferma i tuoi processi httpd
gdb httpd
Ferma i tuoi processi httpd
> esegui -X -f /percorso/per/httpd.conf
Quindi trova l'URL che causa problemi usando il tuo browser
> esegui -X -f /percorso/per/httpd.conf
Se ottieni un, gdb ora dovrebbe informarti di ci�
digita: bt
Comunica il bug a includendo un backtrace
del problema.
Se nei tuoi script usi espressioni regolari
(ereg() e simili), dovresti assicurarti
di aver compilato PHP e Apache con lo stesso pacchetto di
espressioni regolari. Ci� dovrebbe succedere
automaticamente con PHP e Apache 1.3.x
3.
Unix: ho installato PHP usando dei pacchetti RPM, ma Apache
non processa le mie pagine PHP. Che sta succedendo?
Presumendo che tu abbia installato sia Apache che PHP da pacchetti RPM,
hai bisogno di decommentare o aggiungere qualcuna o tutte le righe seguenti
nel file http.conf:
# Extra Modules
AddModule mod_php.c
AddModule mod_php3.c
AddModule mod_perl.c
# Extra Modules
LoadModule php_module modules/mod_php.so
LoadModule php3_module modules/libphp3.so /* per PHP 3 */
LoadModule php4_module modules/libphp4.so /* per PHP 4 */
LoadModule perl_module modules/libperl.so |
And add:
AddType application/x-httpd-php3 .php3 /* per PHP 3 */
AddType application/x-httpd-php .php /* per PHP 4 */ |
... alle propriet� globali o alle propriet� del VirtualDomain
su cui vuoi aggiungere il supporto PHP.
4.
Unix: ho installato PHP 3 usando dei pacchetti RPM, ma il supporto per database del quale ho bisogno
non viene compilato correttamente. Che sta succedendo?
A causa della struttura stessa di PHP 3, non � facile ottenere dei pacchetti
RPM completi e flessibili. Questo problema � stato corretto in PHP 4.
Per installare PHP 3, consigliamo di usare la guida presente nel file
INSTALL.REDHAT della distribuzione PHP: se proprio non puoi fare a meno
di installare PHP 3 tramite pacchetti RPM, leggi prima questo file...
Per semplificare le fasi dell'installazione, i pacchetti RPM sono stati
progettati per installare PHP senza il supporto per i database, e inoltre
i pacchetti RPM usano la cartella /usr/ invece di /usr/local/ per copiare i file.
Devi 'dire' ai pacchetti RPM in un file speciale quale supporto per databse installare
e il percorso della cartella di livello superiore del tuo database.
Questo esempio servir� a chiarire come aggiungere il supporto per gli ormai diffusi databse MySQL usando
l'installazione mod di Apache.
Ovviamente le righe seguenti possono essere modificate per qualsiasi tipo di database supportato da PHP.
Presumendo che tu abbia installato sia Apache che MySQL solo con pacchetti RPM,
quanto segue potrebbe esserti di aiuto:
Per prima cosa rimuovi mod_php3:
Quindi prendi i pacchetti RPM e installali di nuovo, non reinstallarli
rpm -Uvh mod_php3-3.0.5-2.src.rpm |
Adesso modifica il file /usr/src/redhat/SPECS/mod_php3.spec
Nella sezione %build aggiungi il supporto che desideri e il percorso.
Per MySQL dovresti aggiungere:
La sezione %build (installazione) dovrebbe ora essere simile a questa:
./configure --prefix=/usr \
--with-apxs=/usr/sbin/apxs \
--with-config-file-path=/usr/lib \
--enable-debug=no \
--enable-safe-mode \
--with-exec-dir=/usr/bin \
--with-mysql=/usr \
--with-system-regex |
Dopo aver fatto queste modifiche assembla i binari RPM come segue:
rpm -bb /usr/src/redhat/SPECS/mod_php3.spec |
Quindi installa i pacchetti RPM
rpm -ivh /usr/src/redhat/RPMS/i386/mod_php3-3.0.5-2.i386.rpm |
Assicurati di riavviare Apache, quindi dovresti avere PHP 3 installato
tramite pacchetti RPM con pieno supporto MySQL. Nota che probabilmente
sar� pi� facile installare ci� seguendo le istruzioni presenti nel
file INSTALL.REDHAT della distribuzione.
5.
Unix: ho installato la patch di Apache per avere compatibilit� con le estensioni del server di FrontPage,
e improvvisamente PHP ha smesso di funzionare: PHP � quindi incompatibile con le estensioni del server di
FrontPage per Apache?
No, PHP lavora senza problemi con le estensioni del server di FrontPage.
Il problema � che la patch di FrontPage modifica diverse strutture di
Apache dalle quali dipende PHP stesso. Per risolvere il problema
ricompila PHP (usando 'make clean ; make') dopo aver installato la patch.
6.
Unix/Windows: ho installato PHP, ma se provo ad accedere ai miei
script via browser, ricevo una pagina vuota.
Controlla il sorgente della pagina che ricevi e probabilmente vedrai
il codice sorgente del tuo script PHP.
Ci� significa che il webserver
non ha inviato lo script all'interprete PHP. C'� qualcosa che non va
nella configurazione del webserver: confronta la configurazione del
webserver con le istruzioni per installare PHP.
7.
Unix/Windows: ho installato PHP, ma se
provo ad accedere ai miei script via browser,
ricevo un errore 500 dal server.
C'� qualcosa che non va al momento in cui il server prova
a richiamare l'interprete PHP. Per ricevere un messaggio
sensato di errore, dalla linea di comando, cambia la
cartella che contiene l'eseguibile di PHP (php.exe
sotto Windows) ed esegui php -i. Se PHP
riscontrer� dei problemi durante l'esecuzione, comparir� un
opportuno messaggio d'errore contente informazioni su cosa fare
successivamente. Se riceverai una schermata di codice HTML
(la stessa di phpinfo()) significher� che PHP
sta lavorando correttamente, e quindi il problema potrebbe essere
legato alla configurazione del server, che andrebbe quindi controllata.
8.
Diversi sistemi operativi: ho installato PHP senza ricevere errori,
ma se provo a far partire Apache ricevo un errore con strani simboli:
[mybox:user /src/php4] root# apachectl configtest
apachectl: /usr/local/apache/bin/httpd Undefined symbols:
_compress
_uncompress |
Ci� non ha nulla a che vedere con PHP, ma con le librerie lato client di MySQL.
Alcune richiedono --with-zlib, altre no. Questo argomento � ripreso meglio
nelle FAQ relative a MySQL.
9.
Windows: ho installato PHP, ma se provo ad accedere
ai miei script via browser, ricevo questo errore:
cgi error:
The specified CGI application misbehaved by not
returning a complete set of HTTP headers.
The headers it did return are: |
Questo errore vuol dire che PHP non � riuscito ad ottenere
qualcuno di tutti gli output richiesti. Per ricevere un messaggio
sensato di errore, dalla linea di comando, cambia la cartella che
contiene l'eseguibile di PHP (php.exe sotto
Windows) ed esegui php -i. Se PHP riscontrer�
dei problemi durante l'esecuzione, comparir� un opportuno messaggio d'errore contente informazioni su cosa
fare successivamente. Se riceverai una schermata di codice HTML (la stessa di phpinfo())
significher� che PHP sta lavorando correttamente, e quindi il problema potrebbe essere legato alla
configurazione del server, che andrebbe quindi controllata.
Dopo che PHP sta lavorando dalla linea di comando, prova ad accedere
di nuovo ai tuoi script via browser. Se ancora ricevi messaggi di errore,
il problema potrebbe essere dovuto ad una delle seguenti cose:
I permessi dei file php.exe,
php4ts.dll, php.ini o di qualche
altra estensione PHP che stai cercando di caricare potrebbero
essere settati in modo da impedire l'accesso
agli utenti anonimi di internet ISUR_<machinename>.
Il file dello script non esiste (o forse non � dove pensi
in relazione alla tua root directory). Nota che con IIS
puoi aggirare quest'ostacolo selezionando la voce
relativa a 'check file exists' (controlla se il
file esiste) nelle opzioni di Internet Services Manager. Se il file
di uno script non esiste il server invier� un errore 404. C'� un
ulteriore beneficio: IIS si preoccuper� di effettuare
tutte le autenticazioni necessarie al posto tuo, in base ai permessi NTLanMan
del tuo file contenente lo script.
10.
Windows: ho seguito tutte le istruzioni, ma
proprio non riesco a far convivere PHP con IIS!
Assicurati che l'utente con il quale stai cercando di eseguire script
PHP abbia i permessi necessari per eseguire php.exe!
IIS usa un utente anonimo che viene aggiunto al momento dell'installazione
del webserver. Questo utente ha bisogno dei permessi appropriati per eseguire
php.exe. Qualunque utente avr� bisogno dei permessi appropriati per eseguire php.exe.
Se usi IIS4, hai bisogno di dire al webserver che c'� un parser PHP.
User Contributed Notes Installazione |
|
[email protected]
01-Dec-1999 11:49 |
|
An "Invalid URI in request GET /test.php3 HTTP/1.0" may be
triggered when you specify a drive letter in the
Action
application/x-httpd-php3 "d:/php.exe"
You may
circumvent this bug by specifying a ScriptAlias /php/ d:/php/
and later referencing the alias in the httpd.conf file as
Action application/x-httpd-php3 /php/php.exe
If you
still run into errors, perhaps more conclusive suggestions are available
at
<Br>
"
Request Error ( HTTP 400 ) Troubleshooting
|
|
[email protected]
26-Jan-2000 11:26 |
|
Re: win2k...
Make sure the following is true:
1) That the
directory has Script & Execute permission in IIS' admin
2)
ISUSER_<machinename> has Read and Execute permissions
3)
the Everybody group has execute(but not write) permissions in the file
system (Windows Explorer)
I had similar problems with plain
ol' perl scripts, made those changes and all worked well. (using Windows
2000 Server RTM version)
I havent installed PHP on that box,
as I am using Linux for PHP work, but it should help ...
|
|
[email protected]
29-Jun-2000 05:35 |
|
I got errors involving the GD library, such as function being declared
twice. I had the 1.8.2 version of GD installed (the one that has no GIF
support, only PNG) in a seperate dir than the standard 1.3-6 that comes
with redhat, and it was trying to link with those. So i deleted the 1.8.2
version, dumped config.cache, reran config, recompiled and all that and it
worked. Just a note if anyone has that problem.
|
|
[email protected]
05-Aug-2000 03:18 |
|
Just a reflection of my PHP4 install process in RedHat 6.2 (hopefully
somebody with my level of experience will find this
useful):
Configure couldn't find apxs. This is because
RedHat didn't install it as part of the server option install. Go figure.
The solution to a missing apxs script is to install the
apache-devel-1.3.12-2.i386.rpm from your RedHat 6.2 install CD, which will
put apxs in the right spot with the right parameters
inside.
Another problem I had was that since I'd upgraded
PostgreSQL, and was trying to compile PHP4 with PostgreSQL support, Apache
couldn't find /usr/local/pgsql/lib/libpq.so.2.1 (needed to load
modules/libphp4.so with PostgreSQL support) and so wouldn't start (when I
did ./httpd restart in /etc/rc.d/init.d). The answer was to add
/usr/local/pgsql/lib to the list of places that library files are kept, in
the file /etc/ld.so.conf, and then run ldconfig -v to update the list of
libraries.
Then, of course (in RedHat 6.2), cd
/etc/rc.d/init.d and then do ./httpd restart .
For me, the
rest is smooth sailing. Except for the SQL errors.
Note
that this advice is from a somewhat newbie (to Linux, PHP and PostgreSQL)
perspective, so your mileage may vary. Exercise extreme caution.
|
|
[email protected]
24-Aug-2000 04:29 |
|
I've added detailed PWS, Perl, & PHP4 installation instructions for
Win98 at FAQts.
|
|
[email protected]
22-Sep-2000 12:41 |
|
Hi all,
If you are looking for PHP 4 RPMs, just have a look at .
Troels
does a fantastic job and maintains the RPMs that are updated
regularly.
These RPMs provide plug-n-play installation for users
of up-to-date Red Hat Linux systems.
Enjoy !
|
|
[email protected]
14-Oct-2000 12:26 |
|
After running these steps, you can type the following to see where httpd is
running from:
ps fax | grep "httpd"
Mine was
/var/lib/apache/sbin/httpd while I was compiling to
/var/lib/apache_1.13.14/src/httpd. I think it ultimately ended up in
/usr/local/apache/bin/httpd.
In the FAQ, if you haven't gotten
there yet, it says you can also run the following to see if php is
installed:
/path/to/httpd -l
You should see mod_php4.c
in the list. If you don't, run the install instructions above AGAIN. I
had to do this 7 or 8 times. Maybe I'm just tired today...
|
|
[email protected]
10-Nov-2000 12:40 |
|
Notes on installing PHP (3.x.x or 4.x.x) on a RedHat 6.x Linux box using
glibc 2.1.x. When you install it as a DSO module for Apache (--with-apxs)
with the standard RPM's from RedHat for Apache and MySQL, the httpd daemon
dies without giving any error message, and without sending any message to
the console.
From a comment by Rasmus Ledorf: this is caused
"probably due to a glibc-2.1.x bug related to dynamically loading a
library
linked against pthreads into a binary that isn't linked
against
pthreads. Try it using --without-mysql and see if it works.
If it does
then you know it is a mysql-related problem. To fix it you
will need the
non-threaded mysql client rpm available from
www.mysql.com".
You can also download the source code for
MySQL and recompiled it statically, using this configuration
options:
--with-client-ldflags=-all-static
--with-mysqld-ldflags=-all-static
You must then re-run the
./configure; make; make install in your PHP source tree to get the PHP
shared module working with the new MySQL
support.
Regards,
Rodolfo Gonzalez.
[email protected]
|
|
[email protected]
19-Dec-2000 06:14 |
|
There seems to be little or no information on how to build the php binary
(specifically in Linux) - it's useful for CGI and shell
scripting.
What you need to do is to run:
./configure
--without-apache --without-apxs --with-other-options
It will tell
you that as you are building it without Apache support, it is building it
as a CGI binary.
Then do make ; make install and it should then
be installed (/usr/local/bin/php by default)
|
|
[email protected]
02-Oct-2001 01:06 |
|
Regarding MacOS availability, Tenon Intersystems has a nice product called
"WebTen" that runs under MacOS (7-9) in what they call a
"UNIX Virtual Machine" and allows a quite nice implementation of
Apache and PHP under MacOS's prior to OS X.
|
|
[email protected]
13-Nov-2001 06:01 |
|
I figured out why i get this error with just a virtual directory and not
the root:
8. Windows: I have installed PHP, but when I to access
a PHP script file via my browser, I get the error: cgi error:
The
specified CGI application misbehaved by not
returning a complete set
of HTTP headers.
The headers it did return
are:
---------------------
Look at the php.ini file and look
for
doc_root =
set it to nothing so that it does not
only look for that directory. I hope it helps people with IIS and PHP
|
|
[email protected]
16-Jan-2002 09:43 |
|
Just to let others know, I was having a problem with PHP 4.1.1 on WinXP
with Apache 1.3.22 as a module. Every time I wanted to load a .php file it
was giving me a save-as dialog box. What fixed it for me (and wasn't in
any documentation I could find) was adding an additional line in the
Apache conf file after loading it as a module. The line should fall under
AddModule category, like so:
AddModule mod_php4.c
Hope that
help others having similar problems.
|
|
[email protected]
21-Jan-2002 08:21 |
|
A good place to go for a nice easy to follow tutorial on setting up PHP
under Windows is
Have
fun... Dion
|
|
|
tracy [email protected]
15-Mar-2002 05:02 |
|
the --with-mysql= /path/to/mysql as my own experience, the
"/path/to/mysql" should be the path which include the
"./lib" and "./include" sub directory.
i
configure the php v4 in my freebsd 4.5 box. use the following shell
command: ./configure --with-imap --with-gettext
--with-apxs=/usr/local/apache/bin/apxs --with-dbf
--with-mysql=/usr/local (where "/usr/local" have sub-dir
"/usr/local/lib" and "/usr/local/include") just for
your reference, Dont just copy ^_^
|
|
[email protected]
17-Apr-2002 11:46 |
|
On windows 2000 installation I've had PHP simply hanging when running a PHP
script.
To see exactly what is going wrong with PHP in the context
of the IUSR_MACHINENAME account create a shortcut on your desktop to point
to cmd.exe.
Right click on the shortcut, and select
properties.
Then check the 'run as a different user' checkbox of
the property pages of the shortcut.
Double click then shortcut, and
you will be prompted for a user account to run the cmd.exe shell under.
Enter IUSR_MACHINENAME (replace machine name with the machine name
of your system), and enter the password for the account.
If you
don't know the password for the IUSR account you might need to go change
it in Administrative Tools->Computer Management.
Enter the
password, and you will be dropped into a command prompt.
Now run
c:\php\php.exe -i and see if you can catch any error messages.
On
my system it had a problem accessing c:\winnt\system32\browscap.ini which
I was then able to sort out.
Running PHP as the Administrator user
didn't give this problem, so being able to impersonate the IIS account was
a very useful diagnostic tool.
|
|
[email protected]
29-Apr-2002 08:07 |
|
Perhaps this will save someone the hours that it cost me to figure out how
to go from a CGI version of PHP (through 4.2) to a module version on
Apache 2 for Win2K:
I've had a CGI versions of PHP 4 through
several releases of Apache and the setup for that is really easy (assuming
they both individually work):
0. Review php.ini (engine = On, et.
al) 1. Move php4ts.dll into appropriate windows subdirectory (for me
it's System32).
The remaining 4 items are changes/additions to
Apache's httpd.conf file: 2. Put index.php as the first argument to
DirectoryIndex if you want Apache to automatically pick up index.php files
Now add the following 3 lines: 3. AddType
application/x-httpd-php .php 4. Action application/x-httpd-php
"/php4/php.exe" 5. ScriptAlias /php4/
"c:/winapps/php/4.2/sapi/"
3 is so Apache will know .php
files are special. 4 is so Apache will know what special program to run
when it realizes it has a (.php) special file. 5 is so that Apache will
know what directory that special program (php.exe) lives in.
To go
from the CGI to the Module version should be even simpler, right? But
there is a HUGE gotcha. It's one of those You can't get there from here
syndromes if you are using Apache 2.0.28 (or earlier, I presume). I needed
to upgrade to 2.0.35 so that the required php (4.2) provided
apache2filter.dll file would work with Apache2.
So the final steps
are as follows: Do steps 0-3 as written above. If you are
upgrading, not installing, then back out steps 4 and 5 from above. 4)
Add a line to the httpd.conf file: LoadModule php4_module
c:/winapps/php/4.2/experimental/apache2filter.dll NOTE that this is
not the php4apache.dll file of yore in the sapi directory (which I presume
would work if you were doing this with Apache 1.3.x)
|
|
[email protected]
03-May-2002 04:39 |
|
The online documentation fails to mention that extension can be built
shared. i.e. --with-EXTENSION=shared,[<DIR>]. In particular, mySql
(on redhat), would only configure, compile and load (into Apache)
correctly when I specified --with-mysql=shared,/usr.
The only
documentation I found on using shared was in the "configure"
file itself.
|
|
[email protected]
18-May-2002 05:32 |
|
INSTALLATION ON OPENBSD 3.1 VIA PORTS COLLECTION Would have succeed but
no mysql support. I commented out the FLAVORS+= dbase filepro mysql
mysql_bundled postgresql iodbc in the /usr/ports/www/php4/Makefile and in
the configure options added --with-mysql=/usr/local and it worked.
Good Luck
|
|
[email protected]
24-May-2002 11:30 |
|
-= Apache 1.3.24 [Win32] with PHP 4.2.1 =-
-- 500 Internal Server
Error --
Okay.. this goes out to the ID Ten T users.. if you have
done everything correctly (following instructions) and are having trouble
running php from the ../cgi-bin/ directory... remove it from the /cgi-bin/
directory.. php can be run from anywhere in your ../htdocs
directory!!
If for some reason you do want a script in that
directory badly, then you will have to configure your Apache config file
differently for cgi options.
|
|
[email protected]
31-May-2002 09:46 |
|
Several users that tried to install PHP4 under Windows with the servers
Apache, PWS or Xitami receives this message when trying to open a php
script file:
"Security Alert! PHP CGI cannot be accessed
directly. This PHP CGI binary was compiled with force-cgi-redirect
enabled. This means that a page will only be served up if the
REDIRECT_STATUS CGI variable is set. This variable is set, for example, by
Apache's Action directive redirect.
You may disable this
restriction by recompiling the PHP binary with the
--disable-force-cgi-redirect switch. If you do this and you have your PHP
CGI binary accessible somewhere in your web tree, people will be able to
circumvent .htaccess security by loading files through the PHP parser. A
good way around this is to define doc_root in your php.ini file to
something other than your top-level DOCUMENT_ROOT. This way you can
separate the part of your web space which uses PHP from the normal part
using .htaccess security. If you do not have any .htaccess restrictions
anywhere on your site you can leave doc_root undefined. If you are running
IIS, you may safely set cgi.force_redirect=0 in php.ini."
I
warned it to the PHP-DOC list and nobody knew how to help me. But once
somebody from there said me to try to set the Apache Server not to run PHP
as a script, or something like that. I just know that the unique lines
that I had to put in the httpd.conf of Apache was:
AddType
application/x-httpd-php .php
ScriptAlias /php/ "c:/arquivos de
programas/php/" AddType application/x-httpd-php .php Action
application/x-httpd-php "/php/php.exe"
And it worked! But
I couldn't resolve this problem with PWS or Xitami. And now I want to run
it with Xitami. Can anybody help me? If so, please send me an e-mail:
[email protected] Thanks a lot...
|
|
[email protected]
29-Jun-2002 05:28 |
|
Q: With the new (php 4.2.0) version of PHP we couldn't pass form/query
string etc., variables from one file to the other.(eg:
form submissions). Do we need to set any variables in PHP.ini or some
where to enable such behaviour for this PHP version. Any clues to solve
this issue will be highly appreciated.
A: you should turn on
the register_globals variable in php.ini
This however seems to
create some security risks.. The docs say you should use the
$HTTP_*_VARS[], wich i couldn't figure out since I couldn't find any
documentation about this.
You could also use cookies or a DB to
store the values ofcourse.....
|
|
[email protected]
11-Jul-2002 07:17 |
|
To get PHP to work under PWS when you get the error message about security,
you need to add the line <b>cgi.force_redirect=0</b> to the
top of your php.ini file right below [php].
|
|
[email protected]
26-Aug-2002 06:26 |
|
Very good PHP and MySQL installation guide in Windows and Linux
system.
For those who has problem with IIS and PHP installation
like I did, just go to
this
article also include MySQL installation on Windows and Linux
system.
I just follow his SIMPLE and DETAIL step by step guide..
then very things working in 5 minutes...
|
|
|
| |