From e77df40e9a8ddd46447481bfe67c4ff7258efd3d Mon Sep 17 00:00:00 2001 From: Shreesh Arora Date: Fri, 27 Sep 2024 11:35:51 +0530 Subject: [PATCH] Updated: QloApps installation URL length 64 => 256 --- classes/shop/ShopUrl.php | 4 ++-- install/data/db_structure.sql | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/classes/shop/ShopUrl.php b/classes/shop/ShopUrl.php index fcb6d5b06d..d767115d53 100644 --- a/classes/shop/ShopUrl.php +++ b/classes/shop/ShopUrl.php @@ -49,8 +49,8 @@ class ShopUrlCore extends ObjectModel 'domain' => array('type' => self::TYPE_STRING, 'required' => true, 'size' => 255, 'validate' => 'isCleanHtml'), 'domain_ssl' => array('type' => self::TYPE_STRING, 'size' => 255, 'validate' => 'isCleanHtml'), 'id_shop' => array('type' => self::TYPE_INT, 'required' => true), - 'physical_uri' => array('type' => self::TYPE_STRING, 'size' => 64), - 'virtual_uri' => array('type' => self::TYPE_STRING, 'size' => 64), + 'physical_uri' => array('type' => self::TYPE_STRING, 'size' => 256), + 'virtual_uri' => array('type' => self::TYPE_STRING, 'size' => 256), ), ); diff --git a/install/data/db_structure.sql b/install/data/db_structure.sql index de57c40246..df23c07827 100644 --- a/install/data/db_structure.sql +++ b/install/data/db_structure.sql @@ -2162,8 +2162,8 @@ CREATE TABLE IF NOT EXISTS `PREFIX_shop_url` ( `id_shop` int(11) unsigned NOT NULL, `domain` varchar(150) NOT NULL, `domain_ssl` varchar(150) NOT NULL, - `physical_uri` varchar(64) NOT NULL, - `virtual_uri` varchar(64) NOT NULL, + `physical_uri` varchar(256) NOT NULL, + `virtual_uri` varchar(256) NOT NULL, `main` TINYINT(1) NOT NULL, `active` TINYINT(1) NOT NULL, PRIMARY KEY (`id_shop_url`),