Re: [PHP] Source code of original PHP release.

2013-05-23 Thread chris
Thank you Sir. Just what I needed :) I didn't even know there was a museum. Cheers, Christopher Tombleson On 2013-05-24 05:02, Daniel Brown wrote: On Thu, May 23, 2013 at 2:16 AM, chris wrote: I'm currently writing a paper on the evolution of PHP and web development/security as a whole. One o

Re: [PHP] Source code of original PHP release.

2013-05-23 Thread Daniel Brown
On Thu, May 23, 2013 at 2:16 AM, chris wrote: > I'm currently writing a paper on the evolution of PHP and web > development/security as a whole. > One of the things I want to incorporate is snippets of source code to show > how things have grown and advanced since the 90's > > If anyone could help

Re: [PHP] Source code of original PHP release.

2013-05-22 Thread Serge Fonville
Hi, Have you looked at http://php.net/manual/en/history.php.php? Could you also share some information on what you have already, as to prevent we would provide information you already have? HTH Kind regards/met vriendelijke groet, Serge Fonville http://www.sergefonville.nl Convince Microsoft

Re: [PHP] Source Code Analysis

2009-06-07 Thread Dee Ayy
On Wed, Oct 22, 2008 at 4:30 PM, Dee Ayy wrote: > Thanks regarding the error_reporting.  I may have to go this route for > this specific issue. > ... > ...  And not only for this specific issue. I have another need for a SCA tool. Is there an existing tool similar to a broken link checker, but ins

Re: [PHP] Source Code Analysis

2008-10-22 Thread Dee Ayy
Thanks regarding the error_reporting. I may have to go this route for this specific issue. I was hoping a source code analyzer would report the same type problem, perhaps much faster than Robert's method, and without having a human attempt to test all functionality of the various PHP apps on old

Re: [PHP] Source Code Analysis

2008-10-22 Thread Ashley Sheridan
On Wed, 2008-10-22 at 11:16 -0700, Jim Lucas wrote: > Dee Ayy wrote: > > Is there a tool that can analyze PHP source code and detect if the > > code is relying on register_globals still being on? Perhaps detecting > > if a variable has not been initialized within the code? > > > > These are my sp

Re: [PHP] Source Code Analysis

2008-10-22 Thread Greg Bowser
>Perhaps detecting >if a variable has not been initialized within the code This is an E_NOTICE level error. [EMAIL PROTECTED] ~ $ php test.php Notice: Undefined variable: foo in /home/mario/test.php on line 3

Re: [PHP] Source Code Analysis

2008-10-22 Thread Jim Lucas
Dee Ayy wrote: > Is there a tool that can analyze PHP source code and detect if the > code is relying on register_globals still being on? Perhaps detecting > if a variable has not been initialized within the code? > > These are my specific needs, but I'm also interested in general SCA > tools and

Re: [PHP] Source Code Analysis

2008-10-22 Thread Nathan Rixham
Robert Cummings wrote: On Wed, 2008-10-22 at 12:24 -0500, Dee Ayy wrote: Is there a tool that can analyze PHP source code and detect if the code is relying on register_globals still being on? Perhaps detecting if a variable has not been initialized within the code? These are my specific needs,

Re: [PHP] Source Code Analysis

2008-10-22 Thread Robert Cummings
On Wed, 2008-10-22 at 12:24 -0500, Dee Ayy wrote: > Is there a tool that can analyze PHP source code and detect if the > code is relying on register_globals still being on? Perhaps detecting > if a variable has not been initialized within the code? > > These are my specific needs, but I'm also in

[PHP] Roadsend (was Re: PHP Source code protection)

2008-02-06 Thread Bruce Cowin
>>> zerof <[EMAIL PROTECTED]> 7/02/2008 12:04 p.m. >>> Try Roadsend, now as Open Source: http://www.roadsend.com/home/index.php?SMC=1&pageID=compiler Hey, that looks cool. Do many people use this? Has anyone built any standalone GUI apps with it? Regards, Bruce -- PHP General Mailing

