• 07-05-2022, 21:07:19
    #1
    merhaba arkadaşlar daha önce sorunsuz çalışan opencart alt yapılı e tıcaret sıtesı "Modifikasyonlar" yenileyince alttakı hata kodunu almaya basladı. admin panel sorunsuz gırıs yapıyor. arayuzde bu hata alıyorum.

    Fatal error: Uncaught Error: Class 'Controllerstartupseourl' not found in /home/..../public_html/system/storage/modification/system/engine/action.php:71 Stack trace: #0 /home/..../public_html/system/storage/modification/system/engine/router.php(72): Action->execute(Object(Registry)) #1 /home/..../public_html/system/storage/modification/system/engine/router.php(46): Router->execute(Object(Action)) #2 /home/..../public_html/system/framework.php(165): Router->dispatch(Object(Action), Object(Action)) #3 /home/..../public_html/system/startup.php(104): require_once('/home/.... ...') #4 /home/..../public_html/index.php(19): start('catalog') #5 {main} thrown in /home/..../public_html/system/storage/modification/system/engine/action.php on line 71
  • 07-05-2022, 21:12:12
    #2
    /catalog/controller/startup/startup.php yolu kontrol edip startup dosyası var mı yok mu bakınız
  • 07-05-2022, 21:14:25
    #3
    onuruska adlı üyeden alıntı: mesajı görüntüle
    /catalog/controller/startup/startup.php yolu kontrol edip startup dosyası var mı yok mu bakınız
    mevcut dosya
  • 07-05-2022, 21:15:52
    #4
    dosya içeriğini atar mısınız
  • 07-05-2022, 21:16:53
    #5
    <?php
    class ControllerStartupStartup extends Controller {
        public function index() {
            // Store
            if ($this->request->server['HTTPS']) {
                $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "store WHERE REPLACE(`ssl`, 'www.', '') = '" . $this->db->escape('https://' . str_replace('www.', '', $_SERVER['HTTP_HOST']) . rtrim(dirname($_SERVER['PHP_SELF']), '/.\\') . '/') . "'");
            } else {
                $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "store WHERE REPLACE(`url`, 'www.', '') = '" . $this->db->escape('http://' . str_replace('www.', '', $_SERVER['HTTP_HOST']) . rtrim(dirname($_SERVER['PHP_SELF']), '/.\\') . '/') . "'");
            }
            
            if (isset($this->request->get['store_id'])) {
                $this->config->set('config_store_id', (int)$this->request->get['store_id']);
            } else if ($query->num_rows) {
                $this->config->set('config_store_id', $query->row['store_id']);
            } else {
                $this->config->set('config_store_id', 0);
            }
            
            if (!$query->num_rows) {
                $this->config->set('config_url', HTTP_SERVER);
                $this->config->set('config_ssl', HTTPS_SERVER);
            }
            
            // Settings
            $query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "setting` WHERE store_id = '0' OR store_id = '" . (int)$this->config->get('config_store_id') . "' ORDER BY store_id ASC");
            
            foreach ($query->rows as $result) {
                if (!$result['serialized']) {
                    $this->config->set($result['key'], $result['value']);
                } else {
                    $this->config->set($result['key'], json_decode($result['value'], true));
                }
            }
    
            // Set time zone
            if ($this->config->get('config_timezone')) {
                date_default_timezone_set($this->config->get('config_timezone'));
    
                // Sync PHP and DB time zones.
                $this->db->query("SET time_zone = '" . $this->db->escape(date('P')) . "'");
            }
    
            // Theme
            $this->config->set('template_cache', $this->config->get('developer_theme'));
            
            // Url
            $this->registry->set('url', new Url($this->config->get('config_url'), $this->config->get('config_ssl')));
            
            // Language
            $code = '';
            
            $this->load->model('localisation/language');
            
            $languages = $this->model_localisation_language->getLanguages();
            
            if (isset($this->session->data['language'])) {
                $code = $this->session->data['language'];
            }
                    
            if (isset($this->request->cookie['language']) && !array_key_exists($code, $languages)) {
                $code = $this->request->cookie['language'];
            }
            
            // Language Detection
            if (!empty($this->request->server['HTTP_ACCEPT_LANGUAGE']) && !array_key_exists($code, $languages)) {
                $detect = '';
                
                $browser_languages = explode(',', $this->request->server['HTTP_ACCEPT_LANGUAGE']);
                
                // Try using local to detect the language
                foreach ($browser_languages as $browser_language) {
                    foreach ($languages as $key => $value) {
                        if ($value['status']) {
                            $locale = explode(',', $value['locale']);
                            
                            if (in_array($browser_language, $locale)) {
                                $detect = $key;
                                break 2;
                            }
                        }
                    }    
                }            
                
                if (!$detect) { 
                    // Try using language folder to detect the language
                    foreach ($browser_languages as $browser_language) {
                        if (array_key_exists(strtolower($browser_language), $languages)) {
                            $detect = strtolower($browser_language);
                            
                            break;
                        }
                    }
                }
                
                $code = $detect ? $detect : '';
            }
            
            if (!array_key_exists($code, $languages)) {
                $code = $this->config->get('config_language');
            }
            
            if (!isset($this->session->data['language']) || $this->session->data['language'] != $code) {
                $this->session->data['language'] = $code;
            }
                    
            if (!isset($this->request->cookie['language']) || $this->request->cookie['language'] != $code) {
                setcookie('language', $code, time() + 60 * 60 * 24 * 30, '/', $this->request->server['HTTP_HOST']);
            }
                    
            // Overwrite the default language object
            $language = new Language($code);
            $language->load($code);
            
            $this->registry->set('language', $language);
            
            // Set the config language_id
            $this->config->set('config_language_id', $languages[$code]['language_id']);    
    
            // Customer
            $customer = new Cart\Customer($this->registry);
            $this->registry->set('customer', $customer);
            
            // Customer Group
            if (isset($this->session->data['customer']) && isset($this->session->data['customer']['customer_group_id'])) {
                // For API calls
                $this->config->set('config_customer_group_id', $this->session->data['customer']['customer_group_id']);
            } elseif ($this->customer->isLogged()) {
                // Logged in customers
                $this->config->set('config_customer_group_id', $this->customer->getGroupId());
            } elseif (isset($this->session->data['guest']) && isset($this->session->data['guest']['customer_group_id'])) {
                $this->config->set('config_customer_group_id', $this->session->data['guest']['customer_group_id']);
            }
            
            // Tracking Code
            if (isset($this->request->get['tracking'])) {
                setcookie('tracking', $this->request->get['tracking'], time() + 3600 * 24 * 1000, '/');
            
                $this->db->query("UPDATE `" . DB_PREFIX . "marketing` SET clicks = (clicks + 1) WHERE code = '" . $this->db->escape($this->request->get['tracking']) . "'");
            }        
            
            // Currency
            $code = '';
            
            $this->load->model('localisation/currency');
            
            $currencies = $this->model_localisation_currency->getCurrencies();
            
            if (isset($this->session->data['currency'])) {
                $code = $this->session->data['currency'];
            }
            
            if (isset($this->request->cookie['currency']) && !array_key_exists($code, $currencies)) {
                $code = $this->request->cookie['currency'];
            }
            
            if (!array_key_exists($code, $currencies)) {
                $code = $this->config->get('config_currency');
            }
            
            if (!isset($this->session->data['currency']) || $this->session->data['currency'] != $code) {
                $this->session->data['currency'] = $code;
            }
            
            if (!isset($this->request->cookie['currency']) || $this->request->cookie['currency'] != $code) {
                setcookie('currency', $code, time() + 60 * 60 * 24 * 30, '/', $this->request->server['HTTP_HOST']);
            }        
            
            $this->registry->set('currency', new Cart\Currency($this->registry));
            
            // Tax
            $this->registry->set('tax', new Cart\Tax($this->registry));
            
            if (isset($this->session->data['shipping_address'])) {
                $this->tax->setShippingAddress($this->session->data['shipping_address']['country_id'], $this->session->data['shipping_address']['zone_id']);
            } elseif ($this->config->get('config_tax_default') == 'shipping') {
                $this->tax->setShippingAddress($this->config->get('config_country_id'), $this->config->get('config_zone_id'));
            }
    
            if (isset($this->session->data['payment_address'])) {
                $this->tax->setPaymentAddress($this->session->data['payment_address']['country_id'], $this->session->data['payment_address']['zone_id']);
            } elseif ($this->config->get('config_tax_default') == 'payment') {
                $this->tax->setPaymentAddress($this->config->get('config_country_id'), $this->config->get('config_zone_id'));
            }
    
            $this->tax->setStoreAddress($this->config->get('config_country_id'), $this->config->get('config_zone_id'));
            
            // Weight
            $this->registry->set('weight', new Cart\Weight($this->registry));
            
            // Length
            $this->registry->set('length', new Cart\Length($this->registry));
            
            // Cart
            $this->registry->set('cart', new Cart\Cart($this->registry));
            
            // Encryption
            $this->registry->set('encryption', new Encryption($this->config->get('config_encryption')));
        }
    }
  • 07-05-2022, 23:07:14
    #6
    Controllerstartupseourl bulunamadı diyor ,

    Klasör Yapısı
    catalog > controller > startup burada ki seo_url.php dosyası yok diyor
  • 09-05-2022, 00:29:46
    #7
    Merhabalar, destek verebilirim. İletişim pm veya 05078658862