[PHP] Re: How to extract php source code from joomla

2013-07-23 Thread Tedd Sperling
On Jul 23, 2013, at 12:15 AM, elk dolk elkd...@yahoo.com wrote: I study for MSc degree at university. Are you in an advanced class? Ok, congratulations -- you are studying for an MSc -- but that didn't answer the question. So, let me repeat the question: [1] Are you in an advanced PHP

Re: [PHP] How to extract php source code from joomla

2013-07-23 Thread Yoinier Hernandez Nieves
El 22/07/13 15:49, elk dolk escribió: Thank you for the quick response ! What I am trying to do : I have to complete two university projects for my professor ! project One : Make an online shop and must use the following components in it Shopping cart, Catalog of products, payment

Re: [PHP] How to extract php source code from joomla

2013-07-23 Thread richard gray
On 23/07/2013 16:54, Yoinier Hernandez Nieves wrote: El 22/07/13 15:49, elk dolk escribió: Thank you for the quick response ! What I am trying to do : I have to complete two university projects for my professor ! project One : Make an online shop and must use the following components in

[PHP] How to extract php source code from joomla

2013-07-22 Thread elk dolk
Hi all, I want to build a website using Joomla 2.5 . It should have 5 pages: index.php pageOne.php pageTwo.php ... How can I get the php source code for those pages? I installed joomla 2.5 on my windows box and use XAMPP's appache web server  thanks

Re: [PHP] How to extract php source code from joomla

2013-07-22 Thread Ashley Sheridan
On Mon, 2013-07-22 at 12:18 -0700, elk dolk wrote: Hi all, I want to build a website using Joomla 2.5 . It should have 5 pages: index.php pageOne.php pageTwo.php ... How can I get the php source code for those pages? I installed joomla 2.5 on my windows box and use XAMPP's

[PHP] How to extract php source code from joomla

2013-07-22 Thread elk dolk
- From: Ashley Sheridan a...@ashleysheridan.co.uk To: elk dolk elkd...@yahoo.com Cc: php-general@lists.php.net php-general@lists.php.net Sent: Monday, July 22, 2013 11:45 PM Subject: Re: [PHP] How to extract php source code from joomla On Mon, 2013-07-22 at 12:18 -0700, elk dolk wrote: Hi

Re: [PHP] How to extract php source code from joomla

2013-07-22 Thread Ashley Sheridan
php source code from joomla On Mon, 2013-07-22 at 12:18 -0700, elk dolk wrote: Hi all, I want to build a website using Joomla 2.5 . It should have 5 pages: index.php pageOne.php pageTwo.php ... How can I get the php source code for those pages? I installed joomla

[PHP] How to extract php source code from joomla

2013-07-22 Thread elk dolk
I am allowed to use tools or code by hand , it does not matter ,the professor wants to have the source code.

Re: [PHP] How to extract php source code from joomla

2013-07-22 Thread Ashley Sheridan
On Mon, 2013-07-22 at 13:10 -0700, elk dolk wrote: I am allowed to use tools or code by hand , it does not matter ,the professor wants to have the source code. You say tools, but would he consider a full-blown complex CMS as merely a tool, or not? At

Re: [PHP] How to extract php source code from joomla

2013-07-22 Thread Tedd Sperling
On Jul 22, 2013, at 3:49 PM, elk dolk elkd...@yahoo.com wrote: Thank you for the quick response ! What I am trying to do : I have to complete two university projects for my professor ! project One : Make an online shop and must use the following components in it Shopping cart,

[PHP] How to extract php source code from joomla

2013-07-22 Thread elk dolk
I study for MSc degree at university.  Are you in an advanced class?

[PHP] Source code of original PHP release.

2013-05-23 Thread chris
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 me out I would be much appreciated. All my attempts

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

2013-05-23 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

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

