PHP function kills my code?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting PHP function kills my code?
# 8  
Old 12-13-2003
What is the value you are passing to REMOTE_ADDR? Have you tried hard coding a value to test the function? Also, what scope does the variable REMOTE_ADDR have within the function? Is PHP like shell where a variable within a function has global scope? or is it a more limited scope?
# 9  
Old 12-13-2003
$remote_addr is a system variable, it is already defined. I never pass anything to it, and it is always equal to the visitors IP address. Also this chunk of code works perfectly fine when its not in my function, only when it is in, does it give me a connection error from the fopensocket.
# 10  
Old 12-15-2003
google is right. REMOTE_ADDR is not
defined in your function.

echo it in your function and see.
echo $REMOTE_ADDR

To fix it, declare it in main code and
pass it into function, such as:

PHP Code:
<?php function sniff$portnumber$REMOTE_ADDR ) {
        if (! 
$sock fsockopen($REMOTE_ADDR$portnumber$errno$errstr7) )
            {
              if (
$errno == 60)
                  {
                  echo 
"Timeout";
                  }
                  else 
                  {
                  echo 
"Closed $errno";
                }
            }
            else
            {
              echo 
"<font color=#ff3300>Open</font>";
              
fclose($sock);
              }
      } 
?>

<?php
$REMOTE_ADDR 
$HTTP_SERVER_VARS['REMOTE_ADDR'];
sniff(22$REMOTE_ADDR);
?>
# 11  
Old 12-16-2003
I got this all figured out on another forum. I thought $REMOTE_ADDR was global because outside of functions you can access it no problem. But to use it in functions, you have to make it a global, which is what i did and now it works fine. Its strange though. Thats why it worked when it wasn't in a function but didn't when it was in one.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

A Program Which Generates a Script Which Kills It

I have a C++ program, running on Fedora Linux, which has to be able to update itself to a new version, which it can obtain from a server. The way I do this is to have it create a shell script which kills it (the parent process), uninstalls it, downloads the new version (actually it does this... (1 Reply)
Discussion started by: BrandonShw
1 Replies

2. UNIX for Dummies Questions & Answers

xend kills network connectivity on boot

red hat 5 update 4 64bit. linux newby. on an interactive boot i can ping -t my vm linux server from my physical MS XP workstation and a vm W2000 64 bit server until xend is started, after that i get destination unreachable. if i choose not to start xend on the interactive boot i retain... (1 Reply)
Discussion started by: slartibartfast9
1 Replies

3. Shell Programming and Scripting

Script, child kills parent

Hello everyone, I'm trying to write a script, i would like to say the child kills the parent, how would i do that? (2 Replies)
Discussion started by: jessy21
2 Replies

4. UNIX for Dummies Questions & Answers

kills command

what are the header files required for the kills command in kernel version 2.4? (1 Reply)
Discussion started by: shwe
1 Replies

5. UNIX for Dummies Questions & Answers

Exiting eXceed window kills my process

Hi, I run a binary application with GUI accessibility. To launch and close the application i follow the following steps: 1.Log into a console session. Export display to the local workstation. 2.Launch X windows app ( eXceed ) 3.From terminal session go to the my application directory and... (2 Replies)
Discussion started by: shantaputi
2 Replies

6. Shell Programming and Scripting

application exit kills shells

Hi all, I start my application from a shell command-line. When I exit my application, it kills the shell that its returning too. Worse yet, since I have init respawning the shell all those subsequent shells get killed automatically...so I get output like the following (the >> is the prompt for... (2 Replies)
Discussion started by: q1001001
2 Replies

7. SuSE

Linux kills windows :(

Hey all, I've tired installing Suse 9.2 (DVD) on my computer, dual boot. But everytime I do it Linux seems to kill my Windows install. This is my setup, a 120GB HDD and for 30GB for Windows 60GB for Data and 30 GB for Linux. Windows works fine, then install SuSe and that works fine. ... (6 Replies)
Discussion started by: woofie
6 Replies

8. UNIX for Dummies Questions & Answers

Crash Kills Printer Device

A user accidentally unplugged her server from the wall. She has rebooted twice, but the system does not recognize the default printer device, which previously was lp02. There is a file which reads /dev/lp0 and then garble. I'm a total newbie at all of this, with some Unix experience many,... (2 Replies)
Discussion started by: ckurt
2 Replies

9. UNIX for Dummies Questions & Answers

exit from telnet kills orbix process

Hi, I'm using a bourne shell to kick off a 3rd Pty app. This app uses Orbix. When I exit from the telnet session which started the app or hit CTRL-C at the command line, the orbix process dies, yet all other process remain. I've tried starting the app as a background process, but it still... (1 Reply)
Discussion started by: edgarm
1 Replies
Login or Register to Ask a Question