I just need to answer this in detail:
Create the file Config.php in: /app/code/local/Mage/Paypal/Model/Config.php
Step 1 Copy the file from
/app/code/core/Mage/Paypal/Model/Config.php
to
/app/code/local/Mage/Paypal/Model/Config.php
Step 2
Look for the: $_supportedCurrencyCodes -> line 207
Then add your currency to:
protected $_supportedCurrencyCodes = array( AUD , CAD , CZK , DKK ,
EUR , HKD , HUF , ILS , JPY , MXN ,
NOK , NZD , PLN , GBP , SGD , SEK , CHF , USD , TWD , THB );
Our currency (PHP) which was not supported so I added it on the code. It should become like this:
protected $_supportedCurrencyCodes = array( AUD , CAD , CZK , DKK ,
EUR , HKD , HUF , ILS , JPY , MXN ,
NOK , NZD , PLN , GBP , SGD , SEK , CHF , USD , TWD , THB , PHP );
Then make that as your base currency (instead of USD). Hope this helps