Questions tagged [bcompiler]

bcompiler enables you to encode your scripts in phpbytecode, enabling you to protect the source code. bcompiler could be used in the following situations

bcompiler enables you to encode your scripts in phpbytecode, enabling you to protect the source code. bcompiler could be used in the following situations

  • to create a exe file of a PHP-GTK application (in conjunction with other software)
  • to create closed source libraries
  • to provide clients with time expired software (prior to payment)
  • to deliver close source applications
  • for use on embedded systems, where disk space is a priority.

For install instructions see the manual at pear.php.net

12 questions
7
votes
1 answer

Where can I find the bcompiler dll for xampp 1.8.2(PHP 5.4.X)

I am using xampp 1.8.2 on windows xp and bcompiler dll is not present in the ext directory. I installed older xampp(1.7.1) on windows XP and bcompiler dll was included in the ext directory. where can I find the bcompiler dll for xampp 1.8.2(PHP…
rakeshjain
  • 1,791
  • 11
  • 11
4
votes
3 answers

How to compile php source code in PHP 5.4

I've been searching a way to compile PHP source code and using it in a PHP script by loading the compiled code. No resultat yet, a small try using bcompiler but it's not compiling due to changes on the Zend core API, maybe small parts need to be…
hgates
  • 209
  • 5
  • 12
4
votes
2 answers

How safe is PHP bcompiler encoded code?

I'm interested if anyone knows exactly how effective/safe/protected PHP's bcompiler is against reverse engineering. The introduction page makes a bold claim: In terms of code protection, it is safe to say that it would be impossible to recreate the…
user1264579
  • 75
  • 1
  • 4
3
votes
2 answers

Is there any decompiler for bcompiler in PHP?

Hi am new to bcompiler and my purpose is to encrypt the PHP code in production site, for security. So my doubt is, whether decryption is possible if some one takes the encrypted code of bcompiler? Also is this a better method to encrypt a PHP code…
V-T
  • 756
  • 2
  • 9
  • 22
2
votes
0 answers

Bcompiler 1.0.2 does not work if a class is defined

The bcompiler encoded script of this code works fine:
Tacaza
  • 539
  • 1
  • 4
  • 12
2
votes
2 answers

What are the benefits of the different PHP compression libraries?

I've been looking into ways to compress PHP libraries, and I've found several libraries which might be useful, but I really don't know much about them. I've specifically been reading about bcompiler and PHAR libraries. Is there any performance…
cwallenpoole
  • 79,954
  • 26
  • 128
  • 166
1
vote
3 answers

php code compiled with bcompiler not working

I don't do a huge amount of php work and I've never used bcompiler before but I'm migrating a php site to a new server and I can't get this working. There seems to be a class compiled with bcompiler 'class.viewimage.php' - it contains bz compressed…
Aidan Kane
  • 3,856
  • 2
  • 25
  • 28
1
vote
2 answers

cant install bcompiler pecl extension

I have googled this until I am blue in the face - no matter what I try I can't seem to get bcompiler to install. I am running xampp 1.8.1 on windows # pecl install bcompiler downloading bcompiler-1.0.2.tgz ... Starting to download…
l0ft13
  • 710
  • 1
  • 7
  • 11
0
votes
0 answers

PHP Bcompiled code doesn't work in different Linux versions

I have been using PECL bcompiler extension for a long time. All is good. However, I have found that the moving the working script to another linux system (CentOS -> FreeBSD) causes a problem with include of the bcompiled program part to the basic…
0
votes
1 answer

How to use bcompiler and __FILE__ magic constant

I'm trying to compile some bits of a PHP application into bytecode. The code makes use of the magic constant __FILE__. infile.php:
Shabbyrobe
  • 12,298
  • 15
  • 60
  • 87
0
votes
0 answers

How to Use COM Object within Compiled PHP

I'm trying to access WMI using COM objects with PHP. The method below works very well with PHP on browser, but I can't make it work when the PHP file compiled as a Windows console application. $obj = new COM ( 'winmgmts://localhost/root/CIMV2'…
-3
votes
3 answers

Looking for PHP 5.4 and more to EXE compiler

I have my own PHP CLI utility, so I have a need in PHP compiler. I found nothing working with the last PHP versions, so I'm using a Phalanger now, but it's requires it installed on client mashine to run compiled scripts (!), and it's compiles files…
Acuna
  • 1,741
  • 17
  • 20