[PrestaShopDatabaseException]

You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'LIMIT 1' at line 3<br /><br /><pre>SELECT * FROM `ps_radivendor_vendors_list` Where `id_customer` = LIMIT 1</pre>
at line 769 in file classes/db/Db.php

764.         if ($webservice_call && $errno) {
765.             $dbg = debug_backtrace();
766.             WebserviceRequest::getInstance()->setError(500, '[SQL Error] ' . $this->getMsgError() . '. From ' . (isset($dbg[3]['class']) ? $dbg[3]['class'] : '') . '->' . $dbg[3]['function'] . '() Query was : ' . $sql, 97);
767.         } elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) {
768.             if ($sql) {
769.                 throw new PrestaShopDatabaseException($this->getMsgError() . '<br /><br /><pre>' . $sql . '</pre>');
770.             }
771. 
772.             throw new PrestaShopDatabaseException($this->getMsgError());
773.         }
774.     }
الکتروموتور موتوژن 20 اسب 15 کیلووات سه فاز چدنی + (خرید و قیمت) + ارسال به سراسر کشور

[PrestaShopDatabaseException]

You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'LIMIT 1' at line 3<br /><br /><pre>SELECT * FROM `ps_radivendor_vendors_list` Where `id_customer` = LIMIT 1</pre>
at line 769 in file classes/db/Db.php

