MST - i tried, nothing.
For example, but i could post here some 10 that i tried.. Only shoutbox worked.
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]<?php
/*---------------------------------------------------+
| PHPFusion 7 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------+
| Coding by BadBoy aka GoogleDude
| Email: webmaster@googlecityfourms.com
| Support: http://www.googlecityforums.com
+----------------------------------------------------+
| Original Coding developed by CrappoMan
| email: simonpatterson@dsl.pipex.com
+----------------------------------------------------*/
if (!defined("IN_FUSION"
) { die("Access Denied"
; }
include INFUSIONS."videogallery/infusion_db.php";
include LOCALE.LOCALESET."videogallery.php";
// Infusion general information
$inf_title = $locale['500'];
$inf_description = $locale['501'];
$inf_version = "2.0";
$inf_developer = "BadBoy";
$inf_email = "webmaster@googlecityforums.com";
$inf_weburl = "http://www.googlecityforums.com";
$inf_folder = "videogallery"; // The folder in which the infusion resides.
// Delete any items not required here.
$inf_newtable[1] = DB_VIDEO_ALBUMS." (
album_id SMALLINT(5) UNSIGNED NOT NULL AUTO_INCREMENT,
album_title VARCHAR(100) NOT NULL DEFAULT '',
album_description TEXT NOT NULL,
album_thumb VARCHAR(100) NOT NULL DEFAULT '',
album_user SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
album_access SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
album_order SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
album_datestamp INT(10) UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (album_id)
) TYPE=MyISAM;";
$inf_newtable[2] = DB_VIDEOS." (
video_id SMALLINT(5) UNSIGNED NOT NULL AUTO_INCREMENT,
album_id SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
video_title VARCHAR(100) NOT NULL DEFAULT '',
video_description TEXT NOT NULL,
video_filename VARCHAR(100) NOT NULL DEFAULT '',
video_thumb1 VARCHAR(100) NOT NULL DEFAULT '',
video_thumb2 VARCHAR(100) NOT NULL DEFAULT '',
video_datestamp INT(10) UNSIGNED NOT NULL DEFAULT '0',
video_user SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
video_views SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
video_order SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
video_allow_comments tinyint(1) unsigned NOT NULL default '1',
video_allow_ratings tinyint(1) unsigned NOT NULL default '1',
video_video VARCHAR(200) NOT NULL DEFAULT '',
PRIMARY KEY (video_id)
) TYPE=MyISAM;";
$inf_droptable[1] = DB_VIDEO_ALBUMS;
$inf_droptable[2] = DB_VIDEOS;
$inf_insertdbrow[1] = "inf_settings ( name , value )VALUES ('video_albums', '1'
";
$inf_insertdbrow[2] = "inf_settings ( name , value )VALUES ('videos', '1'
";
$inf_insertdbrow[3] = "inf_settings ( name , value )VALUES ('videos_allow_comments', '1'
";
$inf_insertdbrow[4] = "inf_settings ( name , value )VALUES ('videos_allow_vote', '1'
";
$inf_deldbrow[1] = "inf_settings WHERE
name
= 'videos_albums' LIMIT 1;";
$inf_deldbrow[2] = "inf_settings WHERE
name
= 'videos_allow_comments' LIMIT 1;";
$inf_deldbrow[3] = "inf_settings WHERE
name
= 'videos_allow_vote' LIMIT 1;";
$inf_deldbrow[4] = "comments WHERE comment_type = 'V';";
$inf_deldbrow[5] = "ratings WHERE rating_type = 'V';";
$inf_adminpanel[1] = array(
"title" => $locale['500'],
"image" => "videogallery.jpg",
"panel" => "videoalbums.php",
"rights" => "VG"
);
?>[/syntaxhighlighter]