well i wanted this hack that i went back to his old one here:
Code:
https://vborg.vbsupport.ru/showthread.php?s=&threadid=71256
Even though i'm not a coder

but a curious person to get things done and this happen to be easy to me so far:banana:
ok this is what i did to help everyone out and hope you can understand my chicken scratch as i have no sleep yet..
i open his module files and did everything manually created the php files and template seperated like the old days..
PHP Code:
<?php
// ++=========================================================================++
// || vBadvanced CMPS 2.1.0 ||
// || Random Clock Module By Stitch / Moya @ Vietsaga.com ||
// ++ ========================================================================++
//directory here (relative to script)
$foldername="clocks";
$path = 'c:/inetpub/wwww/foldername/forum/' . $foldername;
$urlswf=$vbulletin->options['bburl'] . '/' . $foldername;
$clock_name='';
$i = 0;
$swfDir = opendir ($path);
while ( $file = readdir( $swfDir ) )
{
//checks that file is an image
$file_type = strrchr( $file, "." );
$is_clock = eregi( "swf",$file_type );
if ( $file != '.' && $file != '..' && $is_clock )
{ $clocks[$i++] = $file; }
}
closedir ($swfDir);
srand( (double) microtime()*1000000 );
$clock_name = $urlswf . '/' . $clocks[rand( 0,sizeof( $clocks ) -1 )];
//ends script if no swf found
if ( $i == 0 )
{
die();
}
//okie spit out the whole thang
eval('$home["$mods[modid]"][\'content\'] = "' . fetch_template('adv_portal_clocks') . '";');
unset($clock_name);
?>
now after that as stated above name the template adv_portal_clocks
and follow his instructions
Code:
<tr>
<td class="alt2" align="center" width="100%">
<object width="150" height="150">
<param name="movie" value="$clock_name">
<embed src="$clock_name" width="150" height="150">
</embed>
</object>
</td>
</tr>
and import all .swf to forum directory in the clocks file that you were suppose to create and that's it also i had problem figuring out the path as i said not a coder

for those that don't know i used
Code:
/home/username/mysite.com/
yours will probably be different so go admin control panel and under php info everything you will need will be there.
I'M NOT TAKING CREDIT FOR ANY HACK ,THIS IS TO HELP MEMBERS OUT WITH THE ISSUE WITH THE MODULE NOT UPLOADING CORRECTLY AND HAD TO REVERT BACK TO OLD HACKING METHOD....:bunny:
edited; you can check it out on my site
http://www.puertotech.com