764.         if ($webservice_call && $errno) {
765.             $dbg = debug_backtrace();
766.             WebserviceRequest::getInstance()->setError(500, '[SQL Error] ' . $this->getMsgError() . '. From ' . (isset($dbg[3]['class']) ? $dbg[3]['class'] : '') . '->' . $dbg[3]['function'] . '() Query was : ' . $sql, 97);
767.         } elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) {
768.             if ($sql) {
769.                 throw new PrestaShopDatabaseException($this->getMsgError() . '<br /><br /><pre>' . $sql . '</pre>');
770.             }
771. 
772.             throw new PrestaShopDatabaseException($this->getMsgError());
773.         }
774.     }
  • DbCore->displayError - [line 385 - classes/db/Db.php]
    380.                 $this->result = $this->_query($sql);
    381.             }
    382.         }
    383. 
    384.         if (_PS_DEBUG_SQL_) {
    385.             $this->displayError($sql);
    386.         }
    387. 
    388.         return $this->result;
    389.     }
    390. 
    
  • DbCore->query - [line 663 - classes/db/Db.php]
    658. 
    659.                 return $result;
    660.             }
    661.         }
    662. 
    663.         $this->result = $this->query($sql);
    664.         if (!$this->result) {
    665.             $result = false;
    666.         } else {
    667.             $result = $this->nextRow($this->result);
    668.         }
    
  • DbCore->getRow - [line 85 - modules/radivendor/classes/RadiVendorVendorsListModel.php]
    80.     // دریافت اطلاعات وندور با شناسه کاربری //
    81.     public static function getVendorDetailByCustomerId($id_customer)
    82.     {
    83.         return Db::getInstance()->getRow('SELECT *
    84.         FROM `' . _DB_PREFIX_ . RadiVendorCore::_Tables()['RadiVendorVendorsList'] . '` 
    85.         Where `id_customer` = ' . $id_customer . ' ');
    86.     }
    87. 
    88.     // دریافت اطلاعات وندور با کد وندور //
    89.     public static function getVendorDetailByVendorCode($vendor_code)
    90.     {
    
  • RadiVendorVendorsListModel::getVendorDetailByCustomerId - [line 260 - modules/radivendor/classes/RadiVendorCore.php]
    255. 
    256.         $context = Context::getContext();
    257.         $customer = $context->customer;
    258.         $id_customer = $customer->id;
    259.         $VendorModel = new RadiVendorVendorsListModel();
    260.         $vendor = $VendorModel->getVendorDetailByCustomerId($id_customer);
    261.         if ($vendor) {
    262.             $vendor['urlProfile'] = $context->link->getModuleLink($this->name, 'vendor_dashboard');
    263.         }
    264.         $this->context->smarty->assign('UserIsVendor', $vendor);
    265. 
    
  • RadiVendorCore->hookDisplayHeader - [line 1007 - classes/Hook.php]
    1002.         return $output;
    1003.     }
    1004. 
    1005.     public static function coreCallHook($module, $method, $params)
    1006.     {
    1007.         return $module->{$method}($params);
    1008.     }
    1009. 
    1010.     public static function coreRenderWidget($module, $hook_name, $params)
    1011.     {
    1012.         $context = Context::getContext();
    
  • HookCore::coreCallHook - [line 50 - override/classes/Hook.php]
    45.                 if (isset($params['tpl']))
    46.                     $mesg .= ' tpl=' . $params['tpl'];
    47.             }
    48.             LiteSpeedCacheLog::log($mesg, LiteSpeedCacheLog::LEVEL_HOOK_DETAIL);
    49.         }
    50.         $html = parent::coreCallHook($module, $method, $params);
    51.         if (defined('_LITESPEED_CACHE_')
    52.                 && ($marker = LiteSpeedCache::injectCallHook($module, $method)) !== false) {
    53.             $html = $marker . $html . LiteSpeedCache::ESI_MARKER_END;
    54.         }
    55.         return $html;
    
  • Hook::coreCallHook - [line 431 - classes/Hook.php]
    426.         // Since is_callable() will always return true when __call() is available,
    427.         // if the module was expecting an aliased hook name to be invoked, but we send
    428.         // the canonical hook name instead, the hook will never be acknowledged by the module.
    429.         $methodName = static::getMethodName($hookName);
    430.         if (is_callable([$module, $methodName])) {
    431.             return static::coreCallHook($module, $methodName, $hookArgs);
    432.         }
    433. 
    434.         // fall back to all other names
    435.         foreach (static::getAllKnownNames($hookName) as $hook) {
    436.             $methodName = static::getMethodName($hook);
    
  • HookCore::callHookOn - [line 944 - classes/Hook.php]
    939. 
    940.                 if (0 !== $key && true === $chain) {
    941.                     $hook_args = $output;
    942.                 }
    943. 
    944.                 $display = Hook::callHookOn($moduleInstance, $registeredHookName, $hook_args);
    945. 
    946.                 if ($array_return) {
    947.                     $output[$moduleInstance->name] = $display;
    948.                 } else {
    949.                     if (true === $chain) {
    
  • HookCore::exec - [line 598 - classes/controller/FrontController.php]
    593.         if (!isset($this->context->cart)) {
    594.             $this->context->cart = new Cart();
    595.         }
    596. 
    597.         $this->context->smarty->assign([
    598.             'HOOK_HEADER' => Hook::exec('displayHeader'),
    599.         ]);
    600.     }
    601. 
    602.     public function initFooter()
    603.     {
    
  • FrontControllerCore->initContent - [line 11 - override/classes/controller/FrontController.php]
    6.     * date: 2026-09-16 05:16:23
    7.     * version: 1.0.0
    8.     */
    9.     public function initContent()
    10.     {
    11.         parent::initContent();
    12.         
    13.         $this->context->smarty->assign(array(
    14.             'HOOK_HEADER_LEFT' => Hook::exec('displayHeaderLeft'),
    15.             'HOOK_HEADER_CENTER' => Hook::exec('displayHeaderCenter'),
    16.             'HOOK_HEADER_BOTTOM' => Hook::exec('displayHeaderBottom'),
    
  • FrontController->initContent - [line 77 - classes/controller/ModuleFrontController.php]
    72.             ]);
    73.             if ($this->context->cart->getOrderTotal(false, Cart::ONLY_PRODUCTS) < $minimalPurchase) {
    74.                 Tools::redirect('index.php?controller=order&step=1');
    75.             }
    76.         }
    77.         parent::initContent();
    78.     }
    79. 
    80.     /**
    81.      * Non-static translation method for frontoffice modules.
    82.      *
    
  • ModuleFrontControllerCore->initContent - [line 306 - classes/controller/Controller.php]
    301.             if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className))) {
    302.                 $this->initHeader();
    303.             }
    304. 
    305.             if ($this->viewAccess()) {
    306.                 $this->initContent();
    307.             } else {
    308.                 $this->errors[] = $this->trans('Access denied.', [], 'Admin.Notifications.Error');
    309.             }
    310. 
    311.             if (!$this->content_only && ($this->display_footer || (isset($this->className) && $this->className))) {
    
  • ControllerCore->run - [line 525 - classes/Dispatcher.php]
    520.             if (isset($params_hook_action_dispatcher)) {
    521.                 Hook::exec('actionDispatcher', $params_hook_action_dispatcher);
    522.             }
    523. 
    524.             // Running controller
    525.             $controller->run();
    526. 
    527.             // Execute hook dispatcher after
    528.             if (isset($params_hook_action_dispatcher)) {
    529.                 Hook::exec('actionDispatcherAfter', $params_hook_action_dispatcher);
    530.             }
    
  • DispatcherCore->dispatch - [line 28 - index.php]
    23.  * @copyright Since 2007 PrestaShop SA and Contributors
    24.  * @license   https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
    25.  */
    26. 
    27. require dirname(__FILE__).'/config/config.inc.php';
    28. Dispatcher::getInstance()->dispatch();
    

[PrestaShopDatabaseException]

You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'LIMIT 1' at line 3<br /><br /><pre>SELECT * FROM `ps_radivendor_vendors_list` Where `id_customer` = LIMIT 1</pre>
at line 769 in file classes/db/Db.php

764.         if ($webservice_call && $errno) {
765.             $dbg = debug_backtrace();
766.             WebserviceRequest::getInstance()->setError(500, '[SQL Error] ' . $this->getMsgError() . '. From ' . (isset($dbg[3]['class']) ? $dbg[3]['class'] : '') . '->' . $dbg[3]['function'] . '() Query was : ' . $sql, 97);
767.         } elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) {
768.             if ($sql) {
769.                 throw new PrestaShopDatabaseException($this->getMsgError() . '<br /><br /><pre>' . $sql . '</pre>');
770.             }
771. 
772.             throw new PrestaShopDatabaseException($this->getMsgError());
773.         }
774.     }
  • DbCore->displayError - [line 385 - classes/db/Db.php]
    380.                 $this->result = $this->_query($sql);
    381.             }
    382.         }
    383. 
    384.         if (_PS_DEBUG_SQL_) {
    385.             $this->displayError($sql);
    386.         }
    387. 
    388.         return $this->result;
    389.     }
    390. 
    
  • DbCore->query - [line 663 - classes/db/Db.php]
    658. 
    659.                 return $result;
    660.             }
    661.         }
    662. 
    663.         $this->result = $this->query($sql);
    664.         if (!$this->result) {
    665.             $result = false;
    666.         } else {
    667.             $result = $this->nextRow($this->result);
    668.         }
    
  • DbCore->getRow - [line 85 - modules/radivendor/classes/RadiVendorVendorsListModel.php]
    80.     // دریافت اطلاعات وندور با شناسه کاربری //
    81.     public static function getVendorDetailByCustomerId($id_customer)
    82.     {
    83.         return Db::getInstance()->getRow('SELECT *
    84.         FROM `' . _DB_PREFIX_ . RadiVendorCore::_Tables()['RadiVendorVendorsList'] . '` 
    85.         Where `id_customer` = ' . $id_customer . ' ');
    86.     }
    87. 
    88.     // دریافت اطلاعات وندور با کد وندور //
    89.     public static function getVendorDetailByVendorCode($vendor_code)
    90.     {
    
  • RadiVendorVendorsListModel::getVendorDetailByCustomerId - [line 260 - modules/radivendor/classes/RadiVendorCore.php]
    255. 
    256.         $context = Context::getContext();
    257.         $customer = $context->customer;
    258.         $id_customer = $customer->id;
    259.         $VendorModel = new RadiVendorVendorsListModel();
    260.         $vendor = $VendorModel->getVendorDetailByCustomerId($id_customer);
    261.         if ($vendor) {
    262.             $vendor['urlProfile'] = $context->link->getModuleLink($this->name, 'vendor_dashboard');
    263.         }
    264.         $this->context->smarty->assign('UserIsVendor', $vendor);
    265. 
    
  • RadiVendorCore->hookDisplayHeader - [line 1007 - classes/Hook.php]
    1002.         return $output;
    1003.     }
    1004. 
    1005.     public static function coreCallHook($module, $method, $params)
    1006.     {
    1007.         return $module->{$method}($params);
    1008.     }
    1009. 
    1010.     public static function coreRenderWidget($module, $hook_name, $params)
    1011.     {
    1012.         $context = Context::getContext();
    
  • HookCore::coreCallHook - [line 50 - override/classes/Hook.php]
    45.                 if (isset($params['tpl']))
    46.                     $mesg .= ' tpl=' . $params['tpl'];
    47.             }
    48.             LiteSpeedCacheLog::log($mesg, LiteSpeedCacheLog::LEVEL_HOOK_DETAIL);
    49.         }
    50.         $html = parent::coreCallHook($module, $method, $params);
    51.         if (defined('_LITESPEED_CACHE_')
    52.                 && ($marker = LiteSpeedCache::injectCallHook($module, $method)) !== false) {
    53.             $html = $marker . $html . LiteSpeedCache::ESI_MARKER_END;
    54.         }
    55.         return $html;
    
  • Hook::coreCallHook - [line 431 - classes/Hook.php]
    426.         // Since is_callable() will always return true when __call() is available,
    427.         // if the module was expecting an aliased hook name to be invoked, but we send
    428.         // the canonical hook name instead, the hook will never be acknowledged by the module.
    429.         $methodName = static::getMethodName($hookName);
    430.         if (is_callable([$module, $methodName])) {
    431.             return static::coreCallHook($module, $methodName, $hookArgs);
    432.         }
    433. 
    434.         // fall back to all other names
    435.         foreach (static::getAllKnownNames($hookName) as $hook) {
    436.             $methodName = static::getMethodName($hook);
    
  • HookCore::callHookOn - [line 944 - classes/Hook.php]
    939. 
    940.                 if (0 !== $key && true === $chain) {
    941.                     $hook_args = $output;
    942.                 }
    943. 
    944.                 $display = Hook::callHookOn($moduleInstance, $registeredHookName, $hook_args);
    945. 
    946.                 if ($array_return) {
    947.                     $output[$moduleInstance->name] = $display;
    948.                 } else {
    949.                     if (true === $chain) {
    
  • HookCore::exec - [line 598 - classes/controller/FrontController.php]
    593.         if (!isset($this->context->cart)) {
    594.             $this->context->cart = new Cart();
    595.         }
    596. 
    597.         $this->context->smarty->assign([
    598.             'HOOK_HEADER' => Hook::exec('displayHeader'),
    599.         ]);
    600.     }
    601. 
    602.     public function initFooter()
    603.     {
    
  • FrontControllerCore->initContent - [line 11 - override/classes/controller/FrontController.php]
    6.     * date: 2026-09-16 05:16:23
    7.     * version: 1.0.0
    8.     */
    9.     public function initContent()
    10.     {
    11.         parent::initContent();
    12.         
    13.         $this->context->smarty->assign(array(
    14.             'HOOK_HEADER_LEFT' => Hook::exec('displayHeaderLeft'),
    15.             'HOOK_HEADER_CENTER' => Hook::exec('displayHeaderCenter'),
    16.             'HOOK_HEADER_BOTTOM' => Hook::exec('displayHeaderBottom'),
    
  • FrontController->initContent - [line 77 - classes/controller/ModuleFrontController.php]
    72.             ]);
    73.             if ($this->context->cart->getOrderTotal(false, Cart::ONLY_PRODUCTS) < $minimalPurchase) {
    74.                 Tools::redirect('index.php?controller=order&step=1');
    75.             }
    76.         }
    77.         parent::initContent();
    78.     }
    79. 
    80.     /**
    81.      * Non-static translation method for frontoffice modules.
    82.      *
    
  • ModuleFrontControllerCore->initContent - [line 306 - classes/controller/Controller.php]
    301.             if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className))) {
    302.                 $this->initHeader();
    303.             }
    304. 
    305.             if ($this->viewAccess()) {
    306.                 $this->initContent();
    307.             } else {
    308.                 $this->errors[] = $this->trans('Access denied.', [], 'Admin.Notifications.Error');
    309.             }
    310. 
    311.             if (!$this->content_only && ($this->display_footer || (isset($this->className) && $this->className))) {
    
  • ControllerCore->run - [line 525 - classes/Dispatcher.php]
    520.             if (isset($params_hook_action_dispatcher)) {
    521.                 Hook::exec('actionDispatcher', $params_hook_action_dispatcher);
    522.             }
    523. 
    524.             // Running controller
    525.             $controller->run();
    526. 
    527.             // Execute hook dispatcher after
    528.             if (isset($params_hook_action_dispatcher)) {
    529.                 Hook::exec('actionDispatcherAfter', $params_hook_action_dispatcher);
    530.             }
    
  • DispatcherCore->dispatch - [line 28 - index.php]
    23.  * @copyright Since 2007 PrestaShop SA and Contributors
    24.  * @license   https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
    25.  */
    26. 
    27. require dirname(__FILE__).'/config/config.inc.php';
    28. Dispatcher::getInstance()->dispatch();
    

[PrestaShopDatabaseException]

You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'LIMIT 1' at line 3<br /><br /><pre>SELECT * FROM `ps_radivendor_vendors_list` Where `id_customer` = LIMIT 1</pre>
at line 769 in file classes/db/Db.php

764.         if ($webservice_call && $errno) {
765.             $dbg = debug_backtrace();
766.             WebserviceRequest::getInstance()->setError(500, '[SQL Error] ' . $this->getMsgError() . '. From ' . (isset($dbg[3]['class']) ? $dbg[3]['class'] : '') . '->' . $dbg[3]['function'] . '() Query was : ' . $sql, 97);
767.         } elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) {
768.             if ($sql) {
769.                 throw new PrestaShopDatabaseException($this->getMsgError() . '<br /><br /><pre>' . $sql . '</pre>');
770.             }
771. 
772.             throw new PrestaShopDatabaseException($this->getMsgError());
773.         }
774.     }
  • DbCore->displayError - [line 385 - classes/db/Db.php]
    380.                 $this->result = $this->_query($sql);
    381.             }
    382.         }
    383. 
    384.         if (_PS_DEBUG_SQL_) {
    385.             $this->displayError($sql);
    386.         }
    387. 
    388.         return $this->result;
    389.     }
    390. 
    
  • DbCore->query - [line 663 - classes/db/Db.php]
    658. 
    659.                 return $result;
    660.             }
    661.         }
    662. 
    663.         $this->result = $this->query($sql);
    664.         if (!$this->result) {
    665.             $result = false;
    666.         } else {
    667.             $result = $this->nextRow($this->result);
    668.         }
    
  • DbCore->getRow - [line 85 - modules/radivendor/classes/RadiVendorVendorsListModel.php]
    80.     // دریافت اطلاعات وندور با شناسه کاربری //
    81.     public static function getVendorDetailByCustomerId($id_customer)
    82.     {
    83.         return Db::getInstance()->getRow('SELECT *
    84.         FROM `' . _DB_PREFIX_ . RadiVendorCore::_Tables()['RadiVendorVendorsList'] . '` 
    85.         Where `id_customer` = ' . $id_customer . ' ');
    86.     }
    87. 
    88.     // دریافت اطلاعات وندور با کد وندور //
    89.     public static function getVendorDetailByVendorCode($vendor_code)
    90.     {
    
  • RadiVendorVendorsListModel::getVendorDetailByCustomerId - [line 260 - modules/radivendor/classes/RadiVendorCore.php]
    255. 
    256.         $context = Context::getContext();
    257.         $customer = $context->customer;
    258.         $id_customer = $customer->id;
    259.         $VendorModel = new RadiVendorVendorsListModel();
    260.         $vendor = $VendorModel->getVendorDetailByCustomerId($id_customer);
    261.         if ($vendor) {
    262.             $vendor['urlProfile'] = $context->link->getModuleLink($this->name, 'vendor_dashboard');
    263.         }
    264.         $this->context->smarty->assign('UserIsVendor', $vendor);
    265. 
    
  • RadiVendorCore->hookDisplayHeader - [line 1007 - classes/Hook.php]
    1002.         return $output;
    1003.     }
    1004. 
    1005.     public static function coreCallHook($module, $method, $params)
    1006.     {
    1007.         return $module->{$method}($params);
    1008.     }
    1009. 
    1010.     public static function coreRenderWidget($module, $hook_name, $params)
    1011.     {
    1012.         $context = Context::getContext();
    
  • HookCore::coreCallHook - [line 50 - override/classes/Hook.php]
    45.                 if (isset($params['tpl']))
    46.                     $mesg .= ' tpl=' . $params['tpl'];
    47.             }
    48.             LiteSpeedCacheLog::log($mesg, LiteSpeedCacheLog::LEVEL_HOOK_DETAIL);
    49.         }
    50.         $html = parent::coreCallHook($module, $method, $params);
    51.         if (defined('_LITESPEED_CACHE_')
    52.                 && ($marker = LiteSpeedCache::injectCallHook($module, $method)) !== false) {
    53.             $html = $marker . $html . LiteSpeedCache::ESI_MARKER_END;
    54.         }
    55.         return $html;
    
  • Hook::coreCallHook - [line 431 - classes/Hook.php]
    426.         // Since is_callable() will always return true when __call() is available,
    427.         // if the module was expecting an aliased hook name to be invoked, but we send
    428.         // the canonical hook name instead, the hook will never be acknowledged by the module.
    429.         $methodName = static::getMethodName($hookName);
    430.         if (is_callable([$module, $methodName])) {
    431.             return static::coreCallHook($module, $methodName, $hookArgs);
    432.         }
    433. 
    434.         // fall back to all other names
    435.         foreach (static::getAllKnownNames($hookName) as $hook) {
    436.             $methodName = static::getMethodName($hook);
    
  • HookCore::callHookOn - [line 944 - classes/Hook.php]
    939. 
    940.                 if (0 !== $key && true === $chain) {
    941.                     $hook_args = $output;
    942.                 }
    943. 
    944.                 $display = Hook::callHookOn($moduleInstance, $registeredHookName, $hook_args);
    945. 
    946.                 if ($array_return) {
    947.                     $output[$moduleInstance->name] = $display;
    948.                 } else {
    949.                     if (true === $chain) {
    
  • HookCore::exec - [line 598 - classes/controller/FrontController.php]
    593.         if (!isset($this->context->cart)) {
    594.             $this->context->cart = new Cart();
    595.         }
    596. 
    597.         $this->context->smarty->assign([
    598.             'HOOK_HEADER' => Hook::exec('displayHeader'),
    599.         ]);
    600.     }
    601. 
    602.     public function initFooter()
    603.     {
    
  • FrontControllerCore->initContent - [line 11 - override/classes/controller/FrontController.php]
    6.     * date: 2026-09-16 05:16:23
    7.     * version: 1.0.0
    8.     */
    9.     public function initContent()
    10.     {
    11.         parent::initContent();
    12.         
    13.         $this->context->smarty->assign(array(
    14.             'HOOK_HEADER_LEFT' => Hook::exec('displayHeaderLeft'),
    15.             'HOOK_HEADER_CENTER' => Hook::exec('displayHeaderCenter'),
    16.             'HOOK_HEADER_BOTTOM' => Hook::exec('displayHeaderBottom'),
    
  • FrontController->initContent - [line 77 - classes/controller/ModuleFrontController.php]
    72.             ]);
    73.             if ($this->context->cart->getOrderTotal(false, Cart::ONLY_PRODUCTS) < $minimalPurchase) {
    74.                 Tools::redirect('index.php?controller=order&step=1');
    75.             }
    76.         }
    77.         parent::initContent();
    78.     }
    79. 
    80.     /**
    81.      * Non-static translation method for frontoffice modules.
    82.      *
    
  • ModuleFrontControllerCore->initContent - [line 306 - classes/controller/Controller.php]
    301.             if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className))) {
    302.                 $this->initHeader();
    303.             }
    304. 
    305.             if ($this->viewAccess()) {
    306.                 $this->initContent();
    307.             } else {
    308.                 $this->errors[] = $this->trans('Access denied.', [], 'Admin.Notifications.Error');
    309.             }
    310. 
    311.             if (!$this->content_only && ($this->display_footer || (isset($this->className) && $this->className))) {
    
  • ControllerCore->run - [line 525 - classes/Dispatcher.php]
    520.             if (isset($params_hook_action_dispatcher)) {
    521.                 Hook::exec('actionDispatcher', $params_hook_action_dispatcher);
    522.             }
    523. 
    524.             // Running controller
    525.             $controller->run();
    526. 
    527.             // Execute hook dispatcher after
    528.             if (isset($params_hook_action_dispatcher)) {
    529.                 Hook::exec('actionDispatcherAfter', $params_hook_action_dispatcher);
    530.             }
    
  • DispatcherCore->dispatch - [line 28 - index.php]
    23.  * @copyright Since 2007 PrestaShop SA and Contributors
    24.  * @license   https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
    25.  */
    26. 
    27. require dirname(__FILE__).'/config/config.inc.php';
    28. Dispatcher::getInstance()->dispatch();
    

الکتروموتور موتوژن 20 اسب 15 کیلووات سه فاز چدنی

کد محصول:
16771

نوع عملکرد: موتور سه فاز

توان موتور: 20 اسب بخار (معادل 15 کیلووات)

ولتاژ: 380 ولت-AC

درجه ایمنی: IP54

جنس سیم پیچ: مسی

کاربری پیشنهادی: مناسب برای استفاده مداوم و طولانی‌مدت

مدت گارانتی: 2 سال ضمانت

ادامه مطلبShow less
digipay_badge
گارانتی 24 ماه گارانتی موتوژن
زمان تقریبی ارسال 2 الی 3 روز کاری
نوع اتصال
  • پایه دار
  • فلنچ دار
دور خروجی الکتروموتور
  • 3000
  • 1400 تا 1500
  • 900 تا 1000
ناموجود
ارسال به موقع
پرداخت درب محل
تضمین اصالت کالا
7 روز ضمانت بازگشت کالا
بهترین قیمت
جزئیات محصول

مشخصات

گارانتی
24 ماه گارانتی موتوژن
زمان تقریبی ارسال
2 الی 3 روز کاری
توان الکتروموتور
20HP - 15KW
منبع الکتریکی الکتروموتور
سه فاز
وزن الکتروموتور
96KG
جنس پوسته
چدن Cast Iron
سایز فریم الکتروموتور
160
شرایط کارکرد Duty
S1
فرکانس (HZ)
50 HZ
درجه حفاظتی IP
IP 54

مرجع خاص

بارکد UPC
01111
نظرات
بدون نظر

Leave a review

این کالا را با استفاده از کلمات کوتاه و ساده توضیح دهید.

سایر ویژگی ها

گارانتی
24 ماه گارانتی موتوژن
زمان تقریبی ارسال
2 الی 3 روز کاری

سایر ویژگی‌ها

توان الکتروموتور
20HP - 15KW
منبع الکتریکی الکتروموتور
سه فاز
وزن الکتروموتور
96KG
جنس پوسته
چدن Cast Iron
سایز فریم الکتروموتور
160
شرایط کارکرد Duty
S1
فرکانس (HZ)
50 HZ
درجه حفاظتی IP
IP 54

[PrestaShopDatabaseException]

You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'LIMIT 1' at line 3<br /><br /><pre>SELECT * FROM `ps_radivendor_vendors_list` Where `id_customer` = LIMIT 1</pre>
at line 769 in file classes/db/Db.php

764.         if ($webservice_call && $errno) {
765.             $dbg = debug_backtrace();
766.             WebserviceRequest::getInstance()->setError(500, '[SQL Error] ' . $this->getMsgError() . '. From ' . (isset($dbg[3]['class']) ? $dbg[3]['class'] : '') . '->' . $dbg[3]['function'] . '() Query was : ' . $sql, 97);
767.         } elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) {
768.             if ($sql) {
769.                 throw new PrestaShopDatabaseException($this->getMsgError() . '<br /><br /><pre>' . $sql . '</pre>');
770.             }
771. 
772.             throw new PrestaShopDatabaseException($this->getMsgError());
773.         }
774.     }

فهرست

02128421143

جستجو

[PrestaShopDatabaseException]

You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'LIMIT 1' at line 3<br /><br /><pre>SELECT * FROM `ps_radivendor_vendors_list` Where `id_customer` = LIMIT 1</pre>
at line 769 in file classes/db/Db.php

764.         if ($webservice_call && $errno) {
765.             $dbg = debug_backtrace();
766.             WebserviceRequest::getInstance()->setError(500, '[SQL Error] ' . $this->getMsgError() . '. From ' . (isset($dbg[3]['class']) ? $dbg[3]['class'] : '') . '->' . $dbg[3]['function'] . '() Query was : ' . $sql, 97);
767.         } elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) {
768.             if ($sql) {
769.                 throw new PrestaShopDatabaseException($this->getMsgError() . '<br /><br /><pre>' . $sql . '</pre>');
770.             }
771. 
772.             throw new PrestaShopDatabaseException($this->getMsgError());
773.         }
774.     }