Re: [PHP-WIN] Re: Problem getting PEAR going

2006-11-28 Thread Niel Archer
Hi > > Just spent a chunk of the afternoon setting up Apache 2.2 with PHP 5.2.0. > > The basic configuration works just fine, but I cannot get PEAR to > > install. All I get is a series of: > > > > Warning: Cannot use a scalar value as an array in > > phar://go-pear.phar/Archive/Tar.php on line

Re: [PHP-WIN] Re: Problem with execution external script

2006-09-10 Thread Stut
DevPhp wrote: > How can I see which user is? I've full permission for IUSR, IWAM and SYSTEM > users on php directory, > on root directory and also on system32 directory...in IIS I've read > permission and allow execution for script and executables...but it doesn't > still work > Am I doing s

Re: [PHP-WIN] Re: Problem 1 of 2 - Sessions not working

2005-04-25 Thread Louis Solomon \[SteelBytes\]
that all sounds correct ... umm, what else can you try ... well, here's a little test peice of code and here's my sessions settings (as shown by php_info()) session.auto_start Off Off session.bug_compat_42 On On session.bug_compat_warn On On session.cache_expire 180 180 session.cache_limiter noc

Re: [PHP-WIN] Re: Problem 1 of 2 - Sessions not working

2005-04-24 Thread lists
Yes, sir. I even changed permissions on e:\PHP to everyone and made inheritable, i.e., I removed all permissions, then reinstated full control to everyone, inheritable by child objects. I'm not as conversant with permissions and such as I perhaps should be, but as near as I can tell, anyone ca

Re: [PHP-WIN] Re: Problem 1 of 2 - Sessions not working

2005-04-23 Thread Louis Solomon \[SteelBytes\]
session.save_handler = file session.save_path = e:\PHP\sessiondata; argument passed to save_handler is there adequate permissions on e:\PHP\sessiondata? (simple test, set it to everyone full, and see if it helps) -- Louis Solomon www.SteelBytes.com "Lists" <[EMAIL PROTECTED]> wrote in mes

Re: [PHP-WIN] Re: Problem 1 of 2 - Sessions not working

2005-04-23 Thread lists
Sorry, I overlooked adding that . This is the last configuration that I tried. [Session] session.save_handler = file session.save_path = e:\PHP\sessiondata; argument passed to save_handler session.use_cookies = 1 ; session.use_only_cookies = 0 session.name = PHPSESSID session.auto_start = 0 s

Re: [PHP-WIN] Re: Problem with notices

2004-01-09 Thread user
Choinet wrote: I just tested notice generation on PHP-GTK 1.0.0 on Windows by using an undefined variable. $var = fopen($_GET['test'], 'r'); I have error_reporting set to error_reporting = E_ALL & ~E_NOTICE in php.ini, and any notices are suppressed in my custom error log set in php.ini un

Re: [PHP-WIN] Re: Problem with notices

2004-01-05 Thread choinet
I just tested notice generation on PHP-GTK 1.0.0 on Windows by using an undefined variable. $var = fopen($_GET['test'], 'r'); I have error_reporting set to error_reporting = E_ALL & ~E_NOTICE in php.ini, and any notices are suppressed in my custom error log set in php.ini unless I specify

Re: [PHP-WIN] Re: Problem on passing value.

2003-06-23 Thread Melih Onvural
Actually the super global variable that were accepted before PHP 4 have all been depreciated. if you're using get then there's a new server variable _SERVER[formTagName] that passes variables across pages. melih > > From: "Cristian MARIN" <[EMAIL PROTECTED]> > Date: 2003/06/23 Mon PM 01:17:34 E

Re: [PHP-WIN] Re: Problem on passing value.

2003-06-23 Thread Cristian MARIN
Then try: Any of this will work for the moment. -- - Cristian MARIN - Developer InterAKT Online (www.interakt.ro) Tel: +4021 312.53.12 Tel/Fax: +4021 312.51.91 [EMAIL PROTECTED] "Stephen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL P

Re: [PHP-WIN] Re: Problem on passing value.

2003-06-23 Thread Stephen
$HTTP_GET_VARS - This is an example of the old style super globals. However, php is now moving over to a simpler method... $HTTP_GET_VARS is becoming $_GET['x'] Post variables all arrvie as $_POST['x'] Session variables are $_SESSION['x'] Cookie variables are $_COOKIE['x'] and so on. I strongly su

RE: [PHP-WIN] Re: Problem in passing parameters

2002-08-01 Thread Rich Gray
v4.2.x has register globals set to Off by default. Is that the case for your PHP configuration? If yes you can either switch them to On in your php.ini file (security implications however...) else you have to reference these variables via the super globals... so taking Lung's example ... HTH Ri

RE: [PHP-WIN] Re: Problem with Sablotron extention for Windows

2001-10-22 Thread Svensson, B.A.T.
How much do you bet Bjorn? :) -Original Message- From: Bjvrn Lantz To: [EMAIL PROTECTED] Sent: 2001-10-22 10:49 Subject: [PHP-WIN] Re: Problem with Sablotron extention for Windows Try running php.exe from a command prompt. If there are any missing dll:s a message-box will appear informi

Re: [PHP-WIN] Re: problem with exec()

2001-10-07 Thread Christian Dechery
At 17:44 7/10/2001 -0700, Shane Caraveo wrote: > > > > $cmd="mysqldump -h $host --user=$user --password=\"$pass\" --opt > > $database > $backup_file"; > > > > I'm gettting error return 2... which (according to 'man errno') means > > EACCESS or 'Permission denied'. How can something be denied in

Re: [PHP-WIN] Re: problem with exec()

2001-10-07 Thread Shane Caraveo
> > $cmd="mysqldump -h $host --user=$user --password=\"$pass\" --opt > $database > $backup_file"; > > I'm gettting error return 2... which (according to 'man errno') means > EACCESS or 'Permission denied'. How can something be denied in Win98 since > it doesn't handle permissions, users and st

Re: [PHP-WIN] Re: problem with exec()

2001-10-07 Thread Christian Dechery
the command is mysqldump with trillions of parameters to backup a db into a file... something in the ways of: $cmd="mysqldump -h $host --user=$user --password=\"$pass\" --opt $database > $backup_file"; I'm gettting error return 2... which (according to 'man errno') means EACCESS or 'Permissio

Re: [PHP-WIN] Re: problem!

2001-09-12 Thread Alain Samoun
If you need help, you better give us more info ;) Alain On Wed, Sep 12, 2001 at 10:51:53PM +0100, Jean Philippe Reis wrote: > So am I. > "Seberrios" <[EMAIL PROTECTED]> escreveu na mensagem > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > I'm getting an error mesaage trying to run PHP . > > > >

Re: [PHP-WIN] Re: Problem with session data on PHP4/Win2k

2001-08-09 Thread Scott Piccotti
On Wednesday, August 8, 2001, at 12:05 PM, Antonio Romo wrote: > I'm having a similar problem. I have PHP 4.0.6, IIS 4, NT 4, and Service > Pack 6a. My sessions were working just fine until I installed SP 6a plus > security patches for the stupid Code Red. Aw, crap. I didn't event think that m

Re: [PHP-WIN] Re: Problem with session data on PHP4/Win2k

2001-08-08 Thread Antonio Romo
Hello, Scott, I'm having a similar problem. I have PHP 4.0.6, IIS 4, NT 4, and Service Pack 6a. My sessions were working just fine until I installed SP 6a plus security patches for the stupid Code Red. I'm sure it's permissions, but as you did, I checked and everything looks ok to me. IUSR_ has