bkrztuk wrote:Please also change the mysql settings, the max_allowed_packet to 32M. I've installed this package 3 times on MAMP localhost and yes it takes some time on step 4 but there is no problem.
I did everything you said.... but nothing!
I also marked these:
(php_error_log)
"file:///C:/xampp/htdocs/eidisoula.gr/administrator/manifests/packages/pkg_joomla.xml" in C:\xampp\htdocs\eidisoula.gr\libraries\joomla\installer\installer.php on line 1891
"file:///C:/xampp/htdocs/eidisoula.gr/administrator/manifests/packages/pkg_joomla.xml" in C:\xampp\htdocs\eidisoula.gr\libraries\joomla\installer\installer.php on line 2100
[15-Apr-2013 13:26:20 UTC] PHP Warning: simplexml_load_file(): I/O warning : failed to load external entity
I also found this in mysql_error_log: highest supported file format is Barracuda.
At installer.php i tried to find the error on line 1891: $xml = simplexml_load_file($file);
Here is a small part of the code:
Is the XML file a valid Joomla installation manifest file.
*
* @param string $file An xmlfile path to check
*
* @return mixed A SimpleXMLElement, or null if the file failed to parse
*
* @since 11.1
*/
public function isManifest($file)
{
$xml = simplexml_load_file($file);
// If we cannot load the XML file return null
if (!$xml)
{
return null;
}
// Check for a valid XML root tag.
if ($xml->getName() != 'extension')
{
return null;
}
// Valid manifest file return the object
return $xml;
}
on line 2100:$xml = simplexml_load_file($path);
if (!$xml)
{
return false;
}
// Check for a valid XML root tag.
// Extensions use 'extension' as the root tag. Languages use 'metafile' instead
.........................................................................................................................
So?