Forget It!
Uninstalled
Solved the matters below myself.
If interested, read on for solutions.
Code:
I was selling something at ?20 gbp, But when the page went to paypal, it was only asking for $20 US Dollars.
Any ideas why currency isnt transferring to Paypal.
Solution
Look in includes/class_vbma.php around line 88:
Code:
$curr_a = array('$' => 'USD', $this->vbphrase['memarea_currency_eur'] => 'EUR',
$this->vbphrase['memarea_currency_pound'] => 'GBP', $this->vbphrase['memarea_currency_nis'] =>
'NIS');
Change the red bits to your currency. Ie ? and GBP.
ALSO
Code:
Why do i keep getting error code 1 when trying to upload a product?
Solution
make a new file called
php5.ini with the following lines of code in it.
Code:
upload_max_filesize = 20M ;
post_max_size = 20M ;
max_execution_time = 60 ;
Now upload it to your websites root directory, ie public_html, and NOT your forums root directory.
By default, your server will only allow files below 2MB to be uploaded. This little file over rules that, and allows 20mb files to be uploaded.
Hope this helps with any issues you may have.
Regards