2013-05-23 Thread Daniel Brown
On Thu, May 23, 2013 at 2:16 AM, chris ch...@cribznetwork.com 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

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 ch...@cribznetwork.com wrote: I'm currently writing a paper on the evolution of PHP and web

[PHP] Source Code Analysis

2008-10-22 Thread Dee Ayy
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 features. -- PHP

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

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 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

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. ?php error_reporting(E_ALL); $foo++; ? [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 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 specific

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] PHP Source code protection

2008-02-14 Thread Richard Lynch
On Thu, February 7, 2008 8:35 pm, Andrés Robinet wrote: 1 - I believe the fact that we don't encode (read compile) our scripts is tightly related to the fact that we don't have a bytecode interpreter (say JIT compiler or something?) bundled into PHP. Er. PHP has a bytecode interpreter

Re: [PHP] PHP Source code protection

2008-02-11 Thread Greg Donald
On 2/7/08, Daniel Brown [EMAIL PROTECTED] wrote: Because who's to say you're selling to one client? If it's your Intellectual Property, wouldn't you want to protect it, at least as much as possible? No, I think protecting software in any way is a waste if resources, especially software

Re: [PHP] PHP Source code protection

2008-02-08 Thread Per Jessen
Greg Donald wrote: Deductive reasoning leads to two possible options: 1) Don't give the code to anyone. 2) Give the code to the client and accept the fact that it may get pirated. Yep, that's all there is to it. /Per Jessen, Zürich -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] PHP Source code protection

2008-02-08 Thread Per Jessen
Casey wrote: Why not just translate it to C#? Personally I'd just go for C - that way I can just distribute a binary and be done with it. No runtime, no JVM, no mono etc. /Per Jessen, Zürich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] PHP Source code protection

2008-02-08 Thread Richard Heyes
accept the fact that it may get pirated. It may do. But there's nothing wrong with making it as hard as possible to do so. Most people have better things to do than try to reverse engineer a piece of code. Consider: 1. People who buy code will generally do so to solve a problem that they

Re: [PHP] PHP Source code protection

2008-02-07 Thread Per Jessen
John Taylor-Johnston wrote: I'm not sure where PHP stands on this politically. But I believe in Open Source, which allows you to encode your code. But why? At heart I'm a purist GNU. Stallman was right when he first tried to fix a faulty printer. I too believe in Open Source, but there are

Re: [PHP] PHP Source code protection

2008-02-07 Thread Per Jessen
Richard Lynch wrote: After you get your PHP code all worked out, re-write it as a custom PHP extension -- or even just the core of it, and send them a .so or .dll to install. Interesting option. Does require more effort, but if you rewrite the whole thing in C, you might gain some

Re: [PHP] PHP Source code protection

2008-02-07 Thread Richard Heyes
Greg Donald wrote: On 2/6/08, Richard Heyes [EMAIL PROTECTED] wrote: There's the Zend Encoder at www.zend.com. Though it may be called something else now. Pointless. http://www.phprecovery.com/ Pointless? I think it is exactly the answer to the original persons question. -- Richard

Re: [PHP] PHP Source code protection

2008-02-07 Thread Casey
On Feb 7, 2008 1:50 AM, Richard Heyes [EMAIL PROTECTED] wrote: Greg Donald wrote: On 2/6/08, Richard Heyes [EMAIL PROTECTED] wrote: There's the Zend Encoder at www.zend.com. Though it may be called something else now. Pointless. http://www.phprecovery.com/ Pointless? I think it is

Re: [PHP] PHP Source code protection

2008-02-07 Thread Greg Donald
On 2/7/08, Richard Heyes [EMAIL PROTECTED] wrote: http://www.phprecovery.com/ Pointless? I think it is exactly the answer to the original persons question. Yup, it's the exact correct answer, to a pointless question. Even Zend knows it's pointless to encode PHP. When you type decode php

Re: [PHP] PHP Source code protection

