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.

screenshot

    0