This question already has answers here:
Is it possible to hide/encode/encrypt php source code and let others have the system?
(6 answers)
Closed 4 years ago.
I have developed a school management system software in CakePHP and I want to sell it to a school. Is there any way to encrypt it or such a thing that no one can copy it even having the code as is a offline system?
Maybe better will be selling as SaaS (Software as a Service)
Related
This question already has answers here:
Practicing BDD with python [closed]
(10 answers)
Closed 8 years ago.
I am trying to test a web-application, using python,
I am new in python so don't know much Python testing tools, i have written tests in Selenium/Pink/Behat in the PHP world, Now i have to use python for Behavior-Driven-Development (BDD),
I have been looked Google, but I couldn't really get a definitive answer. can any one please suggest me best python testing tool, like Behat.
Thanks in Advance
Try using Unittesting such as http://docs.python.org/2/library/unittest.html
This question already has answers here:
Best solution to protect PHP code without encryption
(11 answers)
Can you "compile" PHP code and upload a binary-ish file, which will just be run by the byte code interpreter?
(14 answers)
Closed 9 years ago.
Not sure if this has been discussed before.
I was looking for a solution that can protect the PHP code.
So even if I put the code on my client's server if they decide to put another developer on it or try to resell my code they should not be able to do so.
Is that even remotely possible?
The .exe versions of desktop application thingy is something I am looking for, but for PHP.
There are options to "compile" code like phpcompiler also read another thread about this on stackoverflow
This question already has answers here:
Closed 12 years ago.
Possible Duplicate:
How can I implement OCR on a website using PHP?
Ive been looking for a working OCR class (must be PHP) for almost 3 days.
Anyone knows a working OCR? please guide me if you have a OCR sample.
I don't believe anybody implemented any OCR solution in PHP.
OCR ( Optical Character Recognition ) is a very complex piece of Software and not anything PHP would be suited for to implement.
But for sure you can call an external OCR program from PHP.
So you should look for an OCR solution which can be used from command line.
This question already has answers here:
Closed 12 years ago.
Possible Duplicate:
PHP memory profiling
From what I've found online, all I've seen for tracking memory usage in an PHP application is to use the native "memory_get_usage()" function or buy a commercial product like zend server.
Anybody have some other suggestions? Seems like a good use for Aspect Oriented Programming...
XDebug works great for tracing, profiling, and debugging.
This question already has answers here:
How to change include directory of Zend Framework
(5 answers)
Closed 9 years ago.
I previously posted this question (Reading Google docs spreadsheet) and got a good answer that instructed me to use the Zend Framework. I've never used it before, and I'm fairly certain I'm setting it up wrong. It says to "Simply download the framework,
extract it to the folder you would like to keep it in, and add the library directory
to your PHP include_path."
I'm doing it like this:
<?php
ini_set("include_path", ".:/PortableApps/xampp/htdocs/zend/library");
?>
...which is probably most certaintly wrong. Can someone help me?
Look at this question. It will answer yours.