2008-02-07 Thread Greg Donald
On 2/7/08, Daniel Brown [EMAIL PROTECTED] wrote: Actually, Greg, I respectfully disagree. First, just because there may be ways to reverse-engineer things doesn't mean it's a bad idea to attempt to protect your code against such. Why would you encode to start with? The only reason I can

Re: [PHP] PHP Source code protection

2008-02-07 Thread Daniel Brown
On Feb 7, 2008 4:56 PM, Greg Donald [EMAIL PROTECTED] wrote: On 2/7/08, Richard Heyes [EMAIL PROTECTED] wrote: http://www.phprecovery.com/ Pointless? I think it is exactly the answer to the original persons question. Yup, it's the exact correct answer, to a pointless question. Even

Re: [PHP] PHP Source code protection

2008-02-07 Thread Daniel Brown
On Feb 7, 2008 6:20 PM, Greg Donald [EMAIL PROTECTED] wrote: On 2/7/08, Daniel Brown [EMAIL PROTECTED] wrote: Actually, Greg, I respectfully disagree. First, just because there may be ways to reverse-engineer things doesn't mean it's a bad idea to attempt to protect your code against

RE: [PHP] PHP Source code protection

2008-02-07 Thread Andrés Robinet
-Original Message- From: Daniel Brown [mailto:[EMAIL PROTECTED] Sent: Thursday, February 07, 2008 7:10 PM To: Greg Donald Cc: php-general@lists.php.net Subject: Re: [PHP] PHP Source code protection On Feb 7, 2008 6:20 PM, Greg Donald [EMAIL PROTECTED] wrote: On 2/7/08, Daniel

[PHP] PHP Source code protection

2008-02-06 Thread Zoran Bogdanov
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 pure, unprotected script...

Re: [PHP] PHP Source code protection

2008-02-06 Thread Richard Heyes
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 pure, unprotected script... Is

RE: [PHP] PHP Source code protection

2008-02-06 Thread Bastien Koert
zend encoder? http://sourceforge.net/projects/php-screw/ google for more bastien To: php-general@lists.php.net From: [EMAIL PROTECTED] Date: Wed, 6 Feb 2008 12:28:12 +0100 Subject: [PHP] PHP Source code protection Hi, I'm building a C# application that connects to a server that has

Re: [PHP] PHP Source code protection

2008-02-06 Thread C.R.Vegelin
See also: http://www.ioncube.com/ - Original Message - From: Bastien Koert [EMAIL PROTECTED] To: Zoran Bogdanov [EMAIL PROTECTED]; php-general@lists.php.net Sent: Wednesday, February 06, 2008 2:27 PM Subject: RE: [PHP] PHP Source code protection zend encoder? http://sourceforge.net

Re: [PHP] PHP Source code protection

2008-02-06 Thread Floor Terra
Is htere a way to secoure my code so when they put it on the server, they can't see it! Short answer: NO Long answer NO, but: There are some products that claim they protect your code, but they all basicly rely on security through obscurity. A principle that is often frowned upon by security

Re: [PHP] PHP Source code protection

2008-02-06 Thread Daniel Brown
On Feb 6, 2008 11:13 AM, C.R.Vegelin [EMAIL PROTECTED] wrote: - Original Message - From: Bastien Koert [EMAIL PROTECTED] zend encoder? http://sourceforge.net/projects/php-screw/ google for more See also: http://www.ioncube.com/ All good ideas. And in the case of Zend

Re: [PHP] PHP Source code protection

2008-02-06 Thread Greg Donald
On 2/6/08, Richard Heyes [EMAIL PROTECTED] wrote: There's the Zend Encoder at www.zend.com. Though it may be called something else now. Pointless. http://www.phprecovery.com/ -- Greg Donald http://destiney.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] PHP Source code protection

2008-02-06 Thread Greg Donald
On 2/6/08, Greg Donald [EMAIL PROTECTED] wrote: On 2/6/08, Richard Heyes [EMAIL PROTECTED] wrote: There's the Zend Encoder at www.zend.com. Though it may be called something else now. Pointless. http://www.phprecovery.com/ http://www.zendecode.com/ I'm sure there are others. -- Greg

Re: [PHP] PHP Source code protection

2008-02-06 Thread Richard Lynch
On Wed, February 6, 2008 5:28 am, Zoran Bogdanov wrote: 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

[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

[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=1pageID=compiler Hey, that looks cool. Do many people use this? Has anyone built any standalone GUI apps with it? Regards, Bruce -- PHP General Mailing List

Re: [PHP] PHP Source code protection

2008-02-06 Thread John Taylor-Johnston
of hornets. :p C.R.Vegelin wrote: See also: http://www.ioncube.com/ - Original Message - From: Bastien Koert [EMAIL PROTECTED] To: Zoran Bogdanov [EMAIL PROTECTED]; php-general@lists.php.net Sent: Wednesday, February 06, 2008 2:27 PM Subject: RE: [PHP] PHP Source code protection zend encoder

Re: [PHP] How to decode the PHP Source Code

2007-10-12 Thread Daniel Brown
On 10/12/07, David Giragosian [EMAIL PROTECTED] wrote: On 10/12/07, tedd [EMAIL PROTECTED] wrote: At 9:57 AM -0400 10/11/07, Daniel Brown wrote: By the way, Tedd you alright there? Ya' kinda' got squashed. -- Daniel P. Brown I'm find, but I lost my thought -- it's

Re: [PHP] How to decode the PHP Source Code

2007-10-12 Thread David Giragosian
On 10/12/07, tedd [EMAIL PROTECTED] wrote: At 9:57 AM -0400 10/11/07, Daniel Brown wrote: By the way, Tedd you alright there? Ya' kinda' got squashed. -- Daniel P. Brown I'm find, but I lost my thought -- it's happening more these days. :-) Cheers, tedd -- ---

Re: [PHP] How to decode the PHP Source Code

2007-10-12 Thread tedd
At 9:57 AM -0400 10/11/07, Daniel Brown wrote: By the way, Tedd you alright there? Ya' kinda' got squashed. -- Daniel P. Brown I'm find, but I lost my thought -- it's happening more these days. :-) Cheers, tedd -- --- http://sperling.com http://ancientstones.com

[PHP] How to decode the PHP Source Code

2007-10-11 Thread Javed Khan
Hello Everyone, I have the source code of a php application I got from someone but it is encoded with IonCude. I would really appreciate if someone can send me any solution for that. Thank you, Javed From: [EMAIL PROTECTED] Date: Thu, 11 Oct 2007 08:40:22 +0200 To:

RE: [PHP] How to decode the PHP Source Code

2007-10-11 Thread Jay Blanchard
[snip] I have the source code of a php application I got from someone but it is encoded with IonCude. I would really appreciate if someone can send me any solution for that. [/snip] Please do not hijack threads. If you have a new subject create a new e-mail with said subject. This helps to

Re: [PHP] How to decode the PHP Source Code

2007-10-11 Thread Robert Cummings
On Thu, 2007-10-11 at 12:06 +, Javed Khan wrote: Hello Everyone, I have the source code of a php application I got from someone but it is encoded with IonCude. I would really appreciate if someone can send me any solution for that. There's a reason it's encoded with IonCube. Someone

Re: [PHP] How to decode the PHP Source Code

2007-10-11 Thread Daniel Brown
On 10/11/07, Javed Khan [EMAIL PROTECTED] wrote: Hello Everyone, I have the source code of a php application I got from someone but it is encoded with IonCude. I would really appreciate if someone can send me any solution for that. Thank you, Javed From: [EMAIL PROTECTED] Date: Thu,

Re: [PHP] PHP source code formatter for OS X

2005-03-21 Thread Richard Lynch
On Wed, March 16, 2005 8:11 pm, DuSTiN KRySaK said: Does anyone know of a PHP source code formatter to clean up sloppy code that runs on OS X? http://php.net/highlight_string may or may not do some cleanup. Probably not enough. I think there's a PHP pretty-printer at http://phpclasses.org

Re: [PHP] PHP source code formatter for OS X

2005-03-17 Thread Jochem Maas
DuSTiN KRySaK wrote: Does anyone know of a PHP source code formatter to clean up sloppy code that runs on OS X? maybe the php tidy extension works? http://php.net/tidy d -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP source code formatter for OS X

2005-03-16 Thread DuSTiN KRySaK
Does anyone know of a PHP source code formatter to clean up sloppy code that runs on OS X? d -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] source code protection

2005-02-26 Thread shabanip
is there any way to protect PHP files source code? thanks, Payam Shabanian shabanip -at- avapajoohesh.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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 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: php-general@lists.php.net Sent: Saturday, February 26, 2005 4:43 PM Subject: [PHP] source code

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.php

Re: [PHP] HOWTO read PHP source code into a textarea

2005-02-26 Thread Tim Burgan
Thank you everyone, I was trying to use file(), with some problems.. thank you for your suggestions to use file_get_contents(). Perfect! You're all right, it works really well. Thanks Tim ... Tim Burgan. Website E-Commerce Developer Web: www.timburgan.com ... -- PHP General Mailing List

Re: [PHP] HOWTO read PHP source code into a textarea

2005-02-26 Thread John Holmes
Tim Burgan wrote: I was trying to use file(), with some problems.. thank you for your suggestions to use file_get_contents(). Perfect! You're all right, it works really well. I hope you didn't miss the mention of htmlentities(), also. If you did, then you'll figure it out the first time you try

[PHP] HOWTO read PHP source code into a textarea

2005-02-25 Thread Tim Burgan
Hello, I have a file 'nav.php', whose source code I want to load into the textarea on page 'aaa.php', so the source can be edited and changed. Is there a resource that I can read to help me do this? Thanks Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] HOWTO read PHP source code into a textarea

