Skip to content
Oxrion

Install the loader

Install once. Run protected code anywhere.

The loader is free and always will be. Pick the build for your PHP version and OS, add one line to php.ini, and you're done. The same loader runs every file you protect.

Before you download

Which build do I need?

Match three things: your PHP version, your operating system, and (on Windows) thread safety.

Run this to see exactly what you need:

bash
php -i | findstr /C:"PHP Version" /C:"Thread Safety" /C:"Architecture"
# Linux/macOS: php -i | grep -E "PHP Version|Thread Safety|Architecture"
  • PHP Version — pick the matching build (7.4 through 8.4).
  • Thread Safety — "enabled" means TS, "disabled" means NTS. Linux is always NTS.
  • OS — Linux uses .so, Windows uses .dll.

Linux x86_64

NTS only. Compatible with all major distributions. Glibc 2.27+.

Installation instructions
bash
# 1. Find your PHP extension directory
php -i | grep extension_dir

# 2. Move the loader into it
sudo mv oxrion_loader-php8.2-linux-nts.so /usr/lib/php/20220829/

# 3. Add it to php.ini
echo "extension=oxrion_loader.so" | sudo tee -a /etc/php/8.2/cli/php.ini

# 4. Verify
php -m | grep oxrion

Last step

Confirm it's working

After editing php.ini and restarting your web server, check that the loader is active. If you see oxrion in the list, you're ready to run protected files.

bash
# Should print: oxrion
php -m | grep oxrion        # Linux / macOS
php -m | findstr oxrion     # Windows

Nothing printed? Make sure you edited the php.ini your web server actually uses (run php --ini to find it), and that you restarted the server after the change.

Ready to protect your code?

Protect your PHP files with Oxrion Cloud. The loader on this page is all your customers ever need to install.