Maybe it is XenForo 1.1.3 or maybe this modification just doesn't like php 5.4
Must be php 5.4
Maybe it is XenForo 1.1.3 or maybe this modification just doesn't like php 5.4
Any ETA on an update? (please and thank you).Must be php 5.4
public function loadHTML($source)
public function loadHTML($source, $options = null)
#0 /home/sociall1/public_html/forums/library/XenTrader/Listener/TemplatePostRender.php(36): XenForo_Application::handlePhpError(8, 'Undefined index...', '/home/sociall1/...', 36, Array)
#1 /home/sociall1/public_html/forums/library/XenPlus/Listener/TemplatePostRender.php(13): XenTrader_Listener_TemplatePostRender->_memberList('???????????????...', Array)
#2 /home/sociall1/public_html/forums/library/XenPlus/Listener/Abstract.php(21): XenPlus_Listener_TemplatePostRender->execute('member_list', '???????????????...', Array, Object(XenForo_Template_Public), NULL, NULL, NULL, NULL, NULL, NULL)
#3 [internal function]: XenPlus_Listener_Abstract::listen('member_list', '???????????????...', Array, Object(XenForo_Template_Public))
#4 /home/sociall1/public_html/forums/library/XenForo/CodeEvent.php(54): call_user_func_array(Array, Array)
#5 /home/sociall1/public_html/forums/library/XenForo/Template/Abstract.php(195): XenForo_CodeEvent::fire('template_post_r...', Array)
#6 /home/sociall1/public_html/forums/library/XenForo/Template/Public.php(110): XenForo_Template_Abstract->render()
#7 /home/sociall1/public_html/forums/library/XenForo/ViewRenderer/HtmlPublic.php(119): XenForo_Template_Public->render()
#8 /home/sociall1/public_html/forums/library/XenForo/FrontController.php(565): XenForo_ViewRenderer_HtmlPublic->renderContainer(Object(XenForo_Template_Public), Array)
#9 /home/sociall1/public_html/forums/library/XenForo/FrontController.php(156): XenForo_FrontController->renderView(Object(XenForo_ControllerResponse_View), Object(XenForo_ViewRenderer_HtmlPublic), Array)
#10 /home/sociall1/public_html/forums/index.php(13): XenForo_FrontController->run()
#11 {main}
array(3) {
["url"] => string(48) "http://www.sociallyuncensored.eu/forums/members/"
["_GET"] => array(0) {
}
["_POST"] => array(0) {
}
}
I need assistance setting up trading forums, as when trying to leave feedback I am getting error message that no forum is set up and that feedback cannot be created. Please advise.
If I use one of my existing forums, I need to select form available threads and everything works. But... there is nothing added to the message thread. so, what is purpose of providing trading forum if if nothing is being written to it?? I am lost at this point
Try disabling the "require post" setting.
also, no feedback gets added to the threads, it gets added to the users profile.
/* Update the positive ratings totals */
UPDATE `xentrader_user` `u`
JOIN (
SELECT `to_user_id`, COUNT(*) AS `total`
FROM `xentrader_feedback`
WHERE `rating` = 1
GROUP BY `to_user_id`
) `r` ON `r`.`to_user_id` = `u`.`user_id`
SET `u`.`positive` = `r`.`total`;
/* Update the neutral ratings totals */
UPDATE `xentrader_user` `u`
JOIN (
SELECT `to_user_id`, COUNT(*) AS `total`
FROM `xentrader_feedback`
WHERE `rating` = 0
GROUP BY `to_user_id`
) `r` ON `r`.`to_user_id` = `u`.`user_id`
SET `u`.`neutral` = `r`.`total`;
/* Update the negative ratings totals */
UPDATE `xentrader_user` `u`
JOIN (
SELECT `to_user_id`, COUNT(*) AS `total`
FROM `xentrader_feedback`
WHERE `rating` = -1
GROUP BY `to_user_id`
) `r` ON `r`.`to_user_id` = `u`.`user_id`
SET `u`.`negative` = `r`.`total`;
/* Update the total count of feedback given to users */
UPDATE `xentrader_user` `u`
JOIN (
SELECT `to_user_id`, SUM(`rating`) AS `total`
FROM `xentrader_feedback`
GROUP BY `to_user_id`
) `r` ON `r`.`to_user_id` = `u`.`user_id`
SET `u`.`total` = `r`.`total`;
/* Update positive to negative ratio */
UPDATE `xentrader_user` `u`
JOIN (
SELECT `to_user_id`, ABS(SUM(`rating`)) AS `total_negative`
FROM `xentrader_feedback`
WHERE `rating` = -1
GROUP BY `to_user_id`
) `r` ON `r`.`to_user_id` = `u`.`user_id`
SET `u`.`rating` = ((`u`.`positive` / `r`.`total_negative` ) * 100);
ErrorException: Division by zero - library/XenTrader/DataWriter/Feedback.php:85
Generated By: Admin, Today at 7:45 PM
Stack Trace
#0 /var/www/vhosts/domain.com/httpdocs/library/XenTrader/DataWriter/Feedback.php(85): XenForo_Application::handlePhpError(2, 'Division by zer...', '/var/www/vhosts...', 85, Array)
#1 /var/www/vhosts/domain.com/httpdocs/library/XenForo/DataWriter.php(1738): XenTrader_DataWriter_Feedback->_postDelete()
#2 /var/www/vhosts/domain.com/httpdocs/library/XenTrader/ControllerPublic/Feedback.php(146): XenForo_DataWriter->delete()
#3 /var/www/vhosts/domain.com/httpdocs/library/XenForo/FrontController.php(310): XenTrader_ControllerPublic_Feedback->actionDelete()
#4 /var/www/vhosts/domain.com/httpdocs/library/XenForo/FrontController.php(132): XenForo_FrontController->dispatch(Object(XenForo_RouteMatch))
#5 /var/www/vhosts/domain.com/httpdocs/index.php(13): XenForo_FrontController->run()
#6 {main}
Request State
array(3) {
["url"] => string(44) "http://www.domain.com/feedback/83/delete"
["_GET"] => array(0) {
}
["_POST"] => array(2) {
["_xfConfirm"] => string(1) "1"
["_xfToken"] => string(53) "2,1343864702,e25acf3b515efae5fed236169a10bd97b748401e"
}
}
SiteName - Error
You do not have permission to view this page or perform this action.
My images do not seem to be working.. I uploaded everything once again and still nothing.. what should I check for??
We use essential cookies to make this site work, and optional cookies to enhance your experience.