Sp Property (pricing Problem) - Question | JoomShaper

Sp Property (pricing Problem)

Aslam Ahamed

Aslam Ahamed

Extension 6 days 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 day ago

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
3 days ago

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);

-1
Aslam Ahamed
Aslam Ahamed
Accepted Answer
1 day ago

Please can you give me proper guide for this.

thanks

0
Aslam Ahamed
Aslam Ahamed
Accepted Answer
1 day ago

i want the currency to AED

0
Aslam Ahamed
Aslam Ahamed
Accepted Answer
1 day ago

Great its working

Thanks

0
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 1 day ago

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