3.2 Problems so far.

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
Had an error when setting up the paypal plugin, this is because the plugins/_plugin_config.inc.php isn't formatted properly.

As I downloaded it:
Code:
<?php// core plugin config$pluginConfig = array();$pluginConfig['plugin_name']             = 'PayPal Payment Integration';$pluginConfig['folder_name']             = 'paypal';$pluginConfig['plugin_description']      = 'Accept payments using PayPal.';$pluginConfig['plugin_version']          = 1;$pluginConfig['required_script_version'] = 3.2;
How it should be:
Code:
<?php

// core plugin config
$pluginConfig = array();
$pluginConfig['plugin_name']             = 'PayPal Payment Integration';
$pluginConfig['folder_name']             = 'paypal';
$pluginConfig['plugin_description']      = 'Accept payments using PayPal.';
$pluginConfig['plugin_version']          = 1;
$pluginConfig['required_script_version'] = 3.2;
If you have changed the admin folder name and want to edit the paypal plugin settings, you need to edit the following file:

/plugins/paypal/admin/settings.php

Find:
Code:
include_once('../../../admin/_local_auth.inc.php');
Change the "admin" in that line to point to your admin folder.
 

adam

Administrator
Staff member
Dec 5, 2009
2,043
108
63
Thanks for pointing out the line break issue. I assume my text editor was having an off day as it missed full line breaks for just this file! Fixed and re-uploaded.

Thanks,
Adam.