I have developed website in php. I want deploy it without source code. Is it possible with php?

Can I convert my website code to some intermediate form and then deploy it ?

share|improve this question
its not possible in php ... also why you want to do that ? – NullPonyPointer Apr 1 at 7:46
Do you want to hide the PHP code, or the HTML code? – DCoder Apr 1 at 7:47
1  
I have developed small utility for store management. I am going to deploy it in local store. I dont want anybody just copy paste it. – deepak Apr 1 at 7:50
4  
@deepak: Make a contract and tell your customer which rights they have with the software and how much money they owe you if they break the contract. Works better. – hakre Apr 1 at 7:51
1  
@roXon: it depends on the use case. The hosting company (and depending on the hosting setup, other users of the same hosting server) can see the PHP code. Site visitors can see the HTML code. – DCoder Apr 1 at 7:52
show 4 more comments

3 Answers

Hi you can use the Zend guard to encode your code so it can't be reverse engineered...

http://www.zend.com/en/products/guard/

share|improve this answer

if you are going to host your website on shared hosting or any thirdparty hosting, you may use zend encoder or ioncube php encoder, they will protect your source code.

http://www.zend.com/en/products/guard

http://www.ioncube.com/sa_encoder.php

share|improve this answer
ionCube is easy to decode. – uınbɐɥs Apr 1 at 7:51
ohh! thanks for let me know – Meghraj Choudhary Apr 1 at 7:53

PHP HTML and JavaScript are open source language so you can do nothing to encode them which can't be decode. but the best way is Zend Guard - Encode Your PHP Applications for php which can be decoded by sites like these: Websites for zend decoder online.

But the good news is if you always use the last version of Zend Guard it can't be reversed, because still there is no decoder came for it.

Another way is, you buy a VPS (Virtual private server) or Dedicated Server and deploy your source code in there and you just sell your web application usage to your customers (not the source code). So just, you have the user and password of host and no one can see your application code.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.