What's new

Welcome to xCrud Community - Data Management and extended PHP CRUD

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

images are not showing in the grid

sipdorus

New member
Joined
Feb 13, 2023
Messages
11
Reaction score
0
Points
1
Location
Turkiye
there is no problem about uploading images. I can see images at the folder but images are not showing in the grid or upload screen.


$xcrud->change_type('resim1', 'image', true, array(
'width' => 2000,
'height' => 600,
'crop' => true,
'not_rename' => false,
'path' => '../../images/slider',
'thumbs' => array(array(
'height' => 192,
'width' => 60,
'crop' => true,
'marker' => '_th'))));
 

DaDo

Administrator
Staff member
Joined
Dec 1, 2021
Messages
108
Reaction score
23
Points
18
there is no problem about uploading images. I can see images at the folder but images are not showing in the grid or upload screen.


$xcrud->change_type('resim1', 'image', true, array(
'width' => 2000,
'height' => 600,
'crop' => true,
'not_rename' => false,
'path' => '../../images/slider',
'thumbs' => array(array(
'height' => 192,
'width' => 60,
'crop' => true,
'marker' => '_th'))));
The issue you're facing with images not showing in the xCRUD grid or upload screen, despite being uploaded successfully to the folder, could be due to a few reasons:

Missing URL Path:
'url'=> 'https://yourwebsite.com/images/slider/',
 

sipdorus

New member
Joined
Feb 13, 2023
Messages
11
Reaction score
0
Points
1
Location
Turkiye
nice advice but did not work :confused:

is that an extension must have at server for xcrud_ajax.php which creates image? because same code works at another server.
 
Last edited:

DaDo

Administrator
Staff member
Joined
Dec 1, 2021
Messages
108
Reaction score
23
Points
18
nice advice but did not work :confused:

is that an extension must have at server for xcrud_ajax.php which creates image? because same code works at another server.
Check php error log and past here
 
Top Bottom