2005-02-25 Thread Mikey
I have a file 'nav.php', whose source code I want to load into the textarea on page 'aaa.php', so the source can be edited and changed. Is there a resource that I can read to help me do this? If you want to render HTML into a textarea then I am afraid you are on a hiding to nothing - the

[PHP] Re: HOWTO read PHP source code into a textarea

2005-02-25 Thread Jamie Alessio
I have a file 'nav.php', whose source code I want to load into the textarea on page 'aaa.php', so the source can be edited and changed. Is there a resource that I can read to help me do this? Tim, How about putting this in aaa.php? ? $str = file_get_contents('nav.php'); echo textarea

Re: [PHP] HOWTO read PHP source code into a textarea

2005-02-25 Thread Richard Lynch
Tim Burgan wrote: I have a file 'nav.php', whose source code I want to load into the textarea on page 'aaa.php', so the source can be edited and changed. Is there a resource that I can read to help me do this? The User Contributed notes in: http://php.net/htmlentities should prove

RE: [PHP] HOWTO read PHP source code into a textarea

2005-02-25 Thread Tyler Replogle
Try php.net for flat file date basing. It should tell you how to read a line and write to a new line. From: Tim Burgan [EMAIL PROTECTED] To: [php] PHP General List php-general@lists.php.net Subject: [PHP] HOWTO read PHP source code into a textarea Date: Fri, 25 Feb 2005 10:26:36 +1030 MIME

Re: [PHP] HOWTO read PHP source code into a textarea

2005-02-25 Thread Yann Larrivee
General List php-general@lists.php.net Subject: [PHP] HOWTO read PHP source code into a textarea Date: Fri, 25 Feb 2005 10:26:36 +1030 MIME-Version: 1.0 Received: from lists.php.net ([216.92.131.4]) by mc10-f12.hotmail.com with Microsoft SMTPSVC(6.0.3790.211); Fri, 25 Feb 2005 09:20:40 -0800

