Icy Phoenix 1.2.18.45 Beta 1


Goto page Previous  1, 2, 3  Next

Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
Its cool. ;)

Profile PM  
Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
i have already install it with no problems at all.

i have to say that this is the most usefull and nicest forum i have ever seen.

this is based on phpbb2 and it's very nice than phpbb3 (original) .
i can't wait for the next one .

and something OFF THE RECORD
i hope the next phpbb (phpbb4 i syppose) to by based on ICY PHOENIX.
i think this is the better way fon them.

do your best MG (and all of you) to make it as soon as you can.

Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
This release is full utf8 character encoding?
And what is "English language files ... and in some cases updated to the new phpBB 3 format" ?

Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
I have'nt tried this yet, but is it possible to update an older version of icy to this new beta version without any data loss.

I have tried the stand alone beta and I am very impressed and would like to integrate it into my existing forum, probably a backup of it and not the original just in case something goes wrong.

Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
You are definitely right. Be sure to create a backup of all files and your database before you try to upgrade to the beta.

DO THIS AT YOUR OWN RISK!!!!

Here is how I upgraded to the beta:

1) Create backups of files/folders and database.
2) Upload and run install/install.php to upgrade database (and if you wish trying to automatically replace some constants in files)
3) Upload all files, but config.php
4) Edit config.php:

FIND:

Code: [Download] [Hide] [Select]
define('PHPBB_INSTALLED', true);


REPLACE WITH:

Code: [Download] [Hide] [Select]
define('IP_INSTALLED', true);

Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
Ver Sub Foros En Icy Phoenix 1.2.18.45 Beta 1

e intentado de poner comprecion full en el foro para que queden como sub foros ..sale bien cuando estoy desconectado pero cuando me conecto todo los sub foros se dividen

miren asi deje la configuracion
gxwzp19


cuando estoy desconectado se ve bien:asi quiero ke se vea


pq17dzpi



pero me conecto se expande y se ve mal



pq17dlt0

de antemano gracias a todos

Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
Please speak English only on this support forum.

Thanks 8)

Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
Thanks for the reply Chaotic I will give this a try.

Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
nickkkdon wrote: [View Post]
TheSteffen wrote: [View Post]

It is in CMS or directly cms_ads.php


thanks bro

one more problem when i m login admin panal my id automectic logoff and redirect to login page may time


mine does this as well, I can login as admin fine, but then I get logged off randomly

Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
what in new in this version?

Profile PM  
Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
You didn't read the first post?

Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
Not sure if I'm the only one with this problem, but every time I install, I have to edit the SQL. Seems that some of the TEXT statements have values, or are Default. Once I remove them, the install goes smoothly.

Afterwords, the ACP header is missing and I can't seem to do anything in the ACP. Also, I get randomly booted from the ACP as well.

Thanks for all the hard work MG!! I love IP and am trying to work the bugs out on my install (god knows it could be operator error :mrblue: )!

Profile PM  
Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
Hum.

I've an idea for the activity mod

In the install file ; you say :
Quote:
-----------------------------------
----[ OPEN ]-----------------------
-----------------------------------

includes/functions_dbmtnc.php

-----------------------------------
----[ FIND ]-----------------------
-----------------------------------

'jr_admin_users',

-----------------------------------
----[ ADD, BEFORE ]----------------
-----------------------------------

'ina_ban',
'ina_categories',
'ina_challenge_tracker',
'ina_challenge_users',
'ina_chat',
'ina_cheat_fix',
'ina_data',
'ina_favorites',
'ina_gamble',
'ina_gamble_in_progress',
'ina_games',
'ina_hall_of_fame',
'ina_last_game_played',
'ina_rating_votes',
'ina_scores',
'ina_sessions',
'ina_top_scores',
'ina_trophy_comments',


I've think you can do this :

Replace :
'jr_admin_users',

