Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Which table Product image url stored in Prestashop

I want to find Product image url stored location in Prestashop Database.

like image 234
user2999752 Avatar asked May 27 '16 22:05

user2999752


1 Answers

Product image urls are not stored in database. The location is based on the id_image field of ps_image table.

An image having 1234 for id will be stored under /img/p/1/2/3/1234.jpg.

An image having 1514 for id will be stored under /img/p/1/5/1/1514.jpg.

I invite you to check /classes/Image.php and /classes/ImageManager.php for more informations.

like image 58
Florian Lemaitre Avatar answered Sep 28 '22 09:09

Florian Lemaitre