Hello ,
I have installed apache and php on AIX.
I compiled my extension module and put it in the
usr/local/lib/php/extensions/no-debug-non-zts-20020429 directory.
In my PHP script i have the code dl('php_API.a');When the script is executed
i get the following message on the web browser.
Warning:
On Solaris 2.7 with Apache 1.3.27 and PHP-4.2.3, I configure PHP with
this
command :
'./configure' \
'--with-config-file-path=/usr/local/apache/conf' \
'--with-gd=/usr/local' \
'--enable-gd-native-ttf' \
'--with-png-dir=/usr/local' \
'--with-jpeg-dir=/usr/loc
On Solaris 2.7 with Apache 1.3.27 and PHP-4.2.3, I configure PHP with
this
command :
During 'make', I get this warning :
/bin/sh /produits/packages/php-4.2.3/libtool --silent --mode=compile
gcc -I. -I/produits/packages/php-4.2.3/ext/standard -I/produit
s/packages/php-4.2.3/main -I/produits/packag
I get this warning when I run make :
*** Warning: This library needs some functionality provided by -lresolv.
*** I have the capability to make that library automatically link in when
*** you link to this library. But I can only do this if you have a
*** shared version of the library, which you d
only two will fit!"
"One picture is worth 128K words."
-Original Message-
From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]]
Sent: Sunday, November 24, 2002 2:53 PM
To: Aaron Axelsen
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP-INST] Warning: session side effect .
> I edited the php.ini file as follows:
>
> session.bug_compat_42 = 0
> session.bug_compat_warn = 1
>
> I restarted apache, and the warning is still there. How do I hide this
> warning? Thanks!
Well, you set "session.bug_compat_warn = 1" which turns on the warning.
You probably want:
session.bu
I compiled and installed php 4.3 dev last night and now I get this error
on some scripts:
Warning: Your script possibly relies on a session side-effect which
existed until PHP 4.2.3. Please be advised that the session extension
does not consider global variables as a source of data, unless
registe
>I'm getting this warning message when I try to run any php code.
>
>Warning: Failed opening '...' for inclusion (include_path='...') in Unknown on line 0
>
>I have had a look on bugs.php.net and yes I have checked that my paths are set
>correctly in php.ini so you can cross that off the list.
>
I'm getting this warning message when I try to run any php code.
Warning: Failed opening '...' for inclusion (include_path='...') in Unknown on line 0
I have had a look on bugs.php.net and yes I have checked that my paths are set
correctly in php.ini so you can cross that off the list.
I have
Well, have a look at the code then. In ext/standard/basic_functions.c we
have:
#ifdef HAVE_SENDMAIL
PHP_FE(mail,NULL)
#else
PHP_FALIAS(mail,warn_not_available, NULL)
#endif
The error message you posted is created by the warn_not_available function
which means t
>
> Well, somehow you are confused about that
Oh, right. Care to explain what's confusing about...
Running system checks
checking for missing declarations of reentrant functions... done
checking whether compiler supports -R... yes
checking for sendmail... /usr/lib/sendmail
???
Meanwhile, I'l
Well, somehow you are confused about that, because the only way to get the
error message you got was for the HAVE_SENDMAIL or whatever the symbol was
in that version in the config.h file to not be defined and this symbol is
set by the configure script. But regardless, upgrade to 4.1. The
mec
>
> When you built PHP sendmail wasn't there for some reason. Rebuild it, or
> upgrade to the recently released 4.1.
No, as I said in my original mail, sendmail was installed and was
detected by the configure script.
Jayne.
--
+++++++++++++-
When you built PHP sendmail wasn't there for some reason. Rebuild it, or
upgrade to the recently released 4.1.
-Rasmus
On Tue, 11 Dec 2001 [EMAIL PROTECTED] wrote:
>
> I'm not too hopeful about getting any help about this, but here goes.
>
> I've installed PHP 4.0.5 on a Solaris 8 box, all
I'm not too hopeful about getting any help about this, but here goes.
I've installed PHP 4.0.5 on a Solaris 8 box, all works well but
using mail() produces the following error:
Warning: mail() is not supported in the PHP build
sendmail is installed in /usr/lib/sendmail and linked from /usr/bin
Hi,
I am using QMAIL (with sendmail wrappers installed, tested, and confirmed),
and I still can't use the mail() function.I get the following error:
"Warning: mail() is not supported in this PHP build". I have built the
source from scratch with the following commands:
CFLAGS='-O2 -I /usr/in
hi all,
sometimes i received this: Warning: Unknown persistent list entry type in module
shutdown (11) in Unknown on Line 0... what is this?
thanks for reading this
Hi from France.
I ve just installed Php 4.0.6 + apache 1.3.20 + Mysql + Php-Nuke on
Slackware Linux.
I also get a SMTP server (Postfix) working fine.
php.ini is under /usr/local/lib/php.ini and the sendmail_path is
/usr/bin/sendmail -i -t ,
but when a user try to get registred, no ail is send to h
Dear Katie
Thank you for your time and help.
> 1). What platform are you using?
Linux 7.1
> 2). What SMTP agent are you using ( qmail, sendmail, etc )?
sendmail
> 3). Can you mail me a copy of your script so I can take a look at it?
Its a simple mail(...) function which I always use. With mi
Hello
When trying to send mail inside my PHP script I receive the following error:
Warning: mail() is not supported in this PHP build
What is the reason ? Compile errors ? Or my Host has disabled access to PHP
mail() function ?
How can I solve the problem ? Is there any alternatives to using ma
Hello
When trying to send mail inside my PHP script I receive the following error:
Warning: mail() is not supported in this PHP build
What is the reason ? Compile errors ? Or my Host has disabled access to PHP
mail() function ?
How can I solve the problem ? Is there any alternatives to using ma
| >Hi,
| >
| >I'm trying to read some webpage in a file.
| >I've got some code from de php.net website:
| >
| >// get a web page into an array and print it out
| >$fcontents = file ('http://www.php.net');
| >while (list ($line_num, $line) = each ($fcontents)) {
| >echo "Line $line_num: " . ht
There is no support for redirected urls yet.
Use the 'direct' url instead:
$fcontents = file ('http://www.php.net/');
That works. (note the trailing / ?)
--Jani
On Fri, 22 Jun 2001, Joris Van Droogenbroeck wrote:
>Hi,
>
>I'm trying to read some webpage in a file.
>I've got some code from de
Hi,
I'm trying to read some webpage in a file.
I've got some code from de php.net website:
http://www.php.net');
while (list ($line_num, $line) = each ($fcontents)) {
echo "Line $line_num: " . htmlspecialchars ($line) . "\n";
}
// get a web page into a string
$fcontents = join ('', file ('ht
iginal Message-
From: Wayne B. Ericksen, P.E.
[mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 14, 2001 12:54 PM
To: [EMAIL PROTECTED]
Subject: [PHP-INST] Warning: Undefined variable:
The following is the basic outline of the errors I keep getting whenever I
try to run php scripts that I h
The following is the basic outline of the errors I keep getting whenever I
try to run php scripts that I have downloaded:
Error -
Warning: Undefined variable: variablename in \path in line xx
where variablename is many different variables. I get many of these
undefined variable warnings.
I
26 matches
Mail list logo