- Posts: 10
search plugins conflict with hwdmediashare
- Latino
- Topic Author
- Offline
- New Member
-
Using latest install shows OK settings. However, when using hwdmedishare several PHP Fatal error were detected:
PHP Fatal error: Call to undefined function plgSearchCoursesAreas() in /var/www/html/customers/site/plugins/search/courses/courses.php on line 65, referer: www.site.com/media-gallery
PHP Fatal error: Call to undefined function plgSearchCoursecategoriesAreas() in /var/www/html/customers/site/plugins/search/coursecategories/coursecategories.php on line 64, referer: www.site.com/videos-compledu
PHP Fatal error: Call to undefined function plgSearchCoursetopicsAreas() in /var/www/html/customers/site/plugins/search/coursetopics/coursetopics.php on line 70, referer: www.site.com/videos-compledu
Setup:
Joomdle .92, Jomsocial 3 beta 3, Joomla 3.1.1, PHP 5.4.16, MySQL 5.5.30, Apache 2.4.4
Please Log in or Create an account to join the conversation.
- Antonio Durán
-
- Offline
- Moderator
-
- Posts: 7902
It seems it is failing in this line:
if (!array_intersect( $areas, array_keys( plgSearchCoursesAreas() ) )) {
Try changing it by:
if (!array_intersect( $areas, array_keys( $this->plgSearchCoursesAreas() ) )) {
If it works (you get one less error) you will need to do the same in the 3 plugins.
Please Log in or Create an account to join the conversation.
- Latino
- Topic Author
- Offline
- New Member
-
- Posts: 10
Sorry for the late reply. First thank you very much! Second, done right now and yes that fixes the issues.
Gracias!
Please Log in or Create an account to join the conversation.
- Antonio Durán
-
- Offline
- Moderator
-
- Posts: 7902
Please Log in or Create an account to join the conversation.