tr-opencart

     
avatar Şuanki Zaman: 04-19-2024, 09:26 PMHoşgeldin Misafir !
  Şifremi Hatırlat   kayıt ol
opencart temaları

Log dosyası çok büyüyor.

Konuyu görüntüleyenler: 1 Misafir
 
Değerlendir:
  • 0 Oy - 0 Yüzde
  • 1
  • 2
  • 3
  • 4
  • 5
%
Cevapla  Gönder 
v  v
Yazar  binocan - Görüntüleme - Okunma  3618 - Yorum  5

binocanv
Acemi Üye
**
Üye user avatar
Çevrimdışı

Mesajlar: 7
Konular: 2
Katılma Tarihi: Oct 2015
Rep Puanı: 0
Teşekkürler: 3
0 Mesajına, 0 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 06-28-2016 10:29 AM

İyi çalışamalar üstadlarım. Opencart 1.5.6.4 kullanıyorum. Sistem-Hata günlükleri kısmına baktığımda

Kod:
PHP Notice:  Undefined variable: manufacturer_filter in /home/syldiese/public_html/vqmod/vqcache/vq2-catalog_view_theme_default_template_product_category.tpl on line 56

Hata günlükleri içerisinde bu hatadan binlercesinin alt alta listelendiğini gördüm. Dosyayı ftp üzerinden buldum. 56. satırda aşağıdakiler yazıyor.

