
Dropshipping Türkiye: Tedarikçi Entegrasyonu ve Otomatik Sipariş İşleme
Türkiye'de dropshipping modeli: tedarikçi seçimi, WooCommerce entegrasyonu, otomatik sipariş yönlendirme ve karlılık analizi.
Dropshipping Türkiye: Tedarikçi Entegrasyonu ve Otomatik Sipariş İşleme
Dropshipping, stok tutmadan ürün satmanızı sağlayan bir e-ticaret modelidir. Bu rehberde Türkiye'de dropshipping kurulumunu ve otomasyonu ele alıyoruz.
Dropshipping Modeli Nasıl Çalışır?
Geleneksel E-Ticaret:
Siz → Tedarikçi (toplu alım) → Depo → Müşteri
Dropshipping:
Müşteri → Siteniz → Tedarikçi → Müşteri (direkt kargo)
Avantajlar:
✓ Stok maliyeti yok
✓ Düşük başlangıç sermayesi
✓ Geniş ürün yelpazesi
✓ Lokasyon bağımsız
Dezavantajlar:
✗ Düşük kar marjı (%10-30)
✗ Kargo süresi kontrol dışı
✗ Stok senkronizasyonu güç
✗ Marka bilinirliği zor
Türkiye Dropshipping Tedarikçileri
Yerel Türk Tedarikçiler:
1. Modanisa (moda/tekstil)
2. DaWanda TR
3. DropTR.com
4. ToptancıBul.com
5. Büyük tekstil üreticileri (Bursa, İstanbul)
Yurt Dışı Tedarikçiler:
1. AliExpress (Çin)
- DSers, Oberlo entegrasyonu
- 15-45 gün kargo
2. CJDropshipping
- Türkiye deposu mevcut
- 7-15 gün kargo
3. Printful (Print-on-Demand)
- T-shirt, kupa, poster
WooCommerce Dropshipping Kurulumu
// WooCommerce'de tedarikçi yönetimi
// Her ürüne tedarikçi bilgisi ekle
// Ürün meta verisi
add_action('add_meta_boxes', 'add_supplier_meta_box');
function add_supplier_meta_box() {
add_meta_box(
'supplier_info',
'Tedarikçi Bilgisi',
'render_supplier_meta_box',
'product',
'normal',
'default'
);
}
function render_supplier_meta_box($post) {
$supplier = get_post_meta($post->ID, '_supplier', true);
$supplier_sku = get_post_meta($post->ID, '_supplier_sku', true);
$supplier_cost = get_post_meta($post->ID, '_supplier_cost', true);
?>
<p>
<label>Tedarikçi:</label>
<select name="_supplier">
<option value="">Seçin</option>
<option value="aliexpress" <?php selected($supplier, 'aliexpress'); ?>>AliExpress</option>
<option value="cj" <?php selected($supplier, 'cj'); ?>>CJDropshipping</option>
<option value="yerel" <?php selected($supplier, 'yerel'); ?>>Yerel Tedarikçi</option>
</select>
</p>
<p>
<label>Tedarikçi SKU:</label>
<input type="text" name="_supplier_sku" value="<?php echo esc_attr($supplier_sku); ?>">
</p>
<p>
<label>Maliyet (TL):</label>
<input type="number" name="_supplier_cost" value="<?php echo esc_attr($supplier_cost); ?>">
</p>
<?php
}
// Siparişi tedarikçiye yönlendir
add_action('woocommerce_order_status_processing', 'forward_order_to_supplier');
function forward_order_to_supplier($order_id) {
$order = wc_get_order($order_id);
foreach ($order->get_items() as $item) {
$product_id = $item->get_product_id();
$supplier = get_post_meta($product_id, '_supplier', true);
$supplier_sku = get_post_meta($product_id, '_supplier_sku', true);
if ($supplier === 'aliexpress') {
// DSers/Oberlo API ile AliExpress siparişi
send_to_aliexpress($order, $supplier_sku, $item->get_quantity());
} elseif ($supplier === 'cj') {
// CJDropshipping API
send_to_cj($order, $supplier_sku, $item->get_quantity());
} elseif ($supplier === 'yerel') {
// E-posta ile sipariş gönder
send_supplier_email($order, $supplier_sku, $item);
}
}
}
function send_supplier_email($order, $sku, $item) {
$to = get_option('supplier_email');
$subject = 'Yeni Sipariş #' . $order->get_order_number();
$body = "Sipariş Numarası: " . $order->get_order_number() . "
";
$body .= "Ürün SKU: " . $sku . "
";
$body .= "Adet: " . $item->get_quantity() . "
";
$body .= "Teslimat Adresi:
";
$body .= $order->get_shipping_first_name() . " " . $order->get_shipping_last_name() . "
";
$body .= $order->get_shipping_address_1() . "
";
$body .= $order->get_shipping_city() . " " . $order->get_shipping_postcode() . "
";
$body .= "Tel: " . $order->get_billing_phone();
wp_mail($to, $subject, $body);
}
Stok Senkronizasyonu
// AliExpress stok senkronizasyonu (cron ile)
add_action('sync_aliexpress_stock_cron', 'sync_aliexpress_stock');
function sync_aliexpress_stock() {
$products = get_posts([
'post_type' => 'product',
'meta_key' => '_supplier',
'meta_value' => 'aliexpress',
'numberposts'=> -1,
]);
foreach ($products as $product_post) {
$sku = get_post_meta($product_post->ID, '_supplier_sku', true);
$stock = get_aliexpress_stock($sku);
$product = wc_get_product($product_post->ID);
if ($stock !== null) {
$product->set_stock_quantity($stock);
$product->save();
}
}
}
Karlılık Hesaplama
// Brüt kar hesaplama
function calculate_profit($order_id) {
$order = wc_get_order($order_id);
$total_cost = 0;
$total_revenue = 0;
foreach ($order->get_items() as $item) {
$product_id = $item->get_product_id();
$supplier_cost = (float) get_post_meta($product_id, '_supplier_cost', true);
$total_cost += $supplier_cost * $item->get_quantity();
$total_revenue += $item->get_total();
}
$shipping_cost = $order->get_shipping_total(); // Kargo maliyeti
$payment_fee = $order->get_total() * 0.025; // Ödeme komisyonu (~%2.5)
$gross_profit = $total_revenue - $total_cost - $shipping_cost - $payment_fee;
$margin = ($gross_profit / $total_revenue) * 100;
return [
'revenue' => $total_revenue,
'cost' => $total_cost,
'shipping' => $shipping_cost,
'payment_fee' => $payment_fee,
'gross_profit' => $gross_profit,
'margin' => round($margin, 2),
];
}
Sonuç
Dropshipping, düşük riskle e-ticarete başlamanın etkili bir yoludur. WooCommerce ile tedarikçi entegrasyonu, otomatik sipariş yönlendirme ve karlılık takibi kurarak profesyonel bir dropshipping işi kurabilirsiniz. Buyukweb hosting, dropshipping mağazanız için gerekli performansı ve güvenilirliği sağlar.
Ilgili Buyukweb Hizmetleri:
- Yuksek trafik icin dedicated sunucu
- Guvenli hosting ile online magaza kurun
- Tum hosting ve sunucu paketlerimiz
E-Ticaret Altyapi Rehberi
Platform Secimi
WooCommerce: Esnek, genis eklenti. Kucuk-orta isletmeler.
PrestaShop: Guclü stok, coklu dil.
OpenCart: Hafif, kolay kurulum.
Shopify: Hosted, teknik bilgi gerektirmez.
Odeme
iyzico, PayTR, Param sanal pos. 3D Secure zorunlu. Kapida odeme onemli. Taksit seceenekleri donusumu arttirir.
Marketplace Entegrasyonu
Amazon, Trendyol, Hepsiburada, N11 icin entegrator yazilimi. Stok senkronizasyonu kritik. Coklu kanal strateji.
Performans
4 GB RAM, 2 vCPU, NVMe SSD minimum. CDN ile gorsel hizi. Yuksek trafik donemlerinde kaynak artirin.
Guvenlik
PCI DSS uyumu. Odeme bilgisi saklamayin. SSL, WAF, KVKK uyumlulugu zorunlu.
SEO
Product schema ekleyin. Gorsel optimize edin. Meta bilgilerini ozellestirin. Google Shopping entegrasyonu.
Sik Sorulan Sorular
Hosting mi VDS mi?
500 altinda ziyaretci hosting yeterli. 1000+ veya marketplace entegrasyonu icin VDS oneriyoruz.
Marketplace entegrasyonu icin ne gerekir?
Sabit IP VDS, entegrator yazilimi, API erisimleri. Buyukweb E-Ticaret VDS bu icin tasarlanmistir.
Sonuc
Basarili e-ticaret guclü altyapi, dogru platform ve etkili pazarlama birlesimdir. VDS ile isletmenizi olceklendirin.
E-Ticaret Baslangic Kontrol Listesi
Yasal
- Sirket/sahis kurulumu
- Vergi levhasi
- Mesafeli satis sozlesmesi
- KVKK aydinlatma metni
- Cerez politikasi
- Iade kosullari
Teknik
- Hosting/VDS secimi
- SSL sertifikasi
- E-ticaret platformu
- Sanal pos (3D Secure)
- Kargo entegrasyonu
- E-fatura entegrasyonu
- Google Analytics + Search Console
Pazarlama
- Google Business Profile
- Sosyal medya hesaplari
- Google Shopping
- Facebook/Instagram Shop
- E-posta pazarlama
E-Ticaret VDS vs Ev Interneti
| Ozellik | Ev Interneti | E-Ticaret VDS |
|---|---|---|
| IP | Dinamik | Sabit |
| Temizlik | Bilinmiyor | Temiz |
| Kesinti | Elektrik/internet | %99.8 uptime |
| Hiz | Degisken | 1 Gbps |
| Guvenlik | Dusuk | DDoS korumali |
Marketplace islemleri icin sabit ve temiz IP kritik. Ban riski en aza iner.
Hosting ve Sunucu Terimleri Sozlugu
| Terim | Aciklama |
|---|---|
| VDS | Virtual Dedicated Server - Sanal ozel sunucu |
| NVMe SSD | Non-Volatile Memory Express - En hizli disk teknolojisi |
| LiteSpeed | Yuksek performansli web sunucu yazilimi |
| CloudLinux | Paylasimli hosting icin kaynak izolasyon isletim sistemi |
| cPanel | Populer web hosting kontrol paneli |
| Plesk | Web hosting ve sunucu yonetim paneli |
| KVM | Kernel-based Virtual Machine - Tam sanallastirma teknolojisi |
| DDoS | Distributed Denial of Service - Dagitik hizmet engelleme saldirisi |
| SSL/TLS | Veri iletisimini sifreleyen guvenlik protokolu |
| TTFB | Time to First Byte - Sunucu yanit suresi |
| CDN | Content Delivery Network - Icerik dagitim agi |
| WAF | Web Application Firewall - Web uygulama guvenligi duvari |
| IOPS | Input/Output Operations Per Second - Disk performans olcusu |
| Uptime | Sunucunun kesintisiz calisma suresi yuzdesi |
| Bandwidth | Veri transfer kapasitesi |
Bu terimleri anlamak, hosting ve sunucu hizmetlerini daha bilinçli secmenize yardimci olur. Detayli bilgi icin Buyukweb blog yazilarini takip edin veya teknik destek ekibimize danisIn.
Teknik Destek ve Yardim Kanallari
Buyukweb olarak musterilerimize birden fazla destek kanali sunuyoruz:
Canli Destek (Tawk.to)
Web sitemiz uzerinden 7/24 canli destek ile aninda yardim alin. Teknik sorulariniz, fatura islemleriniz ve genel bilgi talepleriniz icin canli destek ekibimiz hizmetinizdedir.
Telefon Destegi
0850 302 60 70 numarasindan hafta ici ve hafta sonu teknik destek alabilirsiniz. Acil durumlar ve karmasik sorunlar icin telefon destegi en hizli cozum yoludur.
E-posta Destegi
destek@buyukweb.com adresine detayli sorun tanimlamanizi gonderin. Ekran goruntuleri ve hata mesajlari ile birlikte gonderdiginiz talepler daha hizli cozumlenir.
Musteri Paneli
my.buyukweb.com uzerinden destek talepleri olusturun, faturalarinizi yonetin ve hizmetlerinizi kontrol edin. Ticket sistemi ile tum iletisiminiz kayit altindadir.
Bilgi Bankasi
Blog yazilarimiz ve rehberlerimiz ile sik karsilasilan sorunlarin cozumlerini kendiniz bulabilirsiniz. WordPress kurulumu, DNS ayarlari, e-posta yapilandirmasi gibi konularda adim adim rehberler mevcuttur.
Buyukweb teknik ekibi, hosting alaninda 17 yillik tecrubesi ile her turlu sorununuza profesyonel cozum sunar.
Etiketler:
