Smarty, Php, Mysql Versions Forcsc 4.2

What are the versions of the smarty template system, PHP and mySQL that are used in CS-Cart version 4.2?

Please check

[quote name='eComLabs' timestamp='1424187699' post='205584']

Please check



http://www.cs-cart.c…quirements.html

[/quote]



Thanks for reply. I saw nothing about Smarty version in the docs, just a mention of smarty in the web site literature. I assume there are Smarty versions or standards. Would the relevant one for CS-Cart always be the latest? I'm trying to get an understanding of what goes on under the hood and I need to do a little study.

Almost any smarty docs will work. They use smarty mostly for control and conditional reasons. They have created their own smarty plugins which you won't find documented anywhere.

Smarty 3.1.18 is used since 4.2.1 version

[quote name='tbirnseth' timestamp='1424240363' post='205611']

Almost any smarty docs will work. They use smarty mostly for control and conditional reasons. They have created their own smarty plugins which you won't find documented anywhere.

[/quote]



Hi Tony. Thanks for reply. Bummer that it's not documented. That would seem to throw a lot of light on making modifications.

[quote name='eComLabs' timestamp='1424264445' post='205669']

Smarty 3.1.18 is used since 4.2.1 version

[/quote]



Thanks for reply. That's a starting point.

you can also use smarty reserved variable to see all details.

create new smarty template with cs-cart anywhere and use

{$smarty|@print_r}

and visit your page. version is also in there.

{$smarty.version} giving version.

[quote name='bluexpres' timestamp='1424349535' post='205843']

you can also use smarty reserved variable to see all details.

create new smarty template with cs-cart anywhere and use

{$smarty|@print_r}

and visit your page. version is also in there.

{$smarty.version} giving version.

[/quote]



Thanks for reply. That's useful to know.