Tried to install the Video Phone from Rayzz, however, I always end up
with -- Check the Dolphin version for compatibility: The module is not compatible with your version of Dolphin script
Maybe someone had a simular experience and can tell me, how to fix it.
Running in Dolphin 7.0.4
I have not found any info about the requirements. Please help!
|
You have two (3) choices...
edit the config.php file located in the modules/rayz/MODULE_NAME/install/config.php look for this
$aConfig = array( /** * Main Section. */ 'title' => 'RAYZ_MODULE_NAME', 'version' => '1.0.1', 'vendor' => 'Rayz', 'update_url' => '',
'compatible_with' => array( '7.0.0', '7.0.1', '7.0.2', '7.0.3' ), |
$aConfig = array( /** * Main Section. */ 'title' => 'RAYZ_MODULE_NAME', 'version' => '1.0.1', 'vendor' => 'Rayz', 'update_url' => '',
'compatible_with' => array( '7.0.0', '7.0.1', '7.0.2', '7.0.3',
'7.0.4',
),
|
or you can edit your header.inc.php in your /inc/header.inc.php
$site['ver'] = '7.0'; $site['build'] = '4'; $site['url'] = "http://yoursite.com/";
|
$site['ver'] = '7.0'; $site['build'] = '4';<change this number to the "compatible version you need.... $site['url'] = "http://yoursite.com/";
after installing module in question, make sure to change this setting back to the original..
|
ALWAYS make backup of your files you edit first!!
ManOfTeal.COM a Proud UNA site, six years running strong! |
or you can wait on the module creator to "update" their modules ManOfTeal.COM a Proud UNA site, six years running strong! |
|