It is not possible to figure out how to import php files into my joomla component - all these errors:
Any ideas? thank
require_once (. JPATH_COMPONENT_SITE '/path/inner/your/component/folder.php');
Also - do not use DS - it is deprecated in Joomla 3.0
Try jimport, see Joomla docs about this: http://docs.joomla.org/Jimport
jimport('joomla.application.component.controller');
php "/libraries/joomla/application/component/controller.php".
helper.php
require_once dirname(__FILE__).'/helper.php';