Cannot install Adapter (adapter_access1.5.6.zip)

Do you have an Open Source Product available for Joomla!? Let everyone know here.
Locked
Allioth
Joomla! Intern
Joomla! Intern
Posts: 80
Joined: Tue May 17, 2011 9:16 pm

Cannot install Adapter (adapter_access1.5.6.zip)

Post by Allioth » Fri Sep 30, 2011 7:52 pm

Hello everyone,

I have installed all files of this nice extension, but I'm having problems with the installation of the adapter...

Once I click on the "upload and install" I get a blank page with this error:

Warning: require_once(/../libraries/joomla/installer/adapters/adapter.php) [function.require-once]: failed to open stream: No such file or directory in /../libraries/joomla/installer/installer.php on line 216

Fatal error: require_once() [function.require]: Failed opening required '/../libraries/joomla/installer/adapters/adapter.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /../libraries/joomla/installer/installer.php on line 216

Here's the function of that file, that includes that line (which is: require_once(dirname(__FILE__)etc.... :

Code: Select all

	function setAdapter($name, $adapter = null)
	{
		if (!is_object($adapter))
		{
			// Try to load the adapter object
			require_once(dirname(__FILE__).DS.'adapters'.DS.strtolower($name).'.php');
			$class = 'JInstaller'.ucfirst($name);
			if (!class_exists($class)) {
				return false;
			}
			$adapter = new $class($this);
			$adapter->parent =& $this;
		}
		$this->_adapters[$name] =& $adapter;
		return true;
	}
I have Joomla 1.5, and have almost NO idea of PHP... :'(
Any help?

Thanks

Allioth

Locked

Return to “Open Source Products for Joomla!”