[PHP] Re: PHP Source code protection

2008-02-06 Thread zerof
Zoran Bogdanov escreveu: Hi, I'm building a C# application that connects to a server that has PHP scripts on it. We need to deliver the complete solution to a firm, the C# is no problem because it is compiled... But PHP is a problem bacause it is interpreted and we will have to deliver pu

Re: [PHP] source code protection

2005-02-26 Thread Guillermo Rauch
> Hi there! > > What's the point of doing that? The PHP-codes are well protected if they are > on a well > configured server. Sometimes you want to sell protected code $.$ > > /G > @varupiraten.se -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.

Re: [PHP] source code protection

2005-02-26 Thread Gustav Wiberg
Hi there! What's the point of doing that? The PHP-codes are well protected if they are on a well configured server. /G @varupiraten.se - Original Message - From: "shabanip" <[EMAIL PROTECTED]> To: Sent: Saturday, February 26, 2005 4:43 PM Subject: [PHP] source code protection is there

Re: [PHP] source code protection

2005-02-26 Thread Joe Wollard
Shabanip, Zend provides a package for doing just this, but it comes with a price tag starting nigh to $1,000. You can find it here: http://www.zend.com/store/products/zend-encoder.php They do offer a free evaluation so you can "try before you buy" ;-) shabanip wrote: is there any way to protect

Re: [PHP] source code display

2004-06-07 Thread Ben Ramsey
Oh, I also meant to mention this: Are you sure that Apache is loading in the correct PHP module? The following lines are in my httpd.conf file: LoadModule php4_module modules/libphp4.so AddType application/x-httpd-php php Assuming you're using PHP 3 instead of PHP 4, I guess you would load php3

Re: [PHP] source code display

2004-06-07 Thread Ben Ramsey
JN> Don't know if it matters or not, but all the 'examples' I've seen JN> have the dot before the extension, ie JN> JN> AddType application/x-httpd-php .php .php3 I've never used the dot (.) before the extension in Apache, and all works well. -- Regards, Ben Ramsey http://benramsey.com

Re: [PHP] source code display

2004-06-07 Thread John Nichel
Nguyen, Long P (Mission Systems) wrote: Yes. AddType application/x-httpd-php php php3 Don't know if it matters or not, but all the 'examples' I've seen have the dot before the extension, ie AddType application/x-httpd-php .php .php3 -- John C. Nichel KegWorks.com 716.856.9675 [EMAIL PROTECTED] --

RE: [PHP] source code display

2004-06-07 Thread Nguyen, Long P (Mission Systems)
Yes. AddType application/x-httpd-php php php3 -Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Monday, June 07, 2004 9:49 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] source code display Nguyen, Long P (Mission Systems) wrote: > Hi - > > When I try to br

Re: [PHP] source code display

2004-06-07 Thread John Nichel
Nguyen, Long P (Mission Systems) wrote: Hi - When I try to bring up an "index.php3" file on a browser, what display are source codes. And when I tried to bring up the same "index.php" file, I get the following: Is your web server parsing *.php3 files as php? Apache: AddType application/x-httpd-

Re: [PHP] source code display

2004-06-07 Thread Matt Matijevich
[snip] When I try to bring up an "index.php3" file on a browser, what display are source codes. [/snip] I dont see http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Source code

2003-11-07 Thread PHPLover
ards, ___ PHPLover "Göd döësn't pläy dícë." - Älbërt Ëínstëín -Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 9:27 PM To: John Nichel; PHPLover Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Sour

Re: [PHP] Source code

2003-11-06 Thread Chris Shiflett
> 1. Is it possible to download the entire PHP site so that i can learn > from the source code at my liesure. I know that source code of PHP can > be accessible through CVS but is there any anonymous FTP or a zip file > download? Not to my knowledge. If you don't like using CVS, you can always bro

Re: [PHP] Source code

2003-11-06 Thread John Nichel
PHPLover wrote: I have two questions. 1. Is it possible to download the entire PHP site so that i can learn from the source code at my liesure. I know that source code of PHP can be accessible through CVS but is there any anonymous FTP or a zip file download ?? 2. How can i implement the new feat

