SP Property (Pricing Problem) - Question | JoomShaper

SP Property (Pricing Problem)

Aslam Ahamed

Aslam Ahamed

Extension 1 year ago

i want change the pricing to aed and i want increase the pricing.

Save failed with the following error: Out of range value for column 'price' at row 1

0
6 Answers
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 1 year ago #109735

Hello Aslam Ahamed

You cannot add more that 10,00,000 in SP Property -> Property Price. If you want to increase the digits, then you have to change in the database. Please run this SQL query on your database. By default, the value is FLOAT(8,2). If you make it FLOAT(9,2), then you can add 1 more digit in the price 1,00,00,000

ALTER TABLE `xxxxx_spproperty_properties` CHANGE `price` `price` FLOAT(9,2) NOT NULL DEFAULT ‘0.00’;

Use your table prefix instead of xxxxx on the table name.

Best regards

0
Carlos Jimenez
Carlos Jimenez
Accepted Answer
1 year ago #109446

1st, Backup your database, export the sql

2nd . change the xxxx to the prefix of your tables and the XXX by the number of zeros you want.

execute this in phpmyadmin/sql

ALTER TABLE xxxx_spproperty_properties CHANGE price price FLOAT(XXX,2);

0
Aslam Ahamed
Aslam Ahamed
Accepted Answer
1 year ago #109696

Please can you give me proper guide for this.

thanks

0
Aslam Ahamed
Aslam Ahamed
Accepted Answer
1 year ago #109736

i want the currency to AED

0
Aslam Ahamed
Aslam Ahamed
Accepted Answer
1 year ago #109762

Great its working

Thanks

0
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 1 year ago #109775

You are welcome 😊

I have a humble request. It would be very kind of you if you can manage some moment to give us feedback on 

  1. Joomla Extension Directory
  2. TrustPilot

This will inspire us to improve.

0