[PHP-INST] newbie question blank page

2003-01-06 Thread Marcus
Hi there Just manage to install RedHat 8 on a server and as soon as I load a php script to in the page is blank. I have added AddType application/x-httpd .php in the httpd.conf file but this still doesn't work Any help would be appreciated Regards Marcus

php-install Digest 6 Jan 2003 08:44:47 -0000 Issue 1188

2003-01-06 Thread php-install-digest-help
php-install Digest 6 Jan 2003 08:44:47 - Issue 1188 Topics (messages 9564 through 9567): CGI and php_admin_value in virutalhost 9564 by: Perroud Benoit Problem with PHP-4.3.0 / Sablot 9565 by: dtuecks.gmx.net Xitami with PHP 9566 by: Brian Ross newbie question blan

Re: [PHP-INST] newbie question blank page

2003-01-06 Thread Jason Reid
Check the source of hte page in the browser. do u see php code? if no, then something else is wrong. if yes, then check: 1. did u add the loadmodule line into httpd.conf? 2. did u restart apache? If you didnt do either one, or both, do them and try again. Jason Reid [EMAIL PROTECTED] -- AC Host

[PHP-INST] PHP_SELF

2003-01-06 Thread Eugene Wolff
Hi, I am very new to php. I have installed and done some simple scripts for eg. Display 'Hello World', read entries from a database but when I try and put something into a database I get problems. I use $PHP_SELF in the script but when I open it I get the following error:- Notice:

Re: [PHP-INST] PHP_SELF

2003-01-06 Thread Jeffrey_N_Dyke
if you are using a version of php later then 4.1, try $_SERVER['PHP_SELF']. hth jeff "Eugene Wolff"

[PHP-INST] New Problem

2003-01-06 Thread Eugene Wolff
Hi, I have the following script. When I open it says: Notice: Undefined variable: submit in c:\inetpub\wwwroot\phpTest9.php on line 4 Although the input boxes all show fine. Obviously it does not do the first part of the code because ($submit) is not equal to true. First name: Last nam

[PHP-INST] help how to execute exec

2003-01-06 Thread zafar rizvi
hi ppl i am using apache on redhat linux. i am making a script of change password in qmail. for that reason i am using system and exec command to execute that command /home/vpopmail/bin/vadduser and vpasswd and that files has 755 permission with vpopmail user and vchkpw Group. when i use exec func

Re: [PHP-INST] New Problem

2003-01-06 Thread Steen Rabol
Hi Well... If you look at your script, you'll see that you are trying to test on $submit, the 'problem' is that you have not defined $submit, not as a local var and not as a var from eg a URL, in other words: You are trying to test on something that you have not yet defined - IMHO 'sloppy' cod

Re: [PHP-INST] New Problem

2003-01-06 Thread - Edwin
Hello, "Eugene Wolff" <[EMAIL PROTECTED]> wrote: > Hi, > > I have the following script. When I open it says: > > Notice: Undefined variable: submit in c:\inetpub\wwwroot\phpTest9.php > on line 4 Although the input boxes all show fine. Obviously it does > not do the first part of the code

Re: [PHP-INST] New Problem

