Setup IonCube Loader on Ubuntu 14

  • Last Created On Dec 08, 2024
  • 8
0 0

What is IonCube?

IonCube gives developers the opportunity to protect their code that is written in the PHP programming language. IonCube prevents this code from being viewed, edited, and run on unlicensed systems. This works by IonCube compiling the bytecode before encoding, so that the source code is eliminated. Runtime overheads are also reduced.

You will need…

  • Ubuntu Server 14.04 LTS – with a LAMP stack installed (Linux, Apache, MySQL and PHP).
  • An SCP connection to your server – as root. In this case, I will be connecting from Windows using WinSCP.
  • An open ssh connection to your server as root.

How to install IonCube

  1. Download the latest version of the IonCube Loader Wizard from the official site.
  2. In the ssh window, identify the contents of your PHP modules folder.
    php -i | grep extension_dir
    
  3. You will see an output that looks something like the following. Jot this down.
    extension_dir => /usr/lib/php5/20090626+lfs => /usr/lib/php5/20090626+lfs
    
  4. Inside the .zip that you downloaded from the IonCube website, there is a folder called IonCube. Upload that whole folder to your webroot at /var/www/html using the SCP connection. Alternatively, you could use wget to place it in that folder, using these commands:
    cd /var/www/html
    mkdir ioncube
    cd ioncube    
    wget http://www.ioncube.com/loader-wizard/loader-wizard.tgz    
    tar -xzf loader-wizard.tgz
    
  5. Using your web browser, navigate to http://<yourip>/ioncube/loader-wizard.php.
  6. Wait for the website to load. It will prompt you to select a hosting option.
  7. Select the “Dedicated/VPS server” option and fill in the “Company details” with:
    Name: AKLWEB Host
    
    Address: https://www.aklwebhost.com
    
  8. IonCube will prompt you to copy a file from the folder that you have just uploaded to another folder on the VPS. Do that using the WinSCP connection. You may find it easier to download and re-upload the file. The directory that it has told you should be the PHP extensions directory that we found earlier.
  9. The bottom of the webpage will show you a link to a file called 20-ioncube.ini.
  10. Download that file and open it in your favorite text editor. It will contain one line that is very similar to this:
    zend_extension = /usr/lib/php5/20121212/ioncube_loader_lin_5.5.so
    
  11. Back in the ssh connection, enter this command to locate the php.ini file:
    php -i | grep 'Configuration File'
    

    The output will appear similar to:

    Configuration File (php.ini) Path => /etc
    Loaded Configuration File => /etc/php.ini
    
  12. Once you have located it, open it in your favorite text editor.
    nano /path/to/php.ini
    
  13. Add the zend_extension line that we found earlier to the top of this file, below the line that reads [PHP].
  14. Restart PHP and Apache.
    /etc/init.d/apache2 restart
    
  15. In your web browser, navigate to http://<yourip>/ioncube/loader-wizard.php.
  16. You may see an error about the fact that some functions may be unavailable. I haven’t noticed any issues due to this error message.
  17. Enjoy! You can now install your application that needs IonCube loader.
Views: 8

Recent Articles

  • How to Install JAX with ROCm Acceleratio...
    96
  • Deploy a PyTorch Workspace on a Vultr Cl...
    71
  • Managing Backup Storage
    83
  • Automating FTP Backups in Windows Server
    71
  • Automating FTP Backups in Linux
    75

Popular Articles

  • Our General Terms & Conditions
    2632
  • Our Privacy Policy
    2477
  • Our Cookies Policy
    275
  • Our Terms of Use
    152
  • How to Install JAX with ROCm Acceleratio...
    96