Re: [PHP] RE: PHP source code

2002-09-20 Thread Chris Shiflett
Oliver, I think I see your question. You are wanting to know if people can see *your* PHP code (it sounded like you were asking if you could read PHP's source code, which is why people responded like they did). I think another poster mentioned this, but the safest thing to do with your databa

Re: [PHP] Re: PHP source code

2002-09-20 Thread Oliver Witt
Michael Geier schrieb: > PHP Source code is only available on the server, and will never be shown to > the client (unless you create a tool to allow them to see the source; > see show_source() ); > > And you can always put your authentication data (username/passwords) in an > external include() f

[PHP] RE: PHP source code

2002-09-20 Thread Tim Ward
then keep this info in a config file off root and use a data abstraction class to connect. Tim www.chessish.com > -Original Message- > From: Oliver Witt [mailto:[EMAIL PROTECTED]] > Sent: 19 September 2002 19:15 > To: [EMAIL PROTECTED]; Stephan Seidt > Subject: Re:

Re: [PHP] Re: PHP source code

2002-09-19 Thread Support @ Fourthrealm.com
A solution that I use is to put important information in an include file, and store it in a User-Authentication protected folder, ie. /admin/ This adds one extra layer of protection to your files, and keeps the average joe-surfer from being able to get the files. Peter At 08:24 PM 9/19/2002

[PHP] Re: PHP source code

2002-09-19 Thread Stephan Seidt
Then be sure that nobody is able to read it. Should be no problem ;) There is no possibility to read php source, the webserver will always count it as php file and the file will be parsed by php. Sure its possible to get the file over ftp, ssh, imap, etc, but this is the problem with all the secr

[PHP] Re: PHP source code

2002-09-19 Thread Oliver Witt
Stephan Seidt schrieb: > On Thu, 19 Sep 2002 16:50:16 +0200 > [EMAIL PROTECTED] (Oliver Witt) wrote: > > > Hi, > > Is there any way to read php source code? I didn't think so until I > > heard about people you have done that... > > Kind regards, > > Oliver > > > > If you mean php's source, downlo

[PHP] Re: PHP source code

2002-09-19 Thread Stephan Seidt
On Thu, 19 Sep 2002 16:50:16 +0200 [EMAIL PROTECTED] (Oliver Witt) wrote: > Hi, > Is there any way to read php source code? I didn't think so until I > heard about people you have done that... > Kind regards, > Oliver > Do you mean the source of php.net ? Try http://de.php.net/source.php?url=/i

Re: [PHP] Source code

2002-09-06 Thread liljim
I might be missing something, but Wouldn't this suffice? : http://www.php.net/manual/en/function.highlight-file.php Maintains formatting *and* colours things up nicely. -James "Lallous" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I think it is also g

Re: [PHP] Source code

2002-09-06 Thread lallous
I think it is also good to fetch $mem as: $fp = fopen('index.htm', 'r'); $mem = fread($fp, filesize('index.htm')); fclose($fp); that will keep index.htm formatted as is. "Adrian Murphy" <[EMAIL PROTECTED]> wrote in message 001b01c2559f$aa8f3c30$1a8f43d9@ADE2">news:001b01c2559f$aa8f3c30$1a8f43d9

Re: [PHP] Source code

2002-09-06 Thread adrian murphy
add nl2br() to make it look pretty e.g - Original Message - From: "Roman Duriancik" <[EMAIL PROTECTED]> To: "PHP-General" <[EMAIL PROTECTED]> Sent: Friday, September 06, 2002 11:53 AM Subject: [PHP] Source code > How I show in IE source code of html page with php ? > > > roman >

Re: [PHP] Source Code for the CNN Grabber

2002-03-28 Thread Chris Boget
> This is the source, which is to advanced for me to debug!!! > Waiting on their responce and maybe they can help me.Anybody have any > clues Perhaps if you told us what was going wrong? Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsu