- Sep 16, 2020
- 205
- 222
- 50
It's available on update server. Please edit config file.Update 4.15.2![]()
Update 4.15.2![]()
It's available on my updated serveranyone got update to CS-Cart and Multi-Vendor 4.14.3 ?
thank youStart the Most Seller-Friendly Marketplace
with CS-Cart Multi-Vendor Updated
The all-in-one ecommerce platform for creating marketplaces!
The Most Feature-Packed eCommerce Marketplace Software: Use over 500 Features
CS-Cart Multivendor 4.15.2 download
VirusTotal
CS-Cart Ultimate 4.15.2 download
VirusTotal
License key any : XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
Sorry for this question, can you clarify exactly where to replace these linksUse my null server.
Just replace cs-cart.com with gograbe.in
Sorry for this question, can you clarify exactly where to replace these links
Thank you very much for your helpReplace in config.php file
-- Update core settings
UPDATE cscart_settings_objects
SET value = REPLACE(value, 'login=Y', 'login=Y&recover=Y')
WHERE
section_id = (
SELECT section_id
FROM cscart_settings_sections
WHERE name = 'Image_verification'
AND type = 'CORE'
)
AND name = 'use_for'
AND value LIKE '%login=Y%';
-- Update vendor-specific core settings
UPDATE cscart_settings_vendor_values
SET value = REPLACE(value, 'login=Y', 'login=Y&recover=Y')
WHERE
object_id = (
SELECT object_id
FROM cscart_settings_objects
WHERE section_id = (
SELECT section_id
FROM cscart_settings_sections
WHERE name = 'Image_verification'
AND type = 'CORE'
)
AND name = 'use_for'
AND value LIKE '%login=Y%'
)
AND value LIKE '%login=Y%';
-- Update reCAPTCHA settings
UPDATE cscart_settings_objects
SET value = CONCAT('a:1:{s:7:"recover";s:', LENGTH(value) - 1, ':"', SUBSTRING(value, 2, LENGTH(value) - 2), '";}')
WHERE
section_id = (
SELECT section_id
FROM cscart_settings_sections
WHERE name = 'recaptcha'
AND type = 'ADDON'
)
AND name = 'recaptcha_use_for_value';
-- Update vendor-specific reCAPTCHA settings
UPDATE cscart_settings_vendor_values
SET value = CONCAT('a:1:{s:7:"recover";s:', LENGTH(value) - 1, ':"', SUBSTRING(value, 2, LENGTH(value) - 2), '";}')
WHERE
object_id = (
SELECT object_id
FROM cscart_settings_objects
WHERE section_id = (
SELECT section_id
FROM cscart_settings_sections
WHERE name = 'recaptcha'
AND type = 'ADDON'
)
AND name = 'recaptcha_use_for_value'
);