Magento 1.7.0.2 Image does not exist - magento

i am import bulk images to the mogento i had the error "Image does not exist" i am trying the fallowing
1)products folder placed at /media/catalog/product/ and also create a folder import at media media/import
2)csv file is convert into UTF-8 format
3)image name in csv file is like this /media/catalog/product/products/91803_1_201081211141.jpg
quid me for better solution

You should place your images in media/import i.e. media/import/photo.jpg then in your csv file you just use photo.jpg

Tested and working in Magento CE ver. 1.7.0.2
Image: /media/import/foo.png
Image name in CSV file: /foo.png

Lets say you've accidentally deleted a bunch of products but the images are still in the media/catalog/product folder. For example this may happen if you accidentally delete an attribute set because it takes the products with it. Lets say you want to export those products from your staging environment and back into production. You would go into dataflow on staging, do the export and then on production, temporarily change this file:
code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
Change line 775 to
$arrayToMassAdd, Mage::getBaseDir('media') . DS . 'catalog/product/',
When you're done change it back to
$arrayToMassAdd, Mage::getBaseDir('media') . DS . 'import',
What this will do is import the product images from where they were. The csv you export from your staging environment will reference image at /l/a/etc etc... so it will work.
Don't forget the '/' at the end of catalog/product

Related

Magento 2 Maximum error count has been reached or system error is occurred

i try to import images product in magento 2 with csv file. I use import options in magento admin (System > Data Transfer > Import) but i get this error.
My csv file have this columns
sku,product_type,attribute_set_code,name,price,base_image,base_image_label,small_image,small_image_label,thumbnail_image,thumbnail_image_label,additional_images
thanks
Hi, i find error in csv field but now i got permissions error
i use sudo chmod 777 -R va/import/images/ but doesnt work
Did you find something in the logs?
Also, what if you try the import without images? (Just for testing, to be sure if the data or the files are the problems)

No csv files found errror in magmi

we are using magmi_full_0.7.19a
we placed a csv file under var/import directory.
but still we are getting mesage as : No csv files found in magmi page
Relative paths are relative to magento base directory , absolute paths will be used as is
Put Your csv files under the magmi/var/import
but generally magmi take path in root/var/import so make sure that you have to create a imoprt folder in var

Update a specific directory on AppFog

I try to update a specific directory on AppFog for my Node.JS application, but I don't know how does it works..
I tried to execute the following command : "af update appname --path public/admin".
But it doesn't work : "No such file or directory".
And when I update all the application, all my uploaded photos are deleted. By "uploaded photos" I mean the photos uploaded by an upload form in HTML from my application in the "public/images/photos" directory!
How can I update only the "public/admin" directory?
Anthony
Create a .afignore file in the root directory. There you can specify the files or directories you want to ignore while running update command.
Example:
# ignore run.py
run.py
# ignore dot files
.*
# ignore assets directory
assets/
# ignore static directory
static/
Once you are done specifying the files, run af update appname
You can find the documentation here : https://docs.appfog.com/getting-started/af-cli/afignore

Rails 3.1+ and GeoIP database file location/access

This question is related to Rails - Where I have to store data file (.dat) in my rails project - GeoIp City database . I have a rails 3.2 app. I am trying to run:
#geoip = GeoIP.new('GeoLiteCity.dat')
In one of my app's controllers. I unzipped the 'GeoLiteCity.dat' file into the /public folder. I am getting the error "No such file or directory - GeoLiteCity.dat".
I've experimented with putting it in the images assets pipeline folder and some random other places. I continue to get the same error. Not sure how to access this file. Any ideas on what I'm doing wrong or how to access it best with the assets pipeline?
Try referencing it via the full path:
#geoip = GeoIP.new("#{Rails.root}/public/GeoLiteCity.dat")
On a side note, it's probably not a big deal, but I wouldn't put the file in your public directory.

How does MediaWiki calculate the file path to an image?

I'm just installing MediaWiki (loving it). I'm lookin at this for adding images. I can se the logic of
[[File:MediaWiki:Image sample|50px]]
but where so I set the filepath for "File" (nothing obvious in LocalSettings.php) ... or is there some other logic at work?
I'd appreciate any help
Thanks
File location is determined by $wgLocalFileRepo which by default depends on $wgUploadDirectory and $wgHashedUploadDirectory. The upload directory defaults to [MediaWiki base dir]/images (Adrian must be using an older version). If hashing is enabled, /x/xy will be appended to the path, where xy are the first two letters of the md5 hash of the filename.
The defaults from DefaultSettings.php are:
$wgUploadPath = "$wgScriptPath/uploads";
$wgUploadDirectory = "$IP/uploads";
If you want to change this, you should copy and paste this into LocalSettings.php
And make sure that $wgEnableUploads = true; is in LocalSettings.php too.
Your "Image sample" is the name of image, not the name of a file. By config file you can just set the root folder for image uploads.
Just for future reference in case someone else runs into this issue:
I installed MediaWiki on my Mac OS Sierra and when I attempted to upload an image I got the following message:
Failed:
Could not open lock file for "mwstore://local-backend/local-public/d/d9/babypicture.png".
I changed the permissions on the mediawiki_root/images folder to be owned by _www user and group.
chown -R _www:_www wiki/images
I was able to upload the image afterward.

Resources