Hi,
I just installed UC Multiprice module in my Drupal 7 with Ubercart 3 and after enabling module i got message "Multiprice currencies are not configured yet. Please, fill in the settings here.". The target of this link is admin/store/settings/countries/formats and there you can change address formating and currency format for each country. Unfortunately when I change anything and i click "Submit changes" after reloading there is no changes saved at all.

Comments

jsobiecki’s picture

Assigned: Unassigned » jsobiecki

I confirm that issue. I have simmilar observation as @goldii. I'm investigating source of problem and hopefully I'll prepare solution.

jsobiecki’s picture

I found source of problem, and it's not a module code, but environement settings.

Newer (PHP 5.3.9 and newer) versions of PHP have max_input_vars (http://php.net/manual/en/info.configuration.php#ini.max-input-vars). Default value for that variable equals 1000, which is insufficient for that module. I chose bigger value for that variable (ie 10000) and it fixes reported problem.

You can override that variable by modification .htaccess, ie:

php_value max_input_vars 10000

Please let me know, if it fixes issue for you.

jsobiecki’s picture

Status: Active » Needs review
jsobiecki’s picture

Assigned: jsobiecki » Unassigned
goldii’s picture

Thanks! This works for me!:)

jsobiecki’s picture

Status: Needs review » Closed (fixed)