Kod:
<?php if ($filter['value'] == $manufacturer_filter) { ?>

Buda tpl uzantılı dosyamın içeriği

Kod:
<?php echo $header; ?><?php echo $column_left; ?><?php echo $column_right; ?>
<div id="content"><?php echo $content_top; ?>
  <div class="breadcrumb">
    <?php foreach ($breadcrumbs as $breadcrumb) { ?>
    <?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a>
    <?php } ?>
  </div>

            
                <span xmlns:v="http://rdf.data-vocabulary.org/#">
                <?php foreach ($breadcrumbs as $breadcrumb) { ?>
                <span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" href="<?php echo $breadcrumb['href']; ?>" alt="<?php echo $breadcrumb['text']; ?>"></a></span>
                <?php } ?>                
                </span>            
            
            
  <h1><?php echo $heading_title; ?></h1>
  <?php if ($thumb || $description) { ?>
  <div class="category-info">
    <?php if ($thumb) { ?>
    <div class="image"><img src="<?php echo $thumb; ?>" alt="<?php echo $heading_title; ?>" /></div>
    <?php } ?>
    <?php if ($description) { ?>
    <?php echo $description; ?>
    <?php } ?>
  </div>
  <?php } ?>
  <?php if ($categories) { ?>
  <h2><?php echo $text_refine; ?></h2>
  <div class="category-list">
    <?php if (count($categories) <= 5) { ?>
    <ul>
      <?php foreach ($categories as $category) { ?>
      <li><a href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?></a></li>
      <?php } ?>
    </ul>
    <?php } else { ?>
    <?php for ($i = 0; $i < count($categories);) { ?>
    <ul>
      <?php $j = $i + ceil(count($categories) / 4); ?>
      <?php for (; $i < $j; $i++) { ?>
      <?php if (isset($categories[$i])) { ?>
      <li><a href="<?php echo $categories[$i]['href']; ?>"><?php echo $categories[$i]['name']; ?></a></li>
      <?php } ?>
      <?php } ?>
    </ul>
    <?php } ?>
    <?php } ?>
  </div>
  <?php } ?>
  <?php if ($products) { ?>
  <div class="product-filter">
<div class="sort">
      <select onchange="location = this.value;">
        <?php foreach ($manufacturer_filters as $filter) { ?>
        <?php if ($filter['value'] == $manufacturer_filter) { ?>
        <option value="<?php echo $filter['href']; ?>" selected="selected"><?php echo $filter['text']; ?></option>
        <?php } else { ?>
        <option value="<?php echo $filter['href']; ?>"><?php echo $filter['text']; ?></option>
        <?php } ?>
        <?php } ?>
      </select>
    </div>
    <div class="display"><b><?php echo $text_display; ?></b> <?php echo $text_list; ?> <b>/</b> <a onclick="display('grid');"><?php echo $text_grid; ?></a></div>
    <div class="limit"><b><?php echo $text_limit; ?></b>
      <select onchange="location = this.value;">
        <?php foreach ($limits as $limits) { ?>
        <?php if ($limits['value'] == $limit) { ?>
        <option value="<?php echo $limits['href']; ?>" selected="selected"><?php echo $limits['text']; ?></option>
        <?php } else { ?>
        <option value="<?php echo $limits['href']; ?>"><?php echo $limits['text']; ?></option>
        <?php } ?>
        <?php } ?>
      </select>
    </div>
    <div class="sort"><b><?php echo $text_sort; ?></b>
      <select onchange="location = this.value;">
        <?php foreach ($sorts as $sorts) { ?>
        <?php if ($sorts['value'] == $sort . '-' . $order) { ?>
        <option value="<?php echo $sorts['href']; ?>" selected="selected"><?php echo $sorts['text']; ?></option>
        <?php } else { ?>
        <option value="<?php echo $sorts['href']; ?>"><?php echo $sorts['text']; ?></option>
        <?php } ?>
        <?php } ?>
      </select>
    </div>
  </div>
  <div class="product-compare"><a href="<?php echo $compare; ?>" id="compare-total"><?php echo $text_compare; ?></a></div>
  <div class="product-list">
    <?php foreach ($products as $product) { ?>
    <div>
      <?php if ($product['thumb']) { ?>
      <div class="image"><a href="<?php echo $product['href']; ?>"><img src="<?php echo $product['thumb']; ?>" title="<?php echo $product['name']; ?>" alt="<?php echo $product['name']; ?>" /></a></div>
      <?php } ?>
      <div class="name"><a href="<?php echo $product['href']; ?>"><?php echo $product['name']; ?></a></div>
<div class="extra" style="display: inline-block; color: #444;">

      <?php if ($this->config->get('config_display_sku') && $product['sku']) { ?>

      <span style="color:#38b0e3"><?php echo $pds_sku; ?></span> <?php echo $product['sku']; ?> <br />

      <?php } ?>

      <?php if ($this->config->get('config_display_model') && $product['model']) { ?>

      <span style="color:#38b0e3"><?php echo $pds_model; ?></span> <?php echo $product['model']; ?> <br />

      <?php } ?>

      <?php if ($this->config->get('config_display_brand') && $product['brand']) { ?>

      <span style="color:#38b0e3"><?php echo $pds_brand; ?></span> <a href="<?php echo $product['brand_url']; ?>"><?php echo $product['brand']; ?></a> <br />

      <?php } ?>

      <?php if ($this->config->get('config_display_location') && $product['location']) { ?>

      <span style="color:#38b0e3"><?php echo $pds_location; ?></span> <?php echo $product['location']; ?> <br />

      <?php } ?>

      <?php if ($product['upc'] && $this->config->get('config_display_upc')) { ?>

      <span style="color:#38b0e3"><?php echo $pds_upc; ?></span> <?php echo $product['upc']; ?> <br />

      <?php } ?>

      <?php if ($this->config->get('config_display_listock') && $product['stock']) { ?>

      <span style="color:#38b0e3"><?php echo $pds_stock; ?></span> <?php echo $product['stock']; ?> <br />

      <?php } ?>

      </div>
      <div class="description"><?php echo $product['description']; ?></div>
      <?php if ($product['price']) { ?>
      <div class="price">
        <?php if (!$product['special']) { ?>
        <?php echo $product['price']; ?>
        <?php } else { ?>
        <span class="price-old"><?php echo $product['price']; ?></span> <span class="price-new"><?php echo $product['special']; ?></span>
        <?php } ?>
        <?php if ($product['tax']) { ?>
        <br />
        <span class="price-tax"><?php echo $text_tax; ?> <?php echo $product['tax']; ?></span>
        <?php } ?>
      </div>
      <?php } ?>
      <?php if ($product['rating']) { ?>
      <div class="rating"><img src="catalog/view/theme/default/image/stars-<?php echo $product['rating']; ?>.png" alt="<?php echo $product['reviews']; ?>" /></div>
      <?php } ?>
      <div class="cart">
        <input type="button" value="<?php echo $button_cart; ?>" onclick="addToCart('<?php echo $product['product_id']; ?>');" class="button" />
      </div>
      <div class="wishlist"><a onclick="addToWishList('<?php echo $product['product_id']; ?>');"><?php echo $button_wishlist; ?></a></div>
      <div class="compare"><a onclick="addToCompare('<?php echo $product['product_id']; ?>');"><?php echo $button_compare; ?></a></div>
    </div>
    <?php } ?>
  </div>
  <div class="pagination"><?php echo $pagination; ?></div>
  <?php } ?>
  <?php if (!$categories && !$products) { ?>
  <div class="content"><?php echo $text_empty; ?></div>
  <div class="buttons">
    <div class="right"><a href="<?php echo $continue; ?>" class="button"><?php echo $button_continue; ?></a></div>
  </div>
  <?php } ?>
  <?php echo $content_bottom; ?></div>
<script type="text/javascript"><!--
function display(view) {
    if (view == 'list') {
        $('.product-grid').attr('class', 'product-list');
        
        $('.product-list > div').each(function(index, element) {
            html  = '<div class="right">';
            html += '  <div class="cart">' + $(element).find('.cart').html() + '</div>';
            html += '  <div class="wishlist">' + $(element).find('.wishlist').html() + '</div>';
            html += '  <div class="compare">' + $(element).find('.compare').html() + '</div>';
            html += '</div>';            
            
            html += '<div class="left">';
            
            var image = $(element).find('.image').html();
            
            if (image != null) {
                html += '<div class="image">' + image + '</div>';
            }
            
            var price = $(element).find('.price').html();
            
            if (price != null) {
                html += '<div class="price">' + price  + '</div>';
            }
                    
            html += '  <div class="name">' + $(element).find('.name').html() + '</div>';
html += '<div class="extra" style="display: inline-block; color: #444;">' + $(element).find('.extra').html() + '</div>';
            html += '  <div class="description">' + $(element).find('.description').html() + '</div>';
            
            var rating = $(element).find('.rating').html();
            
            if (rating != null) {
                html += '<div class="rating">' + rating + '</div>';
            }
                
            html += '</div>';
                        
            $(element).html(html);
        });        
        
        $('.display').html('<b><?php echo $text_display; ?></b> <?php echo $text_list; ?> <b>/</b> <a onclick="display(\'grid\');"><?php echo $text_grid; ?></a>');
        
        $.totalStorage('display', 'list');
    } else {
        $('.product-list').attr('class', 'product-grid');
        
        $('.product-grid > div').each(function(index, element) {
            html = '';
            
            var image = $(element).find('.image').html();
            
            if (image != null) {
                html += '<div class="image">' + image + '</div>';
            }
            
            html += '<div class="name">' + $(element).find('.name').html() + '</div>';
html += '<div class="extra" style="display: inline-block; color: #444;">' + $(element).find('.extra').html() + '</div>';
            html += '<div class="description">' + $(element).find('.description').html() + '</div>';
            
            var price = $(element).find('.price').html();
            
            if (price != null) {
                html += '<div class="price">' + price  + '</div>';
            }
            
            var rating = $(element).find('.rating').html();
            
            if (rating != null) {
                html += '<div class="rating">' + rating + '</div>';
            }
                        
            html += '<div class="cart">' + $(element).find('.cart').html() + '</div>';
            html += '<div class="wishlist">' + $(element).find('.wishlist').html() + '</div>';
            html += '<div class="compare">' + $(element).find('.compare').html() + '</div>';
            
            $(element).html(html);
        });    
                    
        $('.display').html('<b><?php echo $text_display; ?></b> <a onclick="display(\'list\');"><?php echo $text_list; ?></a> <b>/</b> <?php echo $text_grid; ?>');
        
        $.totalStorage('display', 'grid');
    }
}

view = $.totalStorage('display');

if (view) {
    display(view);
} else {
    display('list');
}
//--></script>
<?php echo $footer; ?>


syldiesel.com sitemin adresi. Default tema üzerinde çalışıyorum. Şimdiden yardımlarınız için teşekkür ederim.
Alıntı Yaparak Cevapla
Paylaş!
adslv
Çırak
****
Üye user avatar
Çevrimdışı

Mesajlar: 278
Konular: 32
Katılma Tarihi: Dec 2011
Rep Puanı: 9
Teşekkürler: 42
99 Mesajına, 186 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 06-28-2016 04:41 PM
ftpden vqmod logs klasörünün içerisine bakın. hata dosyası olması lazım oradaki hataya göre çözebilirsin. kullandığın xmlin bulamadığı kod vardır.
Alıntı Yaparak Cevapla
Paylaş!
 Teşekkür Edenler: binocan
binocanv
Acemi Üye
**
Üye user avatar
Çevrimdışı

Mesajlar: 7
Konular: 2
Katılma Tarihi: Oct 2015
Rep Puanı: 0
Teşekkürler: 3
0 Mesajına, 0 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 06-28-2016 04:57 PM
(06-28-2016 04:41 PM)adsl Yazılan:  ftpden vqmod logs klasörünün içerisine bakın. hata dosyası olması lazım oradaki hataya göre çözebilirsin. kullandığın xmlin bulamadığı kod vardır.

üstadım zaten kullandığım vqmod klasöründeki dosyanın içeriğini buraya yazdım. Bulamadığı kodun ne olduğunu bilmiyorum.
Alıntı Yaparak Cevapla
Paylaş!
adslv
Çırak
****
Üye user avatar
Çevrimdışı

Mesajlar: 278
Konular: 32
Katılma Tarihi: Dec 2011
Rep Puanı: 9
Teşekkürler: 42
99 Mesajına, 186 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 06-28-2016 05:13 PM
/vqmod/vqcache içerisindeki dosyayı paylaşmışsın benim dediğim

/vqmod/logs içerisinde txt dosyası varmı ?

not: osman abide sağolsun 10 dk sınırı getirmiş şunu 1-2 dk yapsak Smile

edit

bide 5 msjla sınırlanmış. uğramayalı baya değişiklikler olmuş Smile
Alıntı Yaparak Cevapla
Paylaş!
 Teşekkür Edenler: binocan
binocanv
Acemi Üye
**
Üye user avatar
Çevrimdışı

Mesajlar: 7
Konular: 2
Katılma Tarihi: Oct 2015
Rep Puanı: 0
Teşekkürler: 3
0 Mesajına, 0 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 06-28-2016 05:46 PM
(06-28-2016 05:13 PM)adsl Yazılan:  /vqmod/vqcache içerisindeki dosyayı paylaşmışsın benim dediğim

/vqmod/logs içerisinde txt dosyası varmı ?

not: osman abide sağolsun 10 dk sınırı getirmiş şunu 1-2 dk yapsak Smile

edit

bide 5 msjla sınırlanmış. uğramayalı baya değişiklikler olmuş Smile
Kod:
---------- Date: 2016-06-28 06:56:55 ~ IP : 66.249.78.12 ----------
REQUEST URI : /fren-balata-grubu/fren-disk-balatasi-899888259.html?limit=25
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/category.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 06:56:59 ~ IP : 66.249.66.150 ----------
REQUEST URI : /Mercedes-Dorse-Kontrol-Ayar-Ventili-Tamir-Takimi-0005866743-1443012-4714010092-9524.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 09:58:27 ~ IP : 88.249.52.2 ----------
REQUEST URI : /Man-Panjur-Amortisoru-10194-SYL10743-81970060002.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 09:58:58 ~ IP : 88.249.52.2 ----------
REQUEST URI : /Man-Panjur-Amortisoru-10194-SYL10743-81970060002.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 10:40:03 ~ IP : 66.249.78.12 ----------
REQUEST URI : /Mercedes-Axor-Debriyaj-ust-Merkez-Tamir-Takimi-0002901212-RK22757-2901212-8747.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 10:41:16 ~ IP : 66.249.78.12 ----------
REQUEST URI : /Mercedes-Fren-Pedal-Ventili-Tamir-Takimi-0004306360-05050703-4613190012-A0004308206-1815.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 10:41:31 ~ IP : 66.249.78.12 ----------
REQUEST URI : /vites-kumanda-grubu/sanziman-takviye-govdesi-aleminyum-bobinli-98163980.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/category.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 11:07:43 ~ IP : 66.249.78.12 ----------
REQUEST URI : /Dodge-saft-Askisi-6574110012-20638-5007.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 11:07:52 ~ IP : 66.249.78.12 ----------
REQUEST URI : /Mercedes-Silindir-Kapak-Conta-9260161220-490.150E-A9260161120-7045.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 11:08:21 ~ IP : 88.249.52.2 ----------
REQUEST URI : /amortisor-grubu-kabin-havali
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/category.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 11:09:16 ~ IP : 66.249.78.12 ----------
REQUEST URI : /Mercedes-Axor-Enjektor-0020104951-2204.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 11:09:24 ~ IP : 88.249.52.2 ----------
REQUEST URI : /amortisor-grubu-kabin-havali
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/category.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------

vqmod logu bu hocam
Alıntı Yaparak Cevapla
Paylaş!
binocanv
Acemi Üye
**
Üye user avatar
Çevrimdışı

Mesajlar: 7
Konular: 2
Katılma Tarihi: Oct 2015
Rep Puanı: 0
Teşekkürler: 3
0 Mesajına, 0 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 06-29-2016 09:55 AM
Üstadlarım yeni konu açmamak için bu konunun altına yazmayı daha uygun gördüm.

PHP Notice: Undefined index: manufacturer_id in /home/syldiese/public_html/vqmod/vqcache/vq2-catalog_controller_product_product.php on line 297

PHP Notice: Undefined variable: manufacturer_filter in /home/syldiese/public_html/vqmod/vqcache/vq2-catalog_view_theme_default_template_product_category.tpl on line 56

PHP Notice: Undefined variable: result in /home/syldiese/public_html/vqmod/vqcache/vq2-catalog_controller_product_category.php on line 400

PHP Notice: Undefined variable: result in /home/syldiese/public_html/vqmod/vqcache/vq2-catalog_controller_product_category.php on line 401

Bu 4 adet hata sistem hata günlüğü kayıt dosyasının içeriğini büyütüyor. Burada adı geçen dosyalar anladığım kadarıyla;

Opencart scriptinin kurulu olduğu ana dizinde

catalog/controller/product/product.php dosyasının içerisinde ki 297. satır
catalog/view/theme/default/template/product/category.tpl dosyasının içerisinde ki 56. satır
catalog/controller/product/category.php dosyasının içerisinde ki 400 ve 401 numaralı satırlarda

tanımlanamayan değişkenler kullanılmış.
Mesajımın ekinde ilgili dosyaları bulabilirsiniz.

vqmod hata günlük dosyasının içeriğide aşağıdaki gibi.

Kod:
---------- Date: 2016-06-28 06:56:55 ~ IP : 66.249.78.12 ----------
REQUEST URI : /fren-balata-grubu/fren-disk-balatasi-899888259.html?limit=25
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/category.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 06:56:59 ~ IP : 66.249.66.150 ----------
REQUEST URI : /Mercedes-Dorse-Kontrol-Ayar-Ventili-Tamir-Takimi-0005866743-1443012-4714010092-9524.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 09:58:27 ~ IP : 88.249.52.2 ----------
REQUEST URI : /Man-Panjur-Amortisoru-10194-SYL10743-81970060002.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 09:58:58 ~ IP : 88.249.52.2 ----------
REQUEST URI : /Man-Panjur-Amortisoru-10194-SYL10743-81970060002.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 10:40:03 ~ IP : 66.249.78.12 ----------
REQUEST URI : /Mercedes-Axor-Debriyaj-ust-Merkez-Tamir-Takimi-0002901212-RK22757-2901212-8747.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 10:41:16 ~ IP : 66.249.78.12 ----------
REQUEST URI : /Mercedes-Fren-Pedal-Ventili-Tamir-Takimi-0004306360-05050703-4613190012-A0004308206-1815.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 10:41:31 ~ IP : 66.249.78.12 ----------
REQUEST URI : /vites-kumanda-grubu/sanziman-takviye-govdesi-aleminyum-bobinli-98163980.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/category.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 11:07:43 ~ IP : 66.249.78.12 ----------
REQUEST URI : /Dodge-saft-Askisi-6574110012-20638-5007.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 11:07:52 ~ IP : 66.249.78.12 ----------
REQUEST URI : /Mercedes-Silindir-Kapak-Conta-9260161220-490.150E-A9260161120-7045.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 11:08:21 ~ IP : 88.249.52.2 ----------
REQUEST URI : /amortisor-grubu-kabin-havali
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/category.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 11:09:16 ~ IP : 66.249.78.12 ----------
REQUEST URI : /Mercedes-Axor-Enjektor-0020104951-2204.html
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/product.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------


---------- Date: 2016-06-28 11:09:24 ~ IP : 88.249.52.2 ----------
REQUEST URI : /amortisor-grubu-kabin-havali
MOD DETAILS:
   modFile   : /home/syldiese/public_html/vqmod/xml/uksb_all_product_fields.xml
   id        : UKSB All Product Fields
   version   : 1
   vqmver    : 2.5.1
   author    : http://www.opencart-extensions.co.uk/

File Name    : catalog/controller/product/category.php(0)
VQModObject::applyMod - SEARCH NOT FOUND (ABORTING MOD): $data['text_model'] = $this->language->get('text_model');

----------------------------------------------------------------------

Yardımlarını esirgemeyen arkadaşlarıma 99$ değerinde zamanında satın almış olduğum ve opencartın 1.5.6.4 sürümü ile tam uyumlu Full Seo yazılımını hediye edeceğim. Her çözülen sorunuma elimdeki eklentileri göndereceğim. Sonuçta burada insanlar emek etmiş. Belki tam karşılığı değildir. Ancak elimden bu kadarı geliyor. Saygılarımla.


Ekli Dosya(lar)
.rar Desktop.rar Eklentiyi indir...
Boyut: 10.49 KB İndirme: 6
Telif Hakkı için Rapor Edin...
Alıntı Yaparak Cevapla
Paylaş!

« Önceki | Sonraki »
Cevapla  Gönder 

Log dosyası çok büyüyor. Konusunun Linki Direk Link
Log dosyası çok büyüyor. Konusunun HTML Kodu HTML Link
Log dosyası çok büyüyor. Konusu BBCode Linki BBCode Link
Log dosyası çok büyüyor. Konusunu Paylaş Sosyal Paylaş

Log dosyası çok büyüyor. indir, Log dosyası çok büyüyor. Videosu, Log dosyası çok büyüyor. online izle, Log dosyası çok büyüyor. Bedava indir, Log dosyası çok büyüyor. Yükle, Log dosyası çok büyüyor. Hakkında, Log dosyası çok büyüyor. nedir, Log dosyası çok büyüyor. Free indir, Log dosyası çok büyüyor. oyunu, Log dosyası çok büyüyor. download


Forum Atla: