View Full Version : VbSocial Slider & PHP5
SilverBoy
06-09-2016, 06:57 PM
Hi
I was bought vbsocial slider from vbsocial, and it was work great with vb4.2.1, now I updated my server PHP to 5.6.22 and my forum to vb4.2.3, but suddenly the slider stop work, I solver some error messages that was appear but the slider now work without text.
Is there any one can help?
Have you asked the author of the plugin? We don't really know how the plugin works, nor do we have access to the (paid) plugin to look into it.
SilverBoy
06-09-2016, 07:01 PM
the author not come online for more than a year on his forum, if there is one can help I can send the files to him to make a check.
--------------- Added 1465507930 at 1465507930 ---------------
Have you asked the author of the plugin? We don't really know how the plugin works, nor do we have access to the (paid) plugin to look into it.
If you want to help please send me your email in PM and I will send you a copy from the plugin.
--------------- Added 1465528553 at 1465528553 ---------------
Hi
I figured out the problem position
here is the code
$sql = "SELECT a.pagetext,a.contentid, a.previewimage, node.nodeid, node.parentnode, node.url, info.title, node.myfeaturetype
FROM " . TABLE_PREFIX . "cms_article as a
LEFT JOIN " . TABLE_PREFIX . "cms_node AS node ON a.contentid = node.contentid
INNER JOIN " . TABLE_PREFIX . "cms_nodeinfo AS info ON info.nodeid = node.nodeid
WHERE node.myfeaturetype = '4'
ORDER BY node.publishdate DESC ";
//WHERE node.contenttypeid = " . vB_Types::instance()->getContentTypeID("vBCms_Section").
//AND ((node.permissionsfrom IN ($viewlist) AND node.hidden = 0) OR (node.permissionsfrom IN ($publishlist))) ORDER BY node.nodeleft
$result = $vbulletin->db->query_read_slave($sql);
$sections = array();
while ($section = $vbulletin->db->fetch_array($result)) {
$pagetext = $section["pagetext "];
$sections[] = array(
'title' => $section['title'],
'link' => $vbulletin->options['bburl']."/content.php?".$section['nodeid'].'-'.$section['url'],
'description' => get_summary($pagetext,$des_length),
'image' => $previewimage
$section["pagetext "] return values if I put any one from DB query
for example
$pagetext = $section["previewimage"];
will return the value
all fields which is not mediumtext type will return value, and all fields with mediumtext format return NULL
could you help in this?
cellarius
06-10-2016, 04:45 AM
the author not come online for more than an hour on his forum
Oh, wow. Not online for more than an hour. How dare he have a life, sleep or eat...
SilverBoy
06-10-2016, 09:19 AM
sorry I mean a year.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.