2003-01-06 Thread Jeffrey_N_Dyke
the real problem though, based on your previous post is that you are not using the correct varaible. It should be $_POST['submit']; and yes, you should test for it, using isset or somthing similar like check out the section of the manual on register_globals. yours is set to off. if ($_POST['s

[PHP-INST] Apache PHP under Linux

2003-01-06 Thread Marcp
Hi. I've installed Apache 1.3.27 and PHP 4.3.0 on RedHat Linux 8.0. These are the steps I've done. Apache: # ./configure –enable-module=so # make # make install # httpd -l to verify the presence of http_core.c e mod_so.c in /usr/local/apache/conf/httpd.conf: 1.modify DocumentRoot 2.modiffy User

Re: [PHP-INST] newbie question blank page

2003-01-06 Thread - Edwin
Hello, "Marcus" <[EMAIL PROTECTED]> wrote: > Hi there Just manage to install RedHat 8 on a server and as soon as I > load a php script to in the page is blank. Blank? No nothing? No errors? How about the (generated) source code? (View -> Source in your browser) Use something simple for checki

[PHP-INST] help needed: Call to undefined function: mssql_connect()

2003-01-06 Thread [EMAIL PROTECTED]
Hi there, Hope someone can help me with this. I need to connect to a MS SQL database but my attemps fail once and again. This is the error message I get when try to connect: Fatal error: Call to undefined function: mssql_connect() in /var/www/htdocs/DB_conn.php on line 8 The script is very sim

Re: [PHP-INST] help needed: Call to undefined function: mssql_connect()

2003-01-06 Thread - Edwin
Hello, I don't use MSSQL so I could be wrong. Anyway, let me try ;) "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi there, > > Hope someone can help me with this. > I need to connect to a MS SQL database but my attemps fail once and > again. > This is the error message I get when try to c

[PHP-INST] Problem - Apache & PHP

2003-01-06 Thread Reetu Singh
Dear All, I have a problem with running PHP in modular form as I want to store the global PHP_AUTH_USER which i can not use in the cgi version. When i run .php3 files it just displays the php files as such. And also I am unable to run the cgi files on the apache. Can any one help me. regard

Re: [PHP-INST] help needed: Call to undefined function: mssql_connect()

2003-01-06 Thread - Edwin
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Yeah, I'm sure I have two different versions compiled, the one working > as a module is the one that fails. Regarding hp_mssql.dll, isn't that > necessary only for Windows? I'm running everything on a Linux server. Yes, that one is only for Windo

[PHP-INST] Creating an extra library

2003-01-06 Thread Tom Vandeplas
Hi all, this question may have been asked a couple of times already, unfortunately I can't find the answer. I have a complete PHP-webserver system up and running, based on a standard redhat PHP distribution. The only thing that is missing are the XSLT funtions. I managed to build php on a differe

Re: [PHP-INST] Creating an extra library

2003-01-06 Thread - Edwin
Hello, "Tom Vandeplas" <[EMAIL PROTECTED]> wrote: > Hi all, > > this question may have been asked a couple of times already, > unfortunately I can't find the answer. > > I have a complete PHP-webserver system up and running, based on a > standard redhat PHP distribution. The only thing that i

Re: [PHP-INST] Creating an extra library

2003-01-06 Thread Tom Vandeplas
Hi, the reason I believe I can't do a configure on the "real" server is because I don't have all the source files (or object files) for the options currently installed. So I did a new build with a minimum configuration (basically only xslt) of a different server. I expected to get xslt.so in the m

[PHP-INST] 'Server API' is different than expected...

2003-01-06 Thread Dick Griffin
Hi Folks, I'm new on this list, (just joining today) so I need a little help with the basics. First off, is there a way that I can review the questions already asked during the past few days to see if my problem has been addressed already? Second, I've installed the Windows Binary PHP Version 4

Re: [PHP-INST] Problem - Apache & PHP

2003-01-06 Thread Chris Hewitt
Reetu Singh wrote: I have a problem with running PHP in modular form as I want to store the global PHP_AUTH_USER which i can not use in the cgi version. When i run .php3 files it just displays the php files as such. And also I am unable to run the cgi files on the apache. Can any one help me.

Re: [PHP-INST] Creating an extra library

2003-01-06 Thread - Edwin
"Tom Vandeplas" <[EMAIL PROTECTED]> wrote: > Hi, > > the reason I believe I can't do a configure on the "real" server is > because I don't have all the source files (or object files) for the > options currently installed. If you mean the "real server" is the Redhat server then you should have

[PHP-INST] Redhat 8 > PHP

2003-01-06 Thread Matt Babineau
I'm trying to get PHP running on RH8- the Apache server is running and it is the newest version available from up2date, does anyone have a url of a good install helper on this? -Matt

[PHP-INST] Apache & PHP

2003-01-06 Thread Reetu Singh
Dear All, I want to use $PHP_AUTH_USER and $PHP_AUTH_PW as global variables so that I can do HTTP authentification. Could any one help me to set this and also let me know how I should go about it. What r the steps I should take to activate this. regards, RS

[PHP-INST] Compile php 4.3.0 under Mac OS X 10.2 (darwin) with libmcrypt

2003-01-06 Thread Nicolas Ross
I did compile php 4.1.x and 4.2.x successfully with this configure line (with the libtool of 4.0.6 and a few tweeks, but it compiled well). But now, with 4.3.0, I can't even configure... Here's my configure line : ./configure --with-apxs=/usr/local/apache/bin/apxs --with-mysql --with-fbsql --with

php-install Digest 7 Jan 2003 01:30:26 -0000 Issue 1189

2003-01-06 Thread php-install-digest-help
php-install Digest 7 Jan 2003 01:30:26 - Issue 1189 Topics (messages 9568 through 9590): Re: newbie question blank page 9568 by: Jason Reid 9577 by: - Edwin PHP_SELF 9569 by: Eugene Wolff 9570 by: Jeffrey_N_Dyke.Keane.com New Problem 9571 by: Eugene

[PHP-INST] problems in the install of php 4.3.0

2003-01-06 Thread Rodrigo Gonzalez
i have update from php 4.2.3 to php 4.3.0 in the same page sometimes send me this error at the finish of the excecute of the program "Fatal error: Nesting level too deep - recursive dependency? in Unknown on line 0" in the old compilation never send this error thank you Rodrigo Glz -- PHP

[PHP-INST] Windows install that is bugging me...

2003-01-06 Thread Scott De Leeuw
Here are the system specifics.. Windows 2000 server SP3 PHP 4.30 IIS 4 I believe, whatever comes with W2k Server I've installed PHP and set it up as per the instructions... Any file with a .php or .phtml extension works, however when I embed PHP code in to an HTML it either gives a blank page or s

[PHP-INST] what is modular form of PH

2003-01-06 Thread Rubylinda Otero
i new here and i want to know some terms, wht kind of setup if u run php in modular form

[PHP-INST] better description

2003-01-06 Thread Scott De Leeuw
When I put this code in and save the file as .htm, it gives a blank screen and the php script is shown in the source... I think something isn't set up right... = __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http:/

[PHP-INST] php gd

2003-01-06 Thread Marcus
Hi there any one know of a script/s that allows one to plot 2 points in space. EG X = 4 Y= 10 X ranges from -150 to 0 to 130 increments by 2 Y ranges from -200 to 0 to 200 increments by 2 Regards Marcus Running Redhat 8 complete install --with--gd php 4 apache 2 mysql ==

[PHP-INST] IMAP and gettext support on MacOS X

2003-01-06 Thread Mike Weller
Hi, I'm trying to get IMP running on MacOS X 10.2 (Darwin 6.3). IMP requires that apache's PHP module supports mysql, imap and gettext. I can get it to support mysql and gettext, but not imap! I've been going insane trying to get this working. Here are my steps: ==

Re: [PHP-INST] better description

2003-01-06 Thread Esteban Ordonez
Scott, I think you should save your file in yourweb directory and then navigate with your web browser. I have it like this: web directory: /var/www/html/index.htm web browser address: http://localhost/index.php and then start up the web server (httpd). Do you work with Windows or Linux? El Lun

Re: [PHP-INST] readline Error lang/php4 with GD2 Lib

2003-01-06 Thread Thomas Weller
Hello. Thanks for your answer. I had Problems reaching you the second time now, so I write to the list instead. Mailer-Daemon message for <[EMAIL PROTECTED]>: Sorry, I wasn't able to establish an SMTP connection. (#4.4.1) I'm not going to try again; this message has been in the queue too long. A

[PHP-INST] php mysql

2003-01-06 Thread Marcus
Hi there I've just installed RedHat 8 complete install with php with apache with gd etc when I try and connect to mysql Fatal error: Call to undefined function: mysql_connect() in /var/www/html/phpMyAdmin/lib.inc.php on line 255 Now when I install php-mysql will this affect the already ins