The problem is that I tried to add currency (tenge). To do this you need to add it to the files:
In the file config.php added currency
//ΠΊΡΡΡΡ Π²Π°Π»ΡΡ $init_currency = array( "kzt" => array("ΠΠ°Π·Π°Ρ
ΡΡΠ°Π½ΡΠΊΠΈΠΉ ΡΠ΅Π½Π³Π΅","ΡΠ΅Π½Π³. "), "rub" => array("Π ΠΎΡΡΠΈΠΉΡΠΊΠΈΠΉ Π ΡΠ±Π»Ρ","ΡΡΠ±. "), "usd" => array("ΠΠΌΠ΅ΡΠΈΠΊΠ°Π½ΡΠΊΠΈΠΉ ΠΠΎΠ»Π»Π°Ρ","Π΄ΠΎΠ». "), "uah" => array("Π£ΠΊΡΠ°ΠΈΠ½ΡΠΊΠ°Ρ ΠΡΠΈΠ²Π½Π°","Π³ΡΠ½. "), "eur" => array("ΠΠ²ΡΠΎΠΏΠ΅ΠΉΡΠΊΠΈΠΉ ΠΠ²ΡΠΎ","Π΅Π²ΡΠΎ"), ); $init_base_currency = "kzt"; Then I made it in the currency settings file in the folder config_save /initcurrency.php
$init_base_currency = "kzt"; $init_use_currency = array("kzt","rub","usd","eur"); $init_course_currency = array("kzt" => 1, "rub" => 1, "usd" => 0.033, "uah" => 0.3, "eur" => 0.025); I also added currency data to the array of $masConfig settings in the config_main.php file:
define('init_currency','rub,usd,eur,byr'); $masConfig['init_currency'] = 'rub,usd,eur,byr'; define('init_base_currency','rub'); $masConfig['init_base_currency'] = 'rub'; define('data_base_currency','rub'); $masConfig['data_base_currency'] = 'rub'; define('init_use_currency','rub,usd,eur,byr'); $masConfig['init_use_currency'] = 'rub,usd,eur,byr'; define('init_course_currency','rub'); $masConfig['init_course_currency'] = 'rub => 1'; The currency appeared on the site, but when you select the tenge, a message comes out (not all fields are entered), although all the fields are entered TESTED, but if you select another currency for example ruble or dollar, the ad appears without problems. I ask to help because those support cannot help me in this, I rely on you kind people.
