Need feedback ...

Discussion of general topics related to the new version and its place in the world. Don't discuss new features, report bugs, ask for support, et cetera. Don't use this to spam for other boards or attack those boards!
Forum rules
Discussion of general topics related to the new release and its place in the world. Don't discuss new features, report bugs, ask for support, et cetera. Don't use this to spam for other boards or attack those boards!
Locked
User avatar
psoTFX
Registered User
Posts: 1984
Joined: Tue Jul 03, 2001 8:50 pm
Contact:

Need feedback ...

Post by psoTFX »

I need some feedback from you guys on a couple of issues. Please cut and paste the following code into a blank text file, save it somewhere within your webspace with a .php extension and access it via your browser. EDIT: Ooops, no, don't post in this topic :D Please PM me the results either here or at the main board, either is fine. Alternatively feel free to use the contact form on my website.

Code: Select all

<html>
<body>
<?php
echo '<br />sapi - ' . php_sapi_name() ;
echo '<br />php - ' . phpversion() ;
echo '<br />';
echo '<br />REMOTE';
echo '<br />_SERVER - ' . $_SERVER['REMOTE_ADDR'];
echo '<br />_ENV - ' . $_ENV['REMOTE_ADDR'];
echo '<br />getenv - ' . getenv('REMOTE_ADDR');
echo '<br />';
echo '<br />CLIENT';
echo '<br />_SERVER - ' . $_SERVER['HTTP_CLIENT_IP'];
echo '<br />_ENV - ' . $_ENV['HTTP_CLIENT_IP'];
echo '<br />getenv - ' . getenv('HTTP_CLIENT_IP');
echo '<br />';
echo '<br />FORWARDED';
echo '<br />_SERVER - ' . $_SERVER['HTTP_X_FORWARDED_FOR'];
echo '<br />_ENV - ' . $_ENV['HTTP_X_FORWARDED_FOR'];
echo '<br />getenv - ' . getenv('HTTP_X_FORWARDED_FOR');

?>
</body>
</html>
Run this on as many hosts as you can please and access it from as many seperate systems as possible, e.g. home, school, university, work, internet cafe, local library, wifi hotspot, etc. ... obviously remove the source file when done :)

User avatar
olger901
Registered User
Posts: 536
Joined: Tue May 11, 2004 4:57 pm

Re: Need feedback ...

Post by olger901 »

PM sent
-

ChALkeR
Registered User
Posts: 176
Joined: Tue Mar 15, 2005 4:38 pm
Location: Russia

Re: Need feedback ...

Post by ChALkeR »

pm
Image
Sorry for my bad English....

*=Matt=*
Registered User
Posts: 2
Joined: Thu Mar 31, 2005 1:06 am
Contact:

Re: Need feedback ...

Post by *=Matt=* »

Sent a Pm
My Sites: GlitchVault.Com, GlitchPlay.Com
-- My Mods: --------- AJAXed 2.0.1 ---------
-----------------Image---------------

AVCS
Registered User
Posts: 2
Joined: Sun Dec 14, 2003 7:36 am

Re: Need feedback ...

Post by AVCS »

pm sent

User avatar
psoTFX
Registered User
Posts: 1984
Joined: Tue Jul 03, 2001 8:50 pm
Contact:

Re: Need feedback ...

Post by psoTFX »

Thanks to all ... it's not necessary to note your sending of a PM. I am receiving them all.

Locked