IonCube Kurulumu

IonCube Loader'ı cPanel, Plesk, CloudPanel, Ubuntu ve CentOS üzerinde nasıl kurarsın — adım adım Türkçe rehber.

10,000+ dosya çözüldü · 99.9% başarı oranı · Ücretsiz önizleme mevcut

terminal
functions.php
Encrypted
1<?php //ICB0 74:0 81:51714 82:a6b9e ?>2<?php //003353if(extension_loaded('ionCube Loader')){4  die('The file '.__FILE__." is corrupted.");5}echo("Script error: the ionCube Loader for6PHP needs to be installed. The ionCube Loader7is the industry standard PHP extension for8running protected PHP code, and can usually9be added easily to a PHP installation.10For Loaders please visit ioncube.com");11exit(199);12?>13HR+cPvXRFmq8V8KYrIAfBlzaKcilXyFs2r2RC9Y145H9SXxbv8z4Lq0MxIV3wSHaW2odtYN/0K4Vsvwk15a1kzeOgsPqnNbhOX/LQgSYhjrw/EiwtFawI9vdP16H6sVa75iFaAcfDaauMfUyBMOoWe0IRKr6olKseh
functions_decoded.php
Decoded
1<?php23function theme_options($v5 = null) {4    if ($v5) {5        return get_option("my_framework");6    }7    return get_option("my_framework")[$v5];8}910function kelaket_log($v5 = null, $v6 = "None") {11    $v7 = new Kelaket_Log();12    $v7->log($v6, $v5);13    return $v7;14}1516function kelaket_load_textdomain() {17    load_theme_textdomain("kelaketfilm", __DIR__);18    return;19}
Ready

Ücretsiz Önizleme

IonCube ile şifrelenmiş herhangi bir PHP dosyasını yükle ve çözülmüş çıktıyı anında önizle. Kayıt gerekmez.

Only upload files you own, are authorized to analyze, or are lawfully permitted to recover, migrate, audit, or interoperate with. Do not upload third-party proprietary software without permission. See Terms.

IonCube Loader kurulumu — panel panel

cPanel / WHM

  1. WHM'ye root kullanıcı olarak giriş yap.
  2. Software → EasyApache 4 → Currently Installed Packages.
  3. "Customize" tuşuna bas.
  4. PHP Extensions sekmesinde "ioncube" veya "ionCubeLoader" ara.
  5. Kullanmak istediğin tüm PHP sürümleri için işaretle.
  6. Review → Provision.

Bazı eski cPanel sürümlerinde Home → Server Configuration → PHP Config Editor üzerinden manuel zend_extension=ioncube_loader_lin_X.Y.so eklemen gerekebilir.

Plesk

  1. Plesk → Tools & Settings → PHP Settings.
  2. Hedef PHP sürümünü aç.
  3. "ionCube Loader" modülünü etkinleştir.
  4. Save.

CloudPanel

# PHP 8.3 örneği
sudo apt-get install ioncube-loader-php-8.3
sudo systemctl restart php8.3-fpm
php -v  # doğrula

Ubuntu 22.04 / 24.04 (manuel)

cd /tmp
wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz
tar xzf ioncube_loaders_lin_x86-64.tar.gz
cd ioncube

# PHP sürümünü öğren
php -v  # Örn: PHP 8.3

# Uygun .so dosyasını kopyala
sudo cp ioncube_loader_lin_8.3.so $(php -r "echo ini_get('extension_dir');")/

# Yükleme için ini dosyası oluştur
echo "zend_extension=ioncube_loader_lin_8.3.so" | sudo tee /etc/php/8.3/mods-available/ioncube.ini
sudo phpenmod ioncube
sudo systemctl restart apache2  # veya nginx + php-fpm

php -v  # "with the ionCube PHP Loader" görmelisin

CentOS / RHEL / Rocky Linux

sudo yum install wget -y
wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz
tar xzf ioncube_loaders_lin_x86-64.tar.gz

