By KT on Sunday, 11 June 2017
Posted in Technical Issues
Likes 0
Views 728
Votes 0
When clicking on the "Videos" link in the admin section of ES, you get a blank white page.

When turning on the DEBUG, I get this:

Warning: require_once(/websites/chpro/public_html/administrator/components/com_easysocial/includes/video/adapters/.php): failed to open stream: No such file or directory in /websites/chpro/public_html/administrator/components/com_easysocial/includes/video/video.php on line 1682

Fatal error: require_once(): Failed opening required '/websites/chpro/public_html/administrator/components/com_easysocial/includes/video/adapters/.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /websites/chpro/public_html/administrator/components/com_easysocial/includes/video/video.php on line 1682
I fixed the problem. I ran this to delete the user with the id of "0"



delete FROM `#__social_videos` where `type` = '' and `user_id` = 0;
KT
·
Sunday, 11 June 2017 05:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for getting back to us your issue resolved.

But you have to download the fix file from https://stackideas.com/forums/video-in-administrator-page-is-error#reply-343463 then replace into this file location JoomlaFolder/media/com_easysocial/apps/user/videos/videos.php
·
Sunday, 11 June 2017 10:04
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Arlex,
i got the same issue with the whit page in the backend. In the frontend, there is no chance to select video-category. The fixed video.php file did not not changed that issue.
Peter
·
Sunday, 11 June 2017 16:03
·
0 Likes
·
0 Votes
·
0 Comments
·
hey Peter,

It seems like you missed one step to run that SQLquery from your database, I already help you do it, everything is work fine now.

Regarding with your second issue, it seems like some where injected display:none from the category selection form, so it disappear that option on the page, I already added following CSS into this file -> JoomlaFolder/templates/g5_helium/html/com_easysocial/css/custom.css

#es .es-videos-form-wrapper .o-control-input .o-form-control {
display: block !important;
}

It should work fine now.
·
Monday, 12 June 2017 11:45
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks Arlex, well done.
There is only one video-problem left in the dashboard. There are no categories shown.
The main reason for the custom css file where troubles with drop down menus in profile and search. These where fixed by you. The similar bugs in the registration where fixed by myself. As i see now ... not good.

/*registration */
#es .chzn-container.chzn-container-single {
display: none !important;
}

#es .o-form-control.chzn-done {
display: block !important;
}

When i disable the changes i made in the custom css file the result a broken, but visible category field in the stream. So would you be so kind and fix that better than i did.
·
Monday, 12 June 2017 18:15
·
0 Likes
·
0 Votes
·
0 Comments
·
I think i know what is your previous issue, you should consult with your current template provider, that is your current template injected those display:none into the selection list.

I already applied following css code into your custom.css file, it should work fine now.

#es .es-story-panel-content .es-story-video-form .es-video-item-wrap .o-form-control.input-sm {
display: block !important;
}
·
Monday, 12 June 2017 20:36
·
0 Likes
·
0 Votes
·
0 Comments
·
perfect!
thnks Arlex:D
·
Monday, 12 June 2017 21:43
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You are most welcome. Glad to hear that your issue has been resolved now.

As a gentle reminder, kindly start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiry. I will lock and mark this thread as resolved.
·
Monday, 12 June 2017 21:44
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post