Most likely your description has funky characters that is causing problems with serialize and unserializing your data.
Thanks for the feedback...it was on 8/29...but I think that you were right. I ran everything from the old database through a couple of functions to clean them up and I have gotten rid of almost all the errors. I used
$image = trim( preg_replace( ‘/\r\n/’, ‘’, trim($image) ) );
...and removed tabs in a second line…
$image = preg_replace( ‘/\t/’, ‘’, $image ) ;
it’s installed. here is what it says in Magento connect page:
Channel: connect.magentocommerce.com/community
Package Name Installed Actions Summary
Product_Gallery_Importer 1.1 (stable) Product Gallery Importer lets you import products with multiple product images from a CSV file.
it’s installed. here is what it says in Magento connect page:
Channel: connect.magentocommerce.com/community
Package Name Installed Actions Summary
Product_Gallery_Importer 1.1 (stable) Product Gallery Importer lets you import products with multiple product images from a CSV file.
Where does this file live in the folder hierarchy? I have tried going to:
magento\downloader\pearlib\download\product_gallery_importer-1.1\ and setting all the folders and the Gallery.php file to 777 but it doesn’t allow me to perform the action.
Whilst the folders are all 777, the Gallery.php file won’t change from 666
Hi! I’ve got the same problem “Declared adapter catalog/convert_adapter_gallery not found”
I’ve installed Product Gallery Importer via Magento connect.
Created advanced profile
But when i try to import file Magento reports “Declared adapter catalog/convert_adapter_gallery not found”
/app/code/core/Mage/Catalog/Model/Convert/Adapter/Gallery.php
Owner: rw
Group: rw
Other: r
Here is basically what the extension does. If you hack the file Product then you’ll be able to use the gallery field in any existing profile that uses the product adapter (instead of the gallery adapter):
Here is basically what the extension does. If you hack the file Product then you’ll be able to use the gallery field in any existing profile that uses the product adapter (instead of the gallery adapter):
Yes, you will have it duplicated. I found another hack for this, which does the following: if the image already exists in destination directory (media/catalog/products), it replaces it.
/www/suiclean/app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Media.php Before $destFile = dirname($file) . $ioObject->dirsep(), (l460), Replace:
And you can also make sure “exclude” is specified for image, thumbnail and small_image fields (otherwise I have seen that they can appear in the gallery, which is not desirable), by doing the following:
I’m trying to follow this instructions, because of update issues.
http://www.magentocommerce.com/wiki/groups/174/changing_and_customizing_magento_code
http://www.magentocommerce.com/wiki/how-to/customize_part_of_configuration
I followed this steps
1. Create new dir app/code/local/Peerus/Catalog/Model/Convert/Adapter
2. Put Gallery.php into this dir Edit it Mage_Catalog_Model_Convert_Adapter_Gallery -> Peerus_Catalog_Model_Convert_Adapter_Gallery
3. Edit app/etc/local.xml
Add
<modules>
<DriveBike_Catalog>
<active>true</active>
<codePool>local</codePool>
</DriveBike_Catalog>
</modules>
Add (i’ve tried different variants of this block)
<models>
<gallery>
<class>Peerus_Catalog_Model_Convert_Adapter</class>
</gallery>
</models>
I also tried to create app/code/{codePool}/{moduleName}/etc/config.xml
What i’m doing wrong?
There is plan to modify gallery import to create “Catalog price rules” to solve my pricing problem http://www.magentocommerce.com/boards/viewreply/62011/