Hi admin,
on my joomla-installation quicksell.php find the script config.php from PEAR. I have changed your script quicksell.php slightly.
search in line 93
and replace
case "config":
include_once('config.php');
break;
by
case "config":
$configfile = JPATH_COMPONENT_ADMINISTRATOR.'/'.'config.php';
include_once($configfile);
break;
this will resolve this issue.
best regards
castor