[PHP] Source code/Zend expert required

2004-12-05 Thread Colin
Hi, I need someone who knows a good deal about editing the php source code and especially the session source code. I need one urgently to help me in my school project. Please help! contact me cokeeffe[at]gmail.com cheers -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] source code display

2004-06-07 Thread Nguyen, Long P (Mission Systems)
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: http://158.114.148.90/? echo $sys_graphics . alt=Keystone 2 / _ setCols(2); $loginBox-addRow('Username');

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 ? or ?php anywhere. Do you have that somewhere in your code? If you do, are you sure php is installed on the server? -- PHP General Mailing List (http://www.php.net/) To

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-php

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 bring up

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 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 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

RE: [PHP] Source code

2003-11-07 Thread PHPLover
, ___ 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] Source code 1. Is it possible

[PHP] Source code

2003-11-06 Thread PHPLover
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 feature (installed

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

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 browse

Re: [PHP] php source code//php-imap/ php-devel ..etc

2003-08-09 Thread Jason Wong
installation. Try LAMP. what exactly the php source code has packeges ??? Probably more than you need. Just decide what functionality you need, look it up in the manual and see what the requirements are. -- Jason Wong - Gremlins Associates - www.gremlins.biz Open Source Software Systems Integrators

[PHP] php source code//php-imap/ php-devel ..etc

2003-08-09 Thread Nabil
,, why should i get zlib (by example)??? is there any documentation with a clear straight exapmle how do i compile it with all what i need (like apache - mysql - mssql - gd - and more ??) what exactly the php source code has packeges ??? Nabil -- PHP General Mailing List (http://www.php.net

[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: PHP source code

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() file

Re: [PHP] RE: PHP source code

2002-09-20 Thread Chris Shiflett
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, download it ;) Well, but if I write a script with MySQl, there has to be my user name

[PHP] PHP source code

2002-09-19 Thread Oliver Witt
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 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[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

Re: [PHP] PHP source code

2002-09-19 Thread Joseph W. Goff
PHP is open source so anyone can get the source code to it. You can find it at http://www.php.net/downloads.php - Original Message - From: Oliver Witt [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 19, 2002 9:50 AM Subject: [PHP] PHP source code Hi, Is there any

[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, download it ;) Well

[PHP] Re: PHP source code

2002-09-19 Thread Stephan Seidt
the secret-file stuff. bye, blizz On Thu, 19 Sep 2002 20:15:06 +0200, [EMAIL PROTECTED] (Oliver Witt) wrote: 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

Re: [PHP] PHP source code

2002-09-19 Thread 1LT John W. Holmes
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 I tend to read it left to right, but to each his own ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Re: PHP source code

2002-09-19 Thread Support @ Fourthrealm.com
, but this is the problem with all the secret-file stuff. bye, blizz On Thu, 19 Sep 2002 20:15:06 +0200, [EMAIL PROTECTED] (Oliver Witt) wrote: 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

[PHP] Source code

2002-09-06 Thread Roman Duriancik
How I show in IE source code of html page with php ? roman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Source code

2002-09-06 Thread adrian murphy
AM Subject: [PHP] Source code How I show in IE source code of html page with php ? roman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Source code

2002-09-06 Thread lallous
eptember 06, 2002 11:53 AM Subject: [PHP] Source code How I show in IE source code of html page with php ? roman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To uns

Re: [PHP] Source code

2002-09-06 Thread liljim
ay, September 06, 2002 11:53 AM Subject: [PHP] Source code How I show in IE source code of html page with php ? roman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (ht

[PHP] Source Code for the CNN Grabber

2002-03-28 Thread Ron
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 ? ## # spider_cnn.php # # Copyright W3matter.com LLC # http://www.w3matter.com ## # Released

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:

  1   2   >