Icy Phoenix
Old Customizations - Activity Mod For Icy Phoenix
pepi [ Thu 26 Jul, 2007 02:58 ]
Post subject: Re: Activity Mod For Icy Phoenix
yes
Sir it's ok
Pepi
difus [ Sun 02 Sep, 2007 00:24 ]
Post subject: Re: Activity Mod For Icy Phoenix
it will be true to add ina tables to includes/functions_dbmtnc.php

Mighty Gorgon [ Sun 02 Sep, 2007 10:40 ]
Post subject: Re: Activity Mod For Icy Phoenix
it will be true to add ina tables to includes/functions_dbmtnc.php

Since Activity is an addon, I won't add those tables in default package.
But we may add instructions on how to add those tables into that file.

difus [ Sun 02 Sep, 2007 21:05 ]
Post subject: Re: Activity Mod For Icy Phoenix
install.txt
Mighty Gorgon [ Sun 09 Sep, 2007 01:18 ]
Post subject: Re: Activity Mod For Icy Phoenix
Thanks, I'll create a new package including also these instructions.
Vortex [ Sun 14 Oct, 2007 14:45 ]
Post subject: Re: Activity Mod For Icy Phoenix
Two fix to let works fine the "Challenge Page" and the "Hall Of Fame" (an error message was shown):
OPEN
amod/challenges.php
FIND
$template->set_filenames(array('body' => ACTIVITY_MOD_PATH . 'challenges_body.tpl'));
BEFORE ADD
include_once($phpbb_root_path . 'includes/functions_color_groups.' . $phpEx);
OPEN
amod/activity_hof.php
FIND
$page_title = $lang['hof_page_title'];
BEFORE ADD
include_once($phpbb_root_path . 'includes/functions_color_groups.' . $phpEx);
Thanks for you fix, Andrea
Note: The official package has not been fixed yet.
I found another bug in top scores and solved like you did
Fatal error: Call to undefined function color_group_colorize_name() in .../amod/activity_top_scores_search.php on line 44
OPEN
amod/activity_top_scores_search.php
FIND
$search = $_GET['user'];
if ($search)
{
$template->set_filenames(array('body' => ACTIVITY_MOD_PATH . 'activity_top_scores_search_body.tpl'));
BEFORE ADD
include_once($phpbb_root_path . 'includes/functions_color_groups.' . $phpEx);
Mighty Gorgon [ Sun 14 Oct, 2007 19:09 ]
Post subject: Re: Activity Mod For Icy Phoenix
This package won't be updated, because I'll release a new version compatible with latest IP when the new version will be out.
Vortex [ Sun 14 Oct, 2007 19:16 ]
Post subject: Re: Activity Mod For Icy Phoenix
This package won't be updated, because I'll release a new version compatible with latest IP when the new version will be out.
Oh... ok MG... I've worked on it all the day and found many little errors... too bad I don't have the knowledgements to fix that on my own

Mighty Gorgon [ Sun 14 Oct, 2007 19:19 ]
Post subject: Re: Activity Mod For Icy Phoenix
Most of them are already solved.
Try Activity @ mg.com to test.
Vortex [ Sun 14 Oct, 2007 19:29 ]
Post subject: Re: Activity Mod For Icy Phoenix
Most of them are already solved.
Try Activity @ mg.com to test.
I know... but I downloaded the package and I am testing it on my site... and still found some errors like those I've posted the fix for, above.
And now this, when you click on the best player trophies, there is a conflict with the color groups mod...
I know the error is here
/* Info for the person with the most trophies */
$q = "SELECT *
FROM ". USERS_TABLE ."
ORDER BY user_trophies DESC
LIMIT 0, 1";
$r = $db->sql_query($q);
$row = $db->sql_fetchrow($r);
$usersname = color_group_colorize_name($row['user_id']);
$usersid = $row['user_id'];
$userstrophies = $row['user_trophies'];
if ($usersid != ANONYMOUS)
$top_player1 = str_replace('%n%', "<a href='". append_sid("profile.$phpEx?mode=viewprofile&u=$usersid") ."' class='nav'>". $usersname ."</a>", $lang['info_box_top_trophy_holder1']);
else
$top_player1 = str_replace('%n%', $usersname, $lang['info_box_top_trophy_holder1']);
$top_player2 = str_replace('%t%', "<a href='". append_sid("activity.$phpEx?page=trophy_search&user=$usersname") ."' class='nav'>". $userstrophies ."</a>", $top_player1);
$top_player = $top_player2;
I know that the error is caused by the $usersname variable (the code generated contains html parsing that causes Ctracker to stop it) ... I saw you solved it on MG.com, can you just tell me how did you solved it?
Mighty Gorgon [ Sun 14 Oct, 2007 19:33 ]
Post subject: Re: Activity Mod For Icy Phoenix
Try to check the package in the beta version.
Vortex [ Mon 15 Oct, 2007 09:13 ]
Post subject: Re: Activity Mod For Icy Phoenix
I know the error is here
Quote:
/* Info for the person with the most trophies */
$q = "SELECT *
FROM ". USERS_TABLE ."
ORDER BY user_trophies DESC
LIMIT 0, 1";
$r = $db->sql_query($q);
$row = $db->sql_fetchrow($r);
$usersname = color_group_colorize_name($row['user_id']);
$usersid = $row['user_id'];
$userstrophies = $row['user_trophies'];
if ($usersid != ANONYMOUS)
$top_player1 = str_replace('%n%', "<a href='". append_sid("profile.$phpEx?mode=viewprofile&u=$usersid") ."' class='nav'>". $usersname ."</a>", $lang['info_box_top_trophy_holder1']);
else
$top_player1 = str_replace('%n%', $usersname, $lang['info_box_top_trophy_holder1']);
$top_player2 = str_replace('%t%', "<a href='". append_sid("activity.$phpEx?page=trophy_search&user=$usersname") ."' class='nav'>". $userstrophies ."</a>", $top_player1);
$top_player = $top_player2;[/code]
I know that the error is caused by the $usersname variable (the code generated contains html parsing that causes Ctracker to stop it) ... I saw you solved it on MG.com, can you just tell me how did you solved it?
Oh my God I feel so idiot... the error was the variable? Just create another one!
Quote:
/* Info for the person with the most trophies */
$q = "SELECT *
FROM ". USERS_TABLE ."
ORDER BY user_trophies DESC
LIMIT 0, 1";
$r = $db->sql_query($q);
$row = $db->sql_fetchrow($r);
$usersname = color_group_colorize_name($row['user_id']);
$clean_name = $row['username'];
$usersid = $row['user_id'];
$userstrophies = $row['user_trophies'];
if ($usersid != ANONYMOUS)
$top_player1 = str_replace('%n%', "<a href='". append_sid("profile.$phpEx?mode=viewprofile&u=$usersid") ."' class='nav'>". $usersname ."</a>", $lang['info_box_top_trophy_holder1']);
else
$top_player1 = str_replace('%n%', $usersname, $lang['info_box_top_trophy_holder1']);
$top_player2 = str_replace('%t%', "<a href='". append_sid("activity.$phpEx?page=trophy_search&user=$clean_name") ."' class='nav'>". $userstrophies ."</a>", $top_player1);
$top_player = $top_player2;
(I can't use the solution of the beta package because the color groups function is different and I think it wouldn't work on 1.1.0.15b )
Solved

Mighty Gorgon [ Tue 16 Oct, 2007 11:41 ]
Post subject: Re: Activity Mod For Icy Phoenix
Great!!!

Corporacion-Umbrella [ Mon 22 Oct, 2007 13:17 ]
Post subject: Re: Activity Mod For Icy Phoenix
I know that this mod is not supported, but i have a little problem.
Critical Error
Sorry, the games are currently offline until the admin upgrades/installs the current version. The current version is 1.1.0. Your version is Unknown.
I try to install and drop the cache, but nothing, and i don't know which upgrade choose.
Some counsel?
Thanks, and if don't give support, don't worry, I'll understand.
Mighty Gorgon [ Tue 23 Oct, 2007 22:58 ]
Post subject: Re: Activity Mod For Icy Phoenix
Did you go in ACP and installed Activity after having enabled the var in constants?
Corporacion-Umbrella [ Wed 24 Oct, 2007 10:31 ]
Post subject: Re: Activity Mod For Icy Phoenix
Solved MG, the problem is that i have to Install the Mon and after edit the files.
Thanks.
NBG [ Sun 16 Dec, 2007 18:45 ]
Post subject: Re: Activity Mod For Icy Phoenix
somebody have the translation for spanish??
ieio [ Mon 17 Dec, 2007 07:31 ]
Post subject: Re: Activity Mod For Icy Phoenix
i leave you some swf games, tested on IP: they can be added only as no scoring game type but they're funny

check this out
Gianni PB [ Mon 17 Dec, 2007 17:29 ]
Post subject: Re: Activity Mod For Icy Phoenix
I have read all topics....but i cannot find a solution... I have 2 problems:
- in statistics all game links are: activity..php (with 2 dots) and they don't work
- when an user wins a trophy, he has an error in includes/functions_calendar.php
Press 22 [ Mon 21 Jan, 2008 23:38 ]
Post subject: Re: Activity Mod For Icy Phoenix
I have a small error with games, it says "You do NOT have enough"
and Can't play, everything else works fine.

kapengbarako [ Tue 12 Feb, 2008 03:11 ]
Post subject: Re: Activity Mod For Icy Phoenix
how can we make the changes for the activity mod files for the recent IC update. the old colorgroups mod has been removed but still files in the Activity Mod have the functions of the old colorgroups. Thanks
Mighty Gorgon [ Thu 14 Feb, 2008 13:26 ]
Post subject: Re: Activity Mod For Icy Phoenix
I have read all topics....but i cannot find a solution... I have 2 problems:
- in statistics all game links are: activity..php (with 2 dots) and they don't work
- when an user wins a trophy, he has an error in includes/functions_calendar.php
Give me the exact link to check the first issue...
The second one I don't have... what setting did you enable?
I have a small error with games, it says "You do NOT have enough"
and Can't play, everything else works fine.

Set in ACP that you can play for free...
how can we make the changes for the activity mod files for the recent IC update. the old colorgroups mod has been removed but still files in the Activity Mod have the functions of the old colorgroups. Thanks
If you get the activity from the RC3 package it is fixed with latest color groups functions.
kapengbarako [ Fri 15 Feb, 2008 14:54 ]
Post subject: Re: Activity Mod For Icy Phoenix
I have read all topics....but i cannot find a solution... I have 2 problems:
- in statistics all game links are: activity..php (with 2 dots) and they don't work
- when an user wins a trophy, he has an error in includes/functions_calendar.php
Give me the exact link to check the first issue...
The second one I don't have... what setting did you enable?
I have a small error with games, it says "You do NOT have enough"
and Can't play, everything else works fine.

Set in ACP that you can play for free...
how can we make the changes for the activity mod files for the recent IC update. the old colorgroups mod has been removed but still files in the Activity Mod have the functions of the old colorgroups. Thanks
If you get the activity from the RC3 package it is fixed with latest color groups functions.
thank you for pointing that out.

Gianni PB [ Sat 16 Feb, 2008 11:56 ]
Post subject: Re: Activity Mod For Icy Phoenix
Mighty Gorgon [ Mon 18 Feb, 2008 22:42 ]
Post subject: Re: Activity Mod For Icy Phoenix
http://www.pugliabaila.it/activity.php
I cannot see the errors, please attach an image where I have to look at.

Gianni PB [ Tue 04 Mar, 2008 19:06 ]
Post subject: Re: Activity Mod For Icy Phoenix
http://www.pugliabaila.it/activity.php
I cannot see the errors, please attach an image where I have to look at.

http://www.pugliabaila.it/activity.php
these links have two dots:
Gianni PB [ Thu 06 Mar, 2008 11:24 ]
Post subject: Re: Activity Mod For Icy Phoenix
Thanks MG!
Now it works with the last Activity Mod Release (Activity Mod for Icy Phoenix 1.2.0.27)

pax [ Mon 11 May, 2009 10:50 ]
Post subject: Re: Activity Mod For Icy Phoenix
how modified the games?
exists a tutorial?
who converts me these games for activity mod?
pax [ Wed 13 May, 2009 13:20 ]
Post subject: Re: Activity Mod For Icy Phoenix
Nobody?
DWho [ Fri 15 May, 2009 10:09 ]
Post subject: Re: Activity Mod For Icy Phoenix
you are using games for the phpbb3 version of activity mod there will work but the scoring system will not work...
I have no idea how there are modifying the games if I find out or if anyone else knows... let me know and I will modify them to work with Ip activity mod

pax [ Mon 25 May, 2009 21:04 ]
Post subject: Re: Activity Mod For Icy Phoenix
DWho, there is a tutorial!
I am not successful...
DWho [ Mon 25 May, 2009 23:42 ]
Post subject: Re: Activity Mod For Icy Phoenix
Thanks I will have a look