With :
'jr_admin_users',
);
if(defined('ACTIVITY_MOD'))
{
$tables += array(
'ina_ban',
'ina_categories',
'ina_challenge_tracker',
'ina_challenge_users',
'ina_chat',
'ina_cheat_fix',
'ina_data',
'ina_favorites',
'ina_gamble',
'ina_gamble_in_progress',
'ina_games',
'ina_hall_of_fame',
'ina_last_game_played',
'ina_rating_votes',
'ina_scores',
'ina_sessions',
'ina_top_scores',
'ina_trophy_comments',
);
}
$tables += array(
















And I've see that "/adm/admin_db_backup.php" is missing(404)






Very big error 0o
--Deleted error:
When I see the code ; with IE ; I can see :
Code: [Download] [Hide]
  1. <?  
  2. /**  
  3. *  
  4. * @package Icy Phoenix  
  5. * @version $Id$  
  6. * @copyright (c) 2008 Icy Phoenix  
  7. * @license http://opensource.org/licenses/GPL-license.php GNU Public License  
  8. *  
  9. */  
  10.  
  11. /**  
  12. *  
  13. * @Extra credits for this file  
  14. * aUsTiN-Inc 2003/5 (austin@phpbb-amod.com) - (http://phpbb-amod.com)  
  15. *  
  16. */  
  17.  
  18. // CTracker_Ignore: File checked by human  
  19. if (!defined('IN_ICYPHOENIX'))  
  20. {  
  21. die('Hacking Attempt');  
  22. }  
  23.  
  24. global $table_prefix, $board_config;  
  25.  
  26. include_once(IP_ROOT_PATH . 'language/lang_' . $board_config['default_lang'] . '/lang_activity.' . PHP_EXT);  
  27. include_once(IP_ROOT_PATH . 'language/lang_' . $board_config['default_lang'] . '/lang_activity_char.' . PHP_EXT);  
  28. include_once(IP_ROOT_PATH . ACTIVITY_MOD_PATH . 'includes/functions_amod_plus_char.' . PHP_EXT);  
  29. include_once(IP_ROOT_PATH . 'includes/functions_admin.' . PHP_EXT);  
  30.  
  31. $mem_limit = check_mem_limit();  
  32. @ini_set('memory_limit', $mem_limit);  
  33.  
  34. define('INA_BAN', $table_prefix . 'ina_ban');  
  35. define('INA_CATEGORY', $table_prefix . 'ina_categories');  
  36. define('INA_CHALLENGE', $table_prefix . 'ina_challenge_tracker');  
  37. define('INA_CHALLENGE_USERS', $table_prefix . 'ina_challenge_users');  
  38. define('INA_CHEAT', $table_prefix . 'ina_cheat_fix');  
  39. define('INA_DISABLE', $table_prefix . 'ina_hidden');  
  40. define('INA_GAMBLE', $table_prefix . 'ina_gamble');  
  41. define('INA_GAMBLE_GAMES', $table_prefix . 'ina_gamble_in_progress');  
  42. define('INA_LAST_GAME', $table_prefix . 'ina_last_game_played');  
  43. define('INA_SESSIONS', $table_prefix . 'ina_sessions');  
  44. define('INA_TROPHY', $table_prefix . 'ina_top_scores');  
  45. define('INA_TROPHY_COMMENTS', $table_prefix . 'ina_trophy_comments');  
  46. define('INA_RATINGS', $table_prefix . 'ina_rating_votes');  
  47. define('INA_FAVORITES', $table_prefix . 'ina_favorites');  
  48. define('INA_HOF', $table_prefix . 'ina_hall_of_fame');  
  49. define('INA_CHAT', $table_prefix . 'ina_chat'); 
[...]
Code: [Download] [Hide]
  1. }  
  2.  
  3. function Amod_Individual_Game_Time($plays, $time)  
  4. {  
  5. global $lang;  
  6. $i_hours = floor ($time / 3600);  
  7. $i_math = ($time - ($i_hours * 3600));  
  8. $i_minutes = floor ($i_math / 60);  
  9. $i_seconds = ($i_math - ($i_minutes * 60));  
  10. $played = $plays;  
  11. $hours = ($i_hours == 1) ? $lang['game_info_hour'] : $lang['game_info_hours'];  
  12. $mins = ($i_minutes == 1) ? $lang['game_info_min'] : $lang['game_info_mins'];  
  13. $secs = ($i_seconds == 1) ? $lang['game_info_sec'] : $lang['game_info_secs'];  
  14. $plays = ($plays == 1) ? $lang['game_info_time'] : $lang['game_info_times'];  
  15. $display = sprintf($lang['game_info_display'], number_format($played) .' '. $plays, ($i_hours < 1) ? '' : (number_format($i_hours) .' '. $hours), ($i_minutes < 1) ? '' : (number_format($i_minutes) .' '. $mins), (number_format($i_seconds) .' '. $secs) );  
  16. return ' '. $display;  
  17. }  
  18.  
  19. ?> 



EDIT Final: Activity is now disabled ; everything seems good


Re-EDIT: xD
So
When I enable ActivityM ; when I uncomment 'ACTIVITY_MOD_PATH' ; there is a lot of error(s ? xD).

Profile PM  
Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
Did the normal install instructions for the Activity MOD not work for you? Try backing up and following the exact instructions. I installed this on my LIVE board and the installation was a breeze.

Subject: Re: Icy Phoenix 1.2.18.45 Beta 1
Normal instruction ? I've do what is say in contrib/activity/install.txt (copy files ; edit 2files ; Go ACP and install tables)

Profile PM  
Goto page Previous  1, 2, 3  Next

Page 2 of 3


  
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events

   

This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.

Powered by Icy Phoenix based on phpBB
Generation Time: 0.972s (PHP: 2% SQL: 98%)
SQL queries: 17 - Debug Off - GZIP Enabled