문제

I am customizing geodesic classified, my client has not given me access to a licence file (rather I have not asked him about this).

I am able to customize it from the admin panel, but I want to customize it on my local system.

But when I tried to do this it get redirected to site off page.

I think it is because of the product.php file code (I have same code as this one):

What does this PHP do? Is it an encoder/decoder?

도움이 되었습니까?

해결책

ionCube (at least when it was PHP Accelerator) compiled PHP to bytecode prior to encoding.

This eliminates the source code entirely, and even if you were able to reverse the encoding process, you would still be left with compiled opcodes, not source.

The ionCube loader decodes the bytecode, which then does not need to be parsed, and is executed directly by the PHP virtual machine.

If I recall correctly, the encoder also performs optimisations and obfuscations on the bytecode, that help prevent decompilation.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top