简体   繁体   中英

Opencart 3.0.2.0 Not Displaying Images

I have installed Opencart 3.0.2.0 in my Linux server. When I open my Store front page, it is not displaying Banner images, Product images, Manufacturer images.

I logged in to Admin panel and tried to upload images for product categories and products and those are successfully uploaded and stored in to /images/cache folder. But in UI that images are not displaying.

在此处输入图片说明

It was a path issue to the DIR_IMAGE constant.

How i got my server default root relative path.

I created a file called path.php and added this code to it echo getcwd(); .

I uploaded it to the root of my server online and this gave me my online relative path

accessing http//{domain}/path.php displays my relative path for me which I now used in my config.php file.

That was how I solve it right now.

Open config.php in root folder and admin folder and search for DIR_IMAGE .

Update image path as below:

define('DIR_IMAGE', '/var/www/html/image/');

hope this helps

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM