Radkosky,
Warning: Invalid argument supplied for foreach() in /joomla/libraries/joomla/html/html/select.php on line 68 (5 times in field "modules parameter" in my sobi2simplefeatured CLONE).
I am not sure what is causing this error.
It is possible you have not cloned mod_sobi2simplefeatured correctly.
You did make a clone of mod_sobi2simplefeatured.xml and en-GB.mod_sobi2simplefeatured.ini
changing the file names as well as the contents. Correct?
Warning: require(/joomla/components/com_clone2/config.class.php) [function.require]: failed to open stream: No such file or directory in /joomla/modules/mod_clone2simplefeatured/mod_clone2simplefeatured.php on line 33
Before cloning module mod_sobi2simplefeatured
Line 33 in
MyJoomlaInstallation/modules/mod_clone2simplefeatured/mod_clone2simplefeatured.php
was
class_exists( 'sobi2Config' ) || require(JPATH_BASE.DS.'components'.DS.'com_sobi2'.DS.'config.class.php');
after cloning this line should read
class_exists( 'clone2Config' ) || require(JPATH_BASE.DS.'components'.DS.'com_clone2'.DS.'config.class.php');
The module needs to load the file
MyJoomlaInstallation/components/com_clone2/config.class.php
where
MyJoomlaInstallation is the path to the root of your Joomla installation.
You could try changing this to;
class_exists( 'clone2Config' ) || require(JPATH_ROOT.DS.'components'.DS.'com_clone2'.DS.'config.class.php');
Refer
http://docs.joomla.org/ConstantsFatal error: Class 'clone2Config' not found in /autoinstalator/joomla/modules/mod_clone2simplefeatured/helper.php on line 46
This error is a result of the previous error.
Before cloning module mod_sobi2simplefeatured
Line 46 in
MyJoomlaInstallation/modules/mod_clone2simplefeatured/helper.php
was
$this->sobi2_config=sobi2Config::getInstance();
after cloning this line should read
$this->clone2_config=clone2Config::getInstance();
The only other thing I notice is that the paths do not appear to be consistent.
ie:
/joomla
and
/autoinstalator/joomla
I assume your Joomla Installation (
MyJoomlaInstallation) is in a sub-directory named 'joomla' in the folder named 'autoinstalator'
Regards - Mark