Skip to content
Oxrion Loader

Loader / Install

Install the loader

Pick your build below, add one line to php.ini, and you're done. The same loader runs every protected file — install it once per server, not once per project.

Get your build

Pick, download, install

Choose your operating system and PHP version. We'll point you at the exact file and the commands to enable it.

Not sure which PHP you're on? Run php -v on your server. Not sure you're compatible? Check the requirements.

1 · Operating system

2 · PHP version

Not sure? Run php -v on your server.

Your build

oxrion_loader-php8.3-linux-x64.so

Download

Then install it

# 1. Find your extension directory
php -i | grep extension_dir

# 2. Move the file there, renamed:
sudo mv oxrion_loader-php8.3-linux-x64.so \
  <ext_dir>/oxrion_loader.so

# 3. Enable it in php.ini (find: php --ini)
extension=oxrion_loader.so

# 4. Restart your web server
sudo systemctl restart php8.3-fpm

Last step

Confirm it's working

After enabling the loader and restarting your web server, check that it's 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? See troubleshooting — it's almost always the wrong php.ini or a skipped restart.