# extension_dir'i bul
php -i | grep extension_dir
# Örn: /usr/lib64/php/modules

sudo cp ioncube/ioncube_loader_lin_8.3.so /usr/lib64/php/modules/
echo "zend_extension=ioncube_loader_lin_8.3.so" | sudo tee /etc/php.d/00-ioncube.ini
sudo systemctl restart httpd  # veya php-fpm

XAMPP (Windows)

  1. https://www.ioncube.com/loaders.php adresinden Windows (VC15/VS16) paketini indir.
  2. İçindeki ioncube_loader_win_X.Y.dll dosyasını C:\xampp\php\ext\ klasörüne kopyala.
  3. C:\xampp\php\php.ini dosyasını aç.
  4. En üste ekle: zend_extension=ioncube_loader_win_8.3.dll
  5. XAMPP Control Panel'den Apache'yi restart et.

Kurulumu doğrula

php -v
# Beklenen çıktı: "with the ionCube PHP Loader v13.0.1, Copyright (c) 2002-2026..."

IonCube dosyasını çözmen mi gerekiyor?

Eğer bir IonCube ile şifrelenmiş dosyayı kurmak ve çalıştırmak istiyorsan Loader yeterli. Ama dosyanın kaynak kodunu görmek veya düzenlemek istiyorsan, çözücüye ihtiyacın var. Aşağıdaki yükleyiciyi kullan — ilk 20 satır ücretsiz önizlenebilir.

IonCube 10–15

IonCube 10'dan 15'e tüm sürümler için tam destek. Her yeni encoder sürümünü takip ediyoruz.

PHP 7.1–8.4

Her PHP sürümü destekleniyor: 7.1, 7.2, 7.3, 7.4, 8.1, 8.2, 8.3 ve 8.4.

Temiz çıktı

Doğru biçimlendirilmiş, okunabilir kod — yapı ve formatlama korunur.

Hızlı çözüm

Çoğu dosya 30 saniyeden kısa sürede çözülür. Her boyutta dosya için optimize edildi.

%100 online

Kurulum yok. Her tarayıcıda, her cihazda, her yerde çalışır.

Anında indirme

Çözülen dosyaları işlem sonrası hemen indir. Beklemek yok.

Nasıl çalışır

Çözülmüş koda üç adımda

  1. 01

    Dosyanı yükle

    IonCube ile şifrelenmiş PHP dosyanı sürükle bırak ya da seçmek için tıkla.

  2. 02

    Çıktıyı önizle

    Kaliteyi doğrulamak için çözülmüş kodun ilk 20 satırını anında gör.

  3. 03

    Tam dosyayı indir

    Kredi satın al ve çözülmüş kaynak kodun tamamını indir.

Credit packs

Buy once and decode anytime. Web and API access are included.

Starter
$9

3 credits · $3.00/file

Entry pack for a few one-off files.
  • 3 file credits
  • Web + API access
  • Credits do not expire
  • IonCube 10-15 & PHP 7.1-8.4
  • Successful decodes only
En Popüler
Pro
$39

30 credits · $1.30/file

Best default pack for developers.
  • 30 file credits
  • Web + API access
  • Credits do not expire
  • IonCube 10-15 & PHP 7.1-8.4
  • Successful decodes only
Enterprise
$149

150 credits · $0.99/file

High-volume pack for teams and agencies.
  • 150 file credits
  • Web + API access
  • Credits do not expire
  • IonCube 10-15 & PHP 7.1-8.4
  • Successful decodes only
Custom
Contact us

150+ credits · custom volume

Larger volume, special handling, or custom terms.
  • 150+ file credits
  • Web + API access
  • Custom volume pricing
  • Priority handling options
  • Email support

Güvenli kripto ödemeleri · Bitcoin, Ethereum, Litecoin, Monero, USDT

Sıkça sorulan sorular

Kod çözmeye hazır mısın?

İlk dosyanı yükle, sonuçları saniyeler içinde gör.

Signal'den bize ulaşın