Media not showing in backend

Help for integrating the Laravel package
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
User avatar
aimeos
Administrator
Posts: 7858
Joined: 01 Jan 1970, 00:00

Re: Media not showing in backend

Post by aimeos » 07 Nov 2020, 08:58

Is the additional slash still there?
https://github.com/aimeos/aimeos-larave ... lt.php#L49

The line is in your ./vendor/aimeos/aimeos-laravel/src/default.php file
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

User avatar
harshithvemula
Posts: 33
Joined: 19 Jul 2020, 16:27

Re: Media not showing in backend

Post by harshithvemula » 07 Nov 2020, 10:15

No slash. And i tried now its working :D .Last time after update it showed broken images but now the images are displaying.
Thankyou

Code: Select all

		'fs' => array(
			'adapter' => 'Standard',
			'basedir' => public_path(),
			'tempdir' => storage_path( 'tmp' ),
			'baseurl' => config( 'app.url' ),
		),
		'fs-admin' => array(
			'adapter' => 'Standard',
			'basedir' => storage_path( 'admin' ),
			'tempdir' => storage_path( 'tmp' ),
		),

Post Reply