shasi kanth
shasi kanth

Reputation: 7094

can php (wapache) run remote files?

i recently had a look at Wapache and it sounds good for running our php applications as desktop apps. For one of our php projects, i need to deploy it as a desktop app in client's system, and wapache is my choice. For running the desktop app with wapache, i put all my project files in htdocs folder in wapache folder, which i can handle to the client.

But what i worry is that, with wapache, the source code is visible to other users, as the files are available in the htdocs folder of the wapache directory in client's machine, which i dont like.

So i have 2 options, one is to encrypt my source code, and other is to make the wapache run the remote files.

How can i achieve the second option, if at all, its possible?

Upvotes: 0

Views: 657

Answers (1)

Yuri Korolov
Yuri Korolov

Reputation: 510

Wapache works well with ioncube encrypted files.

You can also separate the logic files from interface, then run logic files on server and get the data using curl, but this seems more complicated

Upvotes: 1

Related Questions