Posts tagged connect

magento-logo

Magento fix: while trying to access connect Fatal error: Class Exception not found in Frontend.php on line 90

0

Essentially you need to edit the level of error reporting to supress php from throwing this error.

so..

index.php

change

error_reporting(E_ALL | E_STRICT);

to

 error_reporting(E_ALL & E_STRICT & ~E_DEPRECATED);

In

lib/Varien/Pear.php

error_reporting(E_ALL & ~E_NOTICE);

to

error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);

4> downloader/Maged/Pear.php

error_reporting(E_ALL & ~E_NOTICE);

to

error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
magento-logo

Magento fix : Local file doesn’t exist

0

If you have upgraded your magento or coppied it across from dev to live or live to dev you may find that Magento connect is throwing “Local file doesn’t exist:” error. This is generated from lib/Mage/Connect/Ftp.php. The error occurs if you have oped to use the new ftp connection method for magento connect. This is a long sought after method of using connect but this is the down side. Rather than store your ftp date in the database the Magento team have opted to store this info in a file… downloader/connect.cfg to be precise.

This is a text file which you will see contains the info you used when setting up Connect. Make the necessary changes to this to reflect the new server location.

Magento tip: problems with Linnworks connecting to Magento api

0

A recent hosting customer is using Linnworks to post their catalogue to ebay, amazon and Magento. Despite following the guide lines here they were still unable to connect to their site. Eventually the Linnworks support were able to offer the following.

in lib/Zend/XmlRpc/Server.php

comment out:

if (!$matched)
{
#require_once 'Zend/XmlRpc/Server/Exception.php';
throw new Zend_XmlRpc_Server_Exception('Calling parameters do not match signature', 623);
}

hope this helps someone/

social

5 Extremely useful free Magento Extensions

4


Magento is great out of the box but… there are always things that it does not quite do. This is where the vibrant community of extension builders comes in. There is fantastic, growing number of extensions in the Magento Connect collection and many of the most useful are free. That is not to say that a commercial extension will not be what you are looking for but free is good.

(more…)

Go to Top