ISSUE SUMMARY:
After the update my component "all photos" is not working properly, is just showing only one photo, and the others is not shown. Is not showing the photos of the users.
STEPS TO REPLICATE:
1 . The link to view all photos
www.filminday.com/actividad/photos/display.html
2 I verify my component "all photos" on
www.filminday.com/administrator/index.ph...modules&view=modules
3 My configuration is
Display: Photos
From: All
Sort by:
Newest
Limit:20
RESULT
EXPECTED RESULT
BROWSER
Hi, Jose.
I assign developer to this thread.
Well months before, the component module "all photos" were showing all photos (profile photos 'in this case around 70 photos of the users', uploaded photos), now it just showing one photo, even if I upload a photo, it doesn't apper, it just show one.
I tried to activate and desactivate the module but it doesn't show "all photos" including the profile avatars. Feel free to activate and desactivate the module.
Hi,
please provide me valid credentials information of your site, I need:
FTP
joomla super user
phpmyadmin/cpanel (database access)
I need it for debugging purpose. please edit your put post at this topic and put that credentials information at site info form (private)
Regards
Ok I will provide the ftp access, thank you in advance.
I just had provided on my last message, here in this publication will be posted too.
Hi,
could you please upgrade your site to jomsocial 4.2.2 first?
if the issue still exist, please edit:
/modules/mod_community_photos/mod_community_photos.php line 49
$photoType = 'user';
$photoType = null;
Here is the code, but I don't know waht part exactly, there are some many equal text:
Hi,
switch($photoType){
case 0:
$photoType = false; // this will grab all the photos
break;
case 1:
$photoType = 'user';
break;
case 2:
$photoType = 'group';
break;
case 3:
$photoType = 'event';
break;
default:
$photoType = 'user';
}
switch($photoType){
case 0:
$photoType = false; // this will grab all the photos
break;
case 1:
$photoType = 'user';
break;
case 2:
$photoType = 'group';
break;
case 3:
$photoType = 'event';
break;
default:
$photoType = null;
}
Thank you, it worked out, I have a question, why this happened?