Re: [PHP] How to protect the source code.

2010-11-19 Thread Hans Åhlin
2010/11/19 Daniel P. Brown > > On Fri, Nov 19, 2010 at 17:07, Tamara Temple wrote: > > > > Perhaps it's just me, but I'm completely missing the point of this. How is > > someone going to get your code off of a server? > >    It's more likely that he's interested in learning how to protect > code

Re: [PHP] How good is IIS for hosting PHP? Can I get stuff like mod_rewrite rules, op-code caching, etc.?

2010-11-19 Thread Aman Singh
Check out http://learn.iis.net/page.aspx/773/how-to-install-the-microsoft-web-platform-for-php ?WT.mc_id=soc-c-in-loc--cfp/ Also mod_rewrite is possible: http://learn.iis.net/page.aspx/470/importing-apache-modrewrite-rules?WT.mc_id=soc-c-in-loc--cfp. Ditto for caching: http://www.iis.net/download/

[PHP] How good is IIS for hosting PHP? Can I get stuff like mod_rewrite rules, op-code caching, etc.?

2010-11-19 Thread lavanya pandita
How good is IIS for hosting PHP? Can I get stuff like mod_rewrite rules, op-code caching, etc.?

[PHP] My project requires creating office documents on PHP. Any recommendations on what to use?

2010-11-19 Thread chetan ahuja
My project requires creating office documents on PHP. Any recommendations on what to use?

Re: [PHP] mysql help (sorry, a bit OT)

2010-11-19 Thread Andre Polykanine
Hello Gary, Actually, what I do here is the following: I create a subdomain called beta.mysite.com (for me it's http://beta.oire.org/ and http://beta.gviragon.org/ :-)). There I have a copy of my database and all of my files. The only difference is the mysql_select_db in the connect.php file. Ther

Re: [PHP] How to protect the source code.

2010-11-19 Thread Nathan Nobbe
On Fri, Nov 19, 2010 at 3:07 PM, Tamara Temple wrote: > > On Nov 19, 2010, at 3:39 PM, Hans Åhlin wrote: > > Does any one know if there is any way for me to protect my source code >> without the requirement of a extension being installed on the server? >> i.e encryption, obfusicator, script libra

Re: [PHP] How to protect the source code.

2010-11-19 Thread Daniel P. Brown
On Fri, Nov 19, 2010 at 17:07, Tamara Temple wrote: > > Perhaps it's just me, but I'm completely missing the point of this. How is > someone going to get your code off of a server? It's more likely that he's interested in learning how to protect code he will be distributing or otherwise deliv

Re: [PHP] How to protect the source code.

2010-11-19 Thread Tamara Temple
On Nov 19, 2010, at 3:39 PM, Hans Åhlin wrote: Does any one know if there is any way for me to protect my source code without the requirement of a extension being installed on the server? i.e encryption, obfusicator, script library, compile the code. Perhaps it's just me, but I'm completely m

Re: [PHP] How to protect the source code.

2010-11-19 Thread Bastien Koert
On Fri, Nov 19, 2010 at 4:39 PM, Hans Åhlin wrote: > Hi > Does any one know if there is any way for me to protect my source code > without the requirement of a extension being installed on the server? > i.e encryption, obfusicator, script library, compile the code. > > Any idea is appreciated. > >

RE: [PHP] How to protect the source code.

2010-11-19 Thread Jay Blanchard
[snip]compile the code.[/snip] http://www.phpcompiler.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to protect the source code.

2010-11-19 Thread Daniel Molina Wegener
On Friday 19 November 2010, Hans Åhlin wrote: > Hi Hello, > Does any one know if there is any way for me to protect my source code > without the requirement of a extension being installed on the server? > i.e encryption, obfusicator, script library, compile the code. You can use some propr

[PHP] How to protect the source code.

2010-11-19 Thread Hans Åhlin
Hi Does any one know if there is any way for me to protect my source code without the requirement of a extension being installed on the server? i.e encryption, obfusicator, script library, compile the code. Any idea is appreciated. Thanks / Hans ** H

Re: [PHP] smary assign var

2010-11-19 Thread Tontonq Tontonq
i solved so {assign var='yuzde' value=$product.reduction*100} {assign var='yuzde' value=$yuzde/$product.price_without_reduction} -{$yuzde|round:0}% 2010/11/19 > Taking what I understand from C, I think you are looking for this > equivalent > in php. > > $product = array('reduction'=>'4','pr

ENC: RES: [PHP] I am a Windows programmer and getting started on PHP

2010-11-19 Thread Alejandro Michelin Salomon
De: Alejandro Michelin Salomon [mailto:amichel...@hotmail.com] Enviada em: sexta-feira, 19 de novembro de 2010 14:45 Para: 'a...@ashleysheridan.co.uk' Assunto: RES: RES: [PHP] I am a Windows programmer and getting started on PHP Daevid Vincent: For me is no problem if Linux is case sens

[PHP] persistent object caching

2010-11-19 Thread Sven Richter
Hello everybody, our company has completed a webproject with the designgoal to implement something fast so we have some results. This is what we have done, and the result is, uhm, however, thats not the point. Now we are looking for ways to redesign the project with two goals in mind: 1. Build an

Re: [PHP] I am a Windows programmer and getting started on PHP

2010-11-19 Thread Thiago H. Pojda
On Fri, Nov 19, 2010 at 2:13 PM, Alejandro Michelin Salomon < amichel...@hotmail.com> wrote: > > -Original Message- > > Subject: [PHP] I am a Windows programmer and getting started > > on PHP. What is the easiest way of getting started? Most of > > the stuff I encounter seems to be very L

Re: RES: [PHP] I am a Windows programmer and getting started on PHP

2010-11-19 Thread a...@ashleysheridan.co.uk
The reason you might run it on a vm is because not all operating systems are created equal. Things that work in Linux won't necessarily work on windows, and vice versa. If you're developing on the same type of platform as the live server, there is less chance of a problem rearing its head. For

RES: [PHP] I am a Windows programmer and getting started on PHP

2010-11-19 Thread Alejandro Michelin Salomon
Daevid Vincent: I never use XAMP and those type of installations. Is very simple install Apache on windows ( takes 3 minutes ), and php too. Install php is simples, run the msi package, the installer configures httpd.conf Then you make the changes that you need to php.ini and is complete. (

RE: [PHP] smary assign var

2010-11-19 Thread Steve Staples
On Thu, 2010-11-18 at 22:08 -0500, ad...@buskirkgraphics.com wrote: > Taking what I understand from C, I think you are looking for this equivalent > in php. > > $product = array('reduction'=>'4','price_without_reduction'=>'22','price > '=>'18') > $yuzde = $product['reduction']*100; > $yuzde = roun