sean
06-08-2005, 06:24 PM
I noticed that this was asked by some people at vbulletin.org and I think I saw some asking here as well. For some, after the upgrade to vbadvanced v2, the Cinq's vbArticle module stopped showing the article images. What I found out was that you need to change two things,
Here is what I did,
to fix the problem, open up your includes/vba_cmps_include_top.php and find $cmps_options = unserialize($datastore['adv_portal_opts']);
above that, add,
$vbart_options = unserialize($datastore['vbart_options']);
Also, instead of adding this to the global.php, add it to your ./includes/vba_cmps_include_template.php
$specialtemplates = array_merge($specialtemplates,
array(
'adv_modules',
'adv_portal_opts',
'attachmentcache',
'bbcodecache',
'birthdaycache',
'eventcache',
'iconcache',
'maxloggedin',
'smiliecache',
'userstats',
'vbart_options'
)
);
hope that this helps those that had the same problem.
==========edit==============
I have also attached the module here, for those who want to download the .module file.
Here is what I did,
to fix the problem, open up your includes/vba_cmps_include_top.php and find $cmps_options = unserialize($datastore['adv_portal_opts']);
above that, add,
$vbart_options = unserialize($datastore['vbart_options']);
Also, instead of adding this to the global.php, add it to your ./includes/vba_cmps_include_template.php
$specialtemplates = array_merge($specialtemplates,
array(
'adv_modules',
'adv_portal_opts',
'attachmentcache',
'bbcodecache',
'birthdaycache',
'eventcache',
'iconcache',
'maxloggedin',
'smiliecache',
'userstats',
'vbart_options'
)
);
hope that this helps those that had the same problem.
==========edit==============
I have also attached the module here, for those who want to download the .module file.