after some months of development I have decided to release a new beta to test the new features included in Icy Phoenix.
As I promised, no new "external" mods have been installed (only a couple of already included have been updated), only new things coded by me and some interesting phpBB 3 features are to be considered in the "what's new". Here is a small list...
What's New
- Groups system: the old color group mod has been dropped and a new system has been recoded to make groups management close to phpBB 3 way.
- CMS features: now it is possible to assign blocks on single pages, not only as global blocks, but as specific blocks.
- Save as draft: it is now possible to save posts and PM as drafts. The function is similar to phpBB 3 one, but much more simpler and with less features.
- Pages sessions: phpBB 3 has a much more flexible pages sessioning system, allowing better tracking of what users do. In Icy Phoenix I have partially replicated it, by modifying the way sessions work.
- Actions logs: I have coded a small and simple logging system which stores on files all the actions performed by users which alter in some way the DB. The logs are difficult to read, so it is disabled by default and the switch to enable it is hidden. If someone is interested in I may show how to enable it... but I won't help in reading it, because it is tough for who doesn't know PHP, and how requests are made.
- Extra stuff not enabled by default and not supported: since many of you requested integration of Cash and Activity, I have decided to integrate this in Icy Phoenix, and I will continue to keep them updated as the release is going on... but no support will be given with these extra features.
- Templates: some small adjustments have been applied to the templating system to make it a bit more flexible and some new templates designed by me will be available with this release.
- Extra debugging: phpBB 3 has a cool debugging feature which tells you the queries of each page and the time used for them. I've tried to enhance this feature a bit including some extra info and memory usage. This will be tremendously helpful for those webmasters who wants to understand the entity of Icy Phoenix charge and settings. Extra info about the usage of this feature, will follow.
- Small fixes and adjustments: several small fixes and adjustments have been applied to the package. I don't have a full list of them, but you will notice some changes somewhere... I hope you will appreciate it. Just some of them: resend registration, remove cookies, album rss, new thumbnails functions.
- Security fixes: unfortunately I've found during the dev phase some extra security holes which I have fixed the most risky in the available patch for 15b, but two of them which I was unsure, have been recoded differently to minimize infection risk.
Support
Regarding the support for beta, I'll quote phpBB beta release statement:
Acyd Burn wrote:During the beta phase a minimal level of support will be given. We will provide answers to general setup questions, configuration problems and support for determining common problems mostly related to bugs. We will not support modifications, custom code/style additions or any users using the beta packages within a live environment.
For some support questions or bug reports we may ask you to re-install the beta, clean tables in the database, purge data or other actions which are not advised to do in a live environment. So please be aware that you are still on your own if you run the beta in such an environment.
Beginning with the release candidates full support will be given.
As usual, no code changes will be released, and won't probably be released for any version in the future. This is because the package is quite huge and writing code changes requires much time: as I already said in the past, I prefer to focus my free time on developing the package instead of writing huge code changes that could be difficult to be applied. Trust me, in most cases it is quicker to replace old files with new ones and reapply eventually added mods (you should take note of the mods you have applied). My efforts will be dedicated to the upgrade procedures to allow you to upgrade your sites with the smallest unexpected issues.
Anyway for final release, I'll try to provide a changed files package and a small template changes guide... or at least a list with the changed files for those who have modded their site or released templates. I'll try to give translators a list of changed files as well.
- Overview
- Requirements
- Fresh Installation
- Upgrade From Icy Phoenix 1.1.0.15
Lang changes provided by brandsrus
Spoiler: [ Show ]
Spoiler: [ Hide ]
NEW FILES
language/lang_english/email/html/album_comment_notify.tpl
language/lang_english/email/txt/album_comment_notify.tpl
langauge/lang_english/lang_cash.php
DELETED FILES
language/lang_english/lang_color_groups.php
FILE CHANGES ARE BELOW
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/email/html/index.html
#
#-----[ FIND ]------------------------------------------
#
</body>
#
#-----[ AFTER, ADD ]------------------------------------
#
</html>
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/email/txt/index.html
#
#-----[ FIND ]------------------------------------------
#
</body>
#
#-----[ AFTER, ADD ]------------------------------------
#
</html>
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/email/index.html
#
#-----[ FIND ]------------------------------------------
#
</body>
#
#-----[ AFTER, ADD ]------------------------------------
#
</html>
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/bbcb_mg.js
#
#-----[ FIND ]------------------------------------------
#
s_spoil_help = 'Spoiler: [spoil]text[/spoil]';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
s_fade_help = 'Fade: [opacity]text[/opacity] or [opacity][img]http://image_url/[/img][/opacity]';
#
#-----[ AFTER, ADD ]------------------------------------
#
s_spoiler_help = 'Spoiler: [spoiler]text[/spoiler]';
s_cell_help = 'Cell: [cell]text[/cell]';
#
#-----[ FIND ]------------------------------------------
#
//var Spoiler = 0;
#
#-----[ REPLACE WITH]-----------------------------------
#
var Spoiler = 0;
var Cell = 0;
#
#-----[ FIND ]------------------------------------------
#
'[fade]','[/fade]',
#
#-----[ AFTER, ADD ]------------------------------------
#
'[spoiler]','[/spoiler]',
'[cell]','[/cell]',
#
#-----[ FIND ]------------------------------------------
#
function highlightmetasearch()
{
document.post.message.select(); document.post.message.focus();
}
function copymetasearch()
{
highlightmetasearch();
textRange = document.post.message.createTextRange();
textRange.execCommand("RemoveFormat");
textRange.execCommand("Copy");
// alert("Il messaggio è stato copiato negli appunti");
}
#
#-----[ REPLACE WITH]-----------------------------------
#
function copymetasearch()
{
document.post.message.select();
document.post.message.focus();
if ( (navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4) )
{
textRange = document.post.message.createTextRange();
textRange.execCommand("RemoveFormat");
textRange.execCommand("Copy");
// alert("Text copied to clipboard");
}
}
#
#-----[ FIND ]------------------------------------------
#
function BBCjustify()
#
#-----[ BEFORE ADD ]------------------------------------
#
function BBCspoiler()
{
var txtarea = document.post.message;
if ((clientVer >= 4) && is_ie && is_win)
{
theSelection = document.selection.createRange().text;
if (theSelection != '')
{
document.selection.createRange().text = "[spoiler]" + theSelection + "[/spoiler]";
document.post.message.focus();
return;
}
}
else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0))
{
mozInsert(txtarea, "[spoiler]", "[/spoiler]");
return;
}
if (Spoiler == 0)
{
ToAdd = "[spoiler]";
document.post.spoiler.src = bbcb_mg_img_path + "spoiler1.gif";
Spoiler = 1;
}
else
{
ToAdd = "[/spoiler]";
document.post.spoiler.src = bbcb_mg_img_path + "spoiler.gif";
Spoiler = 0;
}
PostWrite(ToAdd);
}
function BBCcell()
{
var txtarea = document.post.message;
if ((clientVer >= 4) && is_ie && is_win)
{
theSelection = document.selection.createRange().text;
if (theSelection != '')
{
document.selection.createRange().text = "[cell]" + theSelection + "[/cell]";
document.post.message.focus();
return;
}
}
else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0))
{
mozInsert(txtarea, "[cell]", "[/cell]");
return;
}
if (Cell == 0)
{
ToAdd = "[cell]";
document.post.cell.src = bbcb_mg_img_path + "cell1.gif";
Cell = 1;
}
else
{
ToAdd = "[/cell]";
document.post.cell.src = bbcb_mg_img_path + "cell.gif";
Cell = 0;
}
PostWrite(ToAdd);
}
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/db_generator.tpl
#
#-----[ FIND ]------------------------------------------
#
$userdata = session_pagestart($user_ip, PAGE_INDEX);
#
#-----[ REPLACE WITH]-----------------------------------
#
$userdata = session_pagestart($user_ip);
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_admin.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Permissions List'] = 'Permission List';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Main_index'] = 'Forum Index';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Registered'] = 'Registered';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['Self'] = 'Self';
#
#-----[ FIND ]------------------------------------------
#
$lang['Forum_REG'] = 'REG';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['Forum_SELF'] = 'SELF';
#
#-----[ FIND ]------------------------------------------
#
$lang['Permissions'] = 'Permissions';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Board_disable'] = 'Disable board';
$lang['Board_disable_explain'] = 'This will make the board unavailable to users. Administrators are able to access the Administration Panel while the board is disabled.';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Board_disable'] = 'Disable site';
$lang['Board_disable_explain'] = 'This will make the site unavailable to users. Administrators are able to access the Administration Panel while the site is disabled.';
#
#-----[ FIND ]------------------------------------------
#
$lang['Edit'] = 'Edit';
$lang['Delete'] = 'Delete';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Install'] = 'Install';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Value'] = 'Value';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Ban'] = 'Ban User';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['board_disable_message'] = 'Disable the message by default for the deactivation of the forum.';
$lang['board_disable_message_texte'] = 'Message which will appear when the forum is deactivated';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['board_disable_message'] = 'Display a message for the deactivation of the site.';
$lang['board_disable_message_texte'] = 'Message which will appear when the site is deactivated';
#
#-----[ FIND ]------------------------------------------
#
$lang['Links'] ='Links Admin';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Account_active'] = 'active users';
$lang['Account_inactive'] = 'inactive users';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Account_active'] = 'Active Users';
$lang['Account_inactive'] = 'Inactive Users';
#
#-----[ FIND ]------------------------------------------
#
$lang['Account_inactive'] = 'Inactive users';
$lang['Account_active'] = 'Active users';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Delete_link'] = 'Tick box to delete this autolink.';
#
#-----[ REPLACE WITH]-----------------------------------
#
//$lang['Delete_link'] = 'Tick box to delete this autolink.';
#
#-----[ FIND ]------------------------------------------
#
$lang['auth_view_download'] = 'Download';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['auth_view_download'] = 'Downloads';
#
#-----[ FIND ]------------------------------------------
#
$lang['Post_count_explain'] = 'Here you can edit the post count of this user.';
$lang['Modify_post_counts'] = 'Modify User's Post Count';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Forum_Wordgraph'] = 'Forum Wordgraph';
$lang['Forum_Wordgraph_Explain'] = 'This feature will enable a forum based wordgraph at bottom of each forum';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Forum_Wordgraph'] = 'Forum Tags';
$lang['Forum_Wordgraph_Explain'] = 'This feature will enable a forum based tags table at bottom of each forum';
#
#-----[ FIND ]------------------------------------------
#
$lang['Sort_order'] = 'Order';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['GD_Version'] = 'Version:';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['All_Forums'] = 'All Forums';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Delete'] = 'Delete';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Nivisec_Com'] = 'Nivisec.com';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Delete'] = 'Delete';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Version'] = 'Version';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Affected_Rows'] = '%d known entries removed<br />';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Links'] = 'Links Manage';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Links'] = 'Links Management';
#
#-----[ FIND ]------------------------------------------
#
$lang['Preview'] = 'Preview Logo';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Preview'] = 'Preview';
#
#-----[ FIND ]------------------------------------------
#
$lang['MG_SW_REFERRERS_Explain'] = 'This option allows to disable Referrers feature (this saves SQL space).';
#
#-----[ AFTER, ADD ]------------------------------------
#
// Icy Phoenix - BUILD 016
$lang['group_rank'] = 'Rank';
$lang['group_color'] = 'Color';
$lang['group_legend'] = 'Show in legend';
$lang['group_legend_short'] = 'Legend';
$lang['group_main'] = 'Main group';
$lang['group_members'] = 'Members';
$lang['group_update'] = 'Apply Changes';
/* lang_color_groups.php - BEGIN */
$lang['Color_Groups'] = 'Color Groups';
$lang['Manage_Color_Groups'] = 'Manage Color Groups';
$lang['Add_New_Group'] = 'Add New Group';
$lang['Color'] = 'Color';
$lang['User_Count'] = 'User Count';
$lang['Color_List'] = 'Color Name List:';
$lang['Group_Name'] = 'Group Name';
$lang['Define_Users'] = 'Define Users';
$lang['Color_Group_User_List'] = 'Color Group User List';
$lang['Options'] = 'Options';
$lang['Example'] = 'Example';
$lang['User_List'] = 'Full User List';
$lang['Unassigned_User_List'] = 'Users With No Group';
$lang['Assigned_User_List'] = 'Users With A Group';
$lang['Add_Arrow'] = 'Add To List';
$lang['Update'] = 'Update';
$lang['Updated_Group'] = 'Updated Group User List<br />';
$lang['Deleted_Group'] = 'Deleted Specified Group. All users that were in it have been reset to no group membership<br />';
$lang['Hide'] = 'Hide';
$lang['Un-hide'] = 'Un-hide';
$lang['Move_Up'] = 'Move Up';
$lang['Move_Down'] = 'Move Down';
$lang['Group_Hidden'] = 'Group Hidden<br />';
$lang['Group_Unhidden'] = 'Group Un-hidden<br />';
$lang['Groups_Updated'] = 'Group changes have been updated<br />';
$lang['Moved_Group'] = 'Moved group order<br />';
//Descriptions
$lang['Manage_Color_Groups_Desc'] = 'Update groups, add a new group, or manage the users assigned to a particular color group.<br />Groups that you choose to "Hide" will not show up on the main index list.';
$lang['Color_Group_User_List_Desc'] = 'Add or remove users to a specified color group.';
//Errors
$lang['Error_Group_Table'] = 'Error querying the color groups table.';
$lang['Error_Font_Color'] = '<b><u>Warning:</b></u> The specified font color appears to be invalid!';
$lang['Color_Ok'] = 'The specified font color appears to be valid.';
$lang['No_Groups_Exist'] = 'No groups exist.';
$lang['Error_Users_Table'] = 'Error querying the users table.';
$lang['Invalid_Group_Add'] = '%s is an invalid or duplicate group name.<br />';
//Dynamic
$lang['Group_Updated'] = 'Updated Color Group %s<br />';
$lang['Editing_Group'] = 'Currently editing the user list for %s.';
$lang['Invalid_User'] = '%s is an invalid username, skipping<br />';
$lang['Invalid_Order_Num'] = '%s contained an invalid order number, but it has been fixed. Please try your move up/down again.';
//New for 1.2.0
$lang['Users_List'] = 'Users List';
$lang['Groups_List'] = 'User Groups List';
$lang['List_Info'] = '<b>Notes</b>: <ul><li>Hold CTRL when clicking to select multiple names. <li>If a user belongs to a user group, and is added to a specific color group, the color group that contains the user will be used; not the one the user group belongs to. <li>The list names are formated as NAME (CURRENT_COLOR_GROUP). There will be no (CURRENT_COLOR_GROUP) if the entry doesn't belong to one. <li>If a user is a member of 2 or more user groups, the highest ranking color group will be assigned (you order their appearance on the main page).</ul>';
/* lang_color_groups.php - END */
// Icy Phoenix - BUILD 018
$lang['MG_SW_ShowSocialBookmarks'] = 'Social Bookmarks';
$lang['MG_SW_ShowSocialBookmarks_Explain'] = 'Show Social Bookmarks section when viewing topics';
$lang['MG_SW_ShowForumOnline'] = 'Show Users Online In Forums';
$lang['MG_SW_ShowForumOnline_Explain'] = 'This will enable online users counter for each forum on index';
// Icy Phoenix - BUILD 020
$lang['MG_SW_AllowDrafts'] = 'Allow Drafts';
$lang['MG_SW_AllowDrafts_Explain'] = 'Allow users to save posts as drafts';
#
#-----[ FIND ]------------------------------------------
#
$lang['110_Manage'] = 'Manage'; // admin_users.php
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['113_Permissions_Users'] = 'Permissions'; // admin_ug_auth.php
$lang['116_CMS_Permissions_Users'] = 'CMS Permissions'; // admin_cms_auth.php
#
#-----[ FIND ]------------------------------------------
#
$lang['230_Permissions_Users'] = 'Permissions'; // admin_ug_auth.php
$lang['235_CMS_Permissions_Users'] = 'CMS Permissions'; // admin_cms_auth.php
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_album_admin.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Child_Category_Moved'] = 'Selected category had child categories. The child categories got moved to the <B>%s</B> category.';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Child_Category_Moved'] = 'Selected category had child categories. The child categories got moved to the <b>%s</b> category.';
#
#-----[ FIND ]------------------------------------------
#
$lang['Watermark_explain'] = 'You can specify the watermark file to be used in this category. Insert the watermark file path respect to your phpBB root (i.e.: <b>album_mod/mark_fap.png</b>). The watermark will be applied only if Watermark feature is on.';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['Cat_Pics_Synchronize'] = 'Sync Pics Counter';
$lang['Cat_Pics_Synchronized'] = 'All pictures counter have been synchronized.';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_album_main.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Upload_Pics'] = 'Upload Pics';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['JUpload_Pic'] = 'Upload Multiple Pictures with Jupload';
#
#-----[ FIND ]------------------------------------------
#
$lang['Approved'] = 'Approved';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['Copy'] = 'Copy';
#
#-----[ FIND ]------------------------------------------
#
?>
#
#-----[ BEFORE ADD ]------------------------------------
#
// Pic watch
$lang['No_longer_watching_comment'] = 'You are no longer watching this pic for comments';
$lang['Watching_comment'] = 'You are now watching this pic for comments';
$lang['Pic_comment_notification'] = 'Album Comment Notification';
$lang['Pic_comment_watch_checkbox'] = 'Check box to be notified on pic comments:';
$lang['Watch_pic'] = 'Watch this pic for comments';
$lang['Unwatch_pic'] = 'Stop watching this pic for comments';
$lang['Click_return_pic'] = 'Click %shere%s to return to pic';
$lang['Pic_RDF'] = 'RSS Feed 1.0';
$lang['Pic_RSS'] = 'RSS Feed 2.0';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_bbcb_mg.php
#
#-----[ FIND ]------------------------------------------
#
$lang['bbcb_mg_fade'] = 'Transparency';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['bbcb_mg_spoiler'] = 'Spoiler';
$lang['bbcb_mg_cell'] = 'Cell';
#
#-----[ FIND ]------------------------------------------
#
$lang['s_spoil_help'] = 'Spoiler: [spoil]text[/spoil]';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['s_fade_help'] = 'Fade: [fade]text[/fade] or [fade][img]http://image_url/[/img][/fade]';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['s_spoiler_help'] = 'Spoiler: [spoiler]text[/spoiler]';
$lang['s_cell_help'] = 'Cell: [cell]text[/cell]';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_bbc_tags.php
#
#-----[ FIND ]------------------------------------------
#
$lang['BBC_Overview'] = '
<ul>
<li><span style="color: #00AA00;"><b>What is Icy Phoenix?</b></span><br /></li>
<li><span style="color: #0000AA;">Icy Phoenix is a CMS based on phpBB (a fully scalable and highly customisable open-source Bulletin Board package PHP based) plus many modifications and code integrations which add flexibility to the whole package. The official home page for phpBB is <a class="post-url" href="http://www.phpbb.com/" target="_blank">www.phpbb.com</a>. Icy Phoenix has some features originally developed for <acronym title="phpBB eXpertS">phpBB XS Project</acronym> which has been founded by Bicet and then developed by both Bicet and Mighty Gorgon. Icy Phoenix has been created by <a class="post-url" href="http://www.mightygorgon.com/" target="_blank">Mighty Gorgon</a> after he left the <acronym title="phpBB eXpertS">phpBB XS Project</acronym>.</span><br /><br /></li>
<li><span style="color: #00AA00;"><b>What are the main features of Icy Phoenix?</b></span><br /></li>
<li>
<span style="color: #0000AA;">Icy Phoenix has many features, most of them are listed in the <a class="post-url" href="http://www.icyphoenix.com/credits.php">Credits</a> on this site, but the main ones are:</span><br />
<ul>
<li><span style="color: #0000AA;">phpBB bulletin board and permission system</span><br /></li>
<li><span style="color: #0000AA;">CMS features allowing the creation of new pages and blocks (some of the functions are based on the abandoned IM Portal project)</span><br /></li>
<li><span style="color: #0000AA;">Overall template integration among all site sections</span><br /></li>
<li><span style="color: #0000AA;">Many ready to use features: Photo Gallery, Downloads, Knowledge Base, Links, Chat...</span><br /></li>
<li><span style="color: #0000AA;">Multilanguage and multitemplate ready</span><br /></li>
<li><span style="color: #0000AA;">Almost 100% XHTML and CSS W3C compliant</span><br /></li>
<li><span style="color: #0000AA;">...and many others...</span><br /></li>
</ul>
<br /><br />
</li>
<li><span style="color: #00AA00;"><b>Is Icy Phoenix supported for bugs, security issues, improvements?</b></span><br /></li>
<li><span style="color: #0000AA;">Icy Phoenix is an open source project. As many open source project it is developed by people using their free time. At the moment there are several persons in the staff willing to help and to contribute to this project. We hope the community continue to grow and being able to provide all the necessary support to all the users who may need help.</span><br /><br /></li>
<li><span style="color: #00AA00;"><b>Is Icy Phoenix easy to install and upgrade from other platforms?</b></span><br /></li>
<li><span style="color: #0000AA;">Icy Phoenix has its own setup procedure which guides the user through the steps of the setup process. An upgrading file is provided to upgrade the package from standard phpBB and <acronym title="Icy Phoenix Ancestor">phpBB XS</acronym>. Hopefully an upgrade procedure from any platform will be written in the future: at the moment the only way to upgrade from another premodded is by downgrading it to phpBB (has been written a procedure for this) and then run the provided upgrade procedure.</span><br /><br /></li>
<li><span style="color: #00AA00;"><b>Does Icy Phoenix have many templates?</b></span><br /></li>
<li><span style="color: #0000AA;">Yes, at the moment there are some free templates (some of them with multicolor variations) and we are working to create new ones. If you are interested to new templates you should regularly check the <a class="post-url" href="http://www.icyphoenix.com/" target="_blank">support forum</a>.</span><br /><br /></li>
<li><span style="color: #00AA00;"><b>Is Icy Phoenix multilanguage?</b></span><br /></li>
<li><span style="color: #0000AA;">English is the main language of Icy Phoenix, but it has been translated into other languages (alphabetical order): Catalan, Dutch, Galego, German, Italian, Serbian, Spanish... and more to come! If you don't find your language listed here, please ask to the <a class="post-url" href="http://www.icyphoenix.com/" target="_blank">support forum</a>, maybe someone else is working on the translation you need and you may join the translation team to give your contribution.</span><br /><br /></li>
<li><span style="color: #00AA00;"><b>Will Icy Phoenix be upgraded to phpBB 3?</b></span><br /></li>
<li><span style="color: #0000AA;">At the moment there is no plan to upgrade Icy Phoenix to phpBB 3. There are several reasons for this. Of course when phpBB 3 will be out for a while, things may change...</span><br /><br /></li>
<li><span style="color: #00AA00;"><b>May I join Icy Phoenix Project?</b></span><br /></li>
<li><span style="color: #0000AA;">Of course. Icy Phoenix is an open source project, and anyone who is willing to give his own contribution on a stable basis then may apply to join the Team.</span><br /><br /></li>
</ul>
';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['BBC_Overview'] = '
<ul>
<li><span class="topic_ann"><b>What is Icy Phoenix?</b></span><br /></li>
<li><span class="topic_imp">Icy Phoenix is a CMS based on phpBB (a fully scalable and highly customisable open-source Bulletin Board package PHP based) plus many modifications and code integrations which add flexibility to the whole package. The official home page for phpBB is <a class="post-url" href="http://www.phpbb.com/" target="_blank">www.phpbb.com</a>. Icy Phoenix has some features originally developed for <acronym title="phpBB eXpertS">phpBB XS Project</acronym> which has been founded by Bicet and then developed by both Bicet and Mighty Gorgon. Icy Phoenix has been created by <a class="post-url" href="http://www.mightygorgon.com/" target="_blank">Mighty Gorgon</a> after he left the <acronym title="phpBB eXpertS">phpBB XS Project</acronym>.</span><br /><br /></li>
<li><span class="topic_ann"><b>What are the main features of Icy Phoenix?</b></span><br /></li>
<li>
<span class="topic_imp">Icy Phoenix has many features, most of them are listed in the <a class="post-url" href="http://www.icyphoenix.com/credits.php">Credits</a> on this site, but the main ones are:</span><br />
<ul>
<li><span class="topic_imp">phpBB bulletin board and permission system</span><br /></li>
<li><span class="topic_imp">CMS features allowing the creation of new pages and blocks (some of the functions are based on the abandoned IM Portal project)</span><br /></li>
<li><span class="topic_imp">Overall template integration among all site sections</span><br /></li>
<li><span class="topic_imp">Many ready to use features: Photo Gallery, Downloads, Knowledge Base, Links, Chat...</span><br /></li>
<li><span class="topic_imp">Multilanguage and multitemplate ready</span><br /></li>
<li><span class="topic_imp">Almost 100% XHTML and CSS W3C compliant</span><br /></li>
<li><span class="topic_imp">...and many others...</span><br /></li>
</ul>
<br /><br />
</li>
<li><span class="topic_ann"><b>Is Icy Phoenix supported for bugs, security issues, improvements?</b></span><br /></li>
<li><span class="topic_imp">Icy Phoenix is an open source project. As many open source project it is developed by people using their free time. At the moment there are several persons in the staff willing to help and to contribute to this project. We hope the community continue to grow and being able to provide all the necessary support to all the users who may need help.</span><br /><br /></li>
<li><span class="topic_ann"><b>Is Icy Phoenix easy to install and upgrade from other platforms?</b></span><br /></li>
<li><span class="topic_imp">Icy Phoenix has its own setup procedure which guides the user through the steps of the setup process. An upgrading file is provided to upgrade the package from standard phpBB and <acronym title="Icy Phoenix Ancestor">phpBB XS</acronym>. Hopefully an upgrade procedure from any platform will be written in the future: at the moment the only way to upgrade from another premodded is by downgrading it to phpBB (has been written a procedure for this) and then run the provided upgrade procedure.</span><br /><br /></li>
<li><span class="topic_ann"><b>Does Icy Phoenix have many templates?</b></span><br /></li>
<li><span class="topic_imp">Yes, at the moment there are some free templates (some of them with multicolor variations) and we are working to create new ones. If you are interested to new templates you should regularly check the <a class="post-url" href="http://www.icyphoenix.com/" target="_blank">support forum</a>.</span><br /><br /></li>
<li><span class="topic_ann"><b>Is Icy Phoenix multilanguage?</b></span><br /></li>
<li><span class="topic_imp">English is the main language of Icy Phoenix, but it has been translated into other languages (alphabetical order): Catalan, Dutch, Galego, German, Italian, Serbian, Spanish... and more to come! If you don't find your language listed here, please ask to the <a class="post-url" href="http://www.icyphoenix.com/" target="_blank">support forum</a>, maybe someone else is working on the translation you need and you may join the translation team to give your contribution.</span><br /><br /></li>
<li><span class="topic_ann"><b>Will Icy Phoenix be upgraded to phpBB 3?</b></span><br /></li>
<li><span class="topic_imp">At the moment there is no plan to upgrade Icy Phoenix to phpBB 3. There are several reasons for this. Of course when phpBB 3 will be out for a while, things may change...</span><br /><br /></li>
<li><span class="topic_ann"><b>May I join Icy Phoenix Project?</b></span><br /></li>
<li><span class="topic_imp">Of course. Icy Phoenix is an open source project, and anyone who is willing to give his own contribution on a stable basis then may apply to join the Team.</span><br /><br /></li>
</ul>
';
#
#-----[ FIND ]------------------------------------------
#
<li><b>files/album/cache/</b></li>
#
#-----[ AFTER, ADD ]------------------------------------
#
<li><b>files/album/jupload/</b></li>
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_blocks.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Title_wordgraph'] = 'Wordgraph';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Title_wordgraph'] = 'Tags';
#
#-----[ FIND ]------------------------------------------
#
$lang['cms_var_md_posts_show_portal_explain'] = 'Select all topics or only marked with "Show in Portal"';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['cms_var_md_posts_show_portal_explain'] = 'Select all topics or only marked with "Show in Home Page"';
#
#-----[ FIND ]------------------------------------------
#
$lang['cms_var_md_wordgraph_count'] = 'Enable Word Counts';
$lang['cms_var_md_wordgraph_count_explain'] = 'Display the total number of words next to each word';
$lang['cms_var_md_wordgraph_words'] = 'Maximum Words';
$lang['cms_var_md_wordgraph_words_explain'] = 'Select the maximum number of words to display';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['cms_var_md_wordgraph_count'] = 'Enable Tags Counts';
$lang['cms_var_md_wordgraph_count_explain'] = 'Display the total number of tags next to each word';
$lang['cms_var_md_wordgraph_words'] = 'Maximum Tags';
$lang['cms_var_md_wordgraph_words_explain'] = 'Select the maximum number of tags to display';
#
#-----[ FIND ]------------------------------------------
#
$lang['cms_option_Show_In_Portal'] = 'Show In Portal';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['cms_option_Show_In_Portal'] = 'Show in Home Page';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_cback_ctracker.php
#
#-----[ FIND ]------------------------------------------
#
$lang['ctracker_settings_on'] = 'Activate';
$lang['ctracker_settings_off'] = 'Deactivate';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['ctracker_settings_on'] = 'Enabled';
$lang['ctracker_settings_off'] = 'Disabled';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_cms.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Layout_View'] = 'View by';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Layout_View'] = 'View permissions';
$lang['Layout_Edit_Perm'] = 'Edit permissions';
#
#-----[ FIND ]------------------------------------------
#
$lang['Choose_Layout'] = 'Choose site page';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Standard_Pages'] = 'Standard Pages';
$lang['Custom_Pages'] = 'Customized Pages';
$lang['Choose_Layout'] = 'Choose Page';
#
#-----[ FIND ]------------------------------------------
#
$lang['cms_block_wordgraph'] = 'Wordgraph';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['cms_block_wordgraph'] = 'Tags';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_dbmtnc.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Version_of_board'] = 'Version of the Board';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Version_of_board'] = 'Version of Icy Phoenix';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_jr_admin.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Color_Group'] = 'Color Group';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Board_disable'] = 'Sorry, but this board is currently unavailable. Please try again later.';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Board_disabled'] = 'Sorry, but this site is currently unavailable. Please try again later.';
#
#-----[ FIND ]------------------------------------------
#
$lang['Rules_reply_can'] = 'You <b>can</b> reply to topics in this forum';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['Rules_reply_can_own'] = 'You <b>can</b> reply to your topics in this forum';
#
#-----[ FIND ]------------------------------------------
#
$lang['Auth_Registered_Users'] = '<b>registered users</b>';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['Auth_Self_Users'] = '<b>specific users</b>';
#
#-----[ FIND ]------------------------------------------
#
$lang['Viewing_HACKSLIST'] = 'Viewing Hacks List';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Viewing_HACKSLIST'] = 'Viewing credits';
#
#-----[ FIND ]------------------------------------------
#
$lang['Viewing_priv_msgs'] = 'Viewing Private Messages';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Viewing_priv_msgs'] = 'Viewing private messages';
#
#-----[ FIND ]------------------------------------------
#
$lang['Birthday_greeting_today'] = 'We would like to wish you congratulatons on reaching %s years old today.<br /><br /> The Management';//%s is substituted with the users age
$lang['Birthday_greeting_prev'] = 'We would like to give you a belated congratulatons for becoming %s years old on the %s.<br /><br /> The Management';//%s is substituted with the users age, and birthday
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Birthday_greeting_today'] = 'We would like to wish you congratulations on reaching %s years old today.<br /><br /> ';//%s is substituted with the users age
$lang['Birthday_greeting_prev'] = 'We would like to give you a belated congratulations for becoming %s years old on the %s.<br /><br /> ';//%s is substituted with the users age, and birthday
#
#-----[ FIND ]------------------------------------------
#
$lang['Users_today_total'] = 'In total <b>%d</b> user have visited this site today: ';
$lang['User_today_total'] = 'In total <b>%d</b> users have visited this site today: ';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Users_today_total'] = 'In total <b>%d</b> users have visited this site today: ';
$lang['User_today_total'] = 'In total <b>%d</b> user have visited this site today: ';
#
#-----[ FIND ]------------------------------------------
#
$lang['Full_Version'] = 'Full Version';
#
#-----[ REPLACE WITH]-----------------------------------
#
//$lang['Full_Version'] = 'Full Version';
$lang['Full_Version'] = 'This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.';
#
#-----[ FIND ]------------------------------------------
#
$lang['Recent_wrong_mode'] = 'You´ve selected a wrong mode.';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Recent_wrong_mode'] = 'You have selected a wrong mode.';
#
#-----[ FIND ]------------------------------------------
#
$lang['Version_of_board'] = 'Version of <a href="http://www.phpbb.com">phpbb</a>';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Version_of_ip'] = 'Version of <a href="http://www.icyphoenix.com/">Icy Phoenix</a>';
$lang['Version_of_board'] = 'Version of <a href="http://www.phpbb.com">phpBB</a>';
#
#-----[ FIND ]------------------------------------------
#
$lang['Show_In_Portal'] = 'Show in portal';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Show_In_Portal'] = 'Show in Home Page';
#
#-----[ FIND ]------------------------------------------
#
$lang['No_Bookmarks'] = 'You do not have set a bookmark';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['No_Bookmarks'] = 'You do not have any bookmark set';
#
#-----[ FIND ]------------------------------------------
#
$lang['Wordgraph'] = 'Wordgraph';
$lang['Viewing_wordgraph'] = 'Viewing Wordgraph';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Wordgraph'] = 'Tags';
$lang['Viewing_wordgraph'] = 'Viewing Tags';
#
#-----[ FIND ]------------------------------------------
#
$lang['Trohpy'] = 'Game Trophies';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['quick_links_games'] = 'Games Menu';
#
#-----[ FIND ]------------------------------------------
#
$lang['Watched_Topics_EXPLAIN'] = 'A list of all the topics you are watching';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['WATCHED_TOPICS_EXPLAIN'] = 'A list of all the topics you are watching';
#
#-----[ FIND ]------------------------------------------
#
$lang['DIGESTS_EXPLAIN'] = 'Digests are periodical email which are sent automatically with an excerpt of the new messages posted in the forum';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['DRAFTS_EXPLAIN'] = 'Manage your Drafts';
#
#-----[ FIND ]------------------------------------------
#
//$lang[''] = '';
#
#-----[ BEFORE ADD]-------------------------------------
#
// Resend Activation - BEGIN
$lang['Resend_activation_email'] = 'Resend activation email';
$lang['Invalid_activation'] = 'User account activation can only be performed by administrators.';
$lang['No_actkey'] = 'There is no activation key for your account. Please contact the board administrator for more information.';
$lang['Send_actmail_flood_error'] = 'You cannot make another request so soon after your last one; please try again in a short while.';
$lang['Resend_activation_email_done'] = 'The activation e-mail has been sent. Please check your email for further information.';
// Resend Activation - END
$lang['Bots_Group'] = 'Bots';
$lang['Bots_Color'] = 'Bots Color';
$lang['Active_Users_Group'] = 'Active Users';
$lang['Active_Users_Color'] = 'Active Users Color';
$lang['Group_Default_Membership'] = 'Default Group';
$lang['Group_Default_Membership_Explain'] = 'Choose the default group for user, to assign rank and color.';
$lang['User_Color'] = 'User Color';
$lang['User_Color_Explain'] = 'If you specify a color for this user this will be overwritten by the default group color if you specify one group in the box above. Use the hex code without <b>#</b> example: ff0000 is the code for RED.';
$lang['No_Groups_Membership'] = 'No Membership';
$lang['No_Default_Group'] = 'No Default Group';
$lang['Group_members_updated'] = 'Successfully updated group members.';
$lang['Colorize_All'] = 'Colorize All Members';
$lang['Colorize_Selected'] = 'Colorize Selected';
$lang['CompanyWho'] = 'The Company';
$lang['CompanyWhere'] = 'How To Reach Us';
$lang['CompanyServices'] = 'Services';
$lang['CompanyProducts'] = 'Products';
$lang['ShareThisTopic'] = 'Share this topic';
$lang['Remove_cookies'] = 'Remove Cookies set by this site';
$lang['Cookies_deleted'] = 'All cookies have been deleted. You are now logged out.<br />To finalize deletion, you must close your browser now.';
$lang['Delete_cookies'] = 'Delete Cookies';
$lang['cookies_confirm'] = 'Are you you sure you want to delete all cookies set by this site?<br /><br />This action will also log you out.';
$lang['CustomIcy'] = 'CustomIcy';
$lang['Drafts'] = 'Drafts';
$lang['Drafts_Action'] = 'Action';
$lang['Drafts_Save'] = 'Save';
$lang['Drafts_Load'] = 'Load';
$lang['Drafts_Saved'] = 'This Draft has been saved';
$lang['Drafts_Loaded'] = 'Draft loaded';
$lang['Drafts_No_Drafts'] = 'No drafts saved';
$lang['Drafts_Delete_Sel'] = 'Delete selected';
$lang['Drafts_Save_Question'] = '<br /><br />Are you sure you want to save this message as draft?<br /><br />Please note that only message body will be saved while all other settings will be discarded.';
$lang['Drafts_Delete_Question'] = '<br /><br />Are you sure you want to delete selected drafts?';
$lang['Drafts_Type'] = 'Draft Type';
$lang['Drafts_Subject'] = 'Draft Subject';
$lang['Drafts_NT'] = 'New topic';
$lang['Drafts_NM'] = 'Reply';
$lang['Drafts_NPM'] = 'Private Message';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main_link.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Links_Preview'] = 'Preview Logo';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Links_Preview'] = 'Preview';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main_settings.php
#
#-----[ FIND ]------------------------------------------
#
$lang['DATE_FORMAT_MG'] = 'Y/m/d - H:i';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['DATE_FORMAT_BIRTHDAY'] = 'd F Y';
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
language/lang_english/email/html/album_comment_notify.tpl
language/lang_english/email/txt/album_comment_notify.tpl
langauge/lang_english/lang_cash.php
DELETED FILES
language/lang_english/lang_color_groups.php
FILE CHANGES ARE BELOW
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/email/html/index.html
#
#-----[ FIND ]------------------------------------------
#
</body>
#
#-----[ AFTER, ADD ]------------------------------------
#
</html>
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/email/txt/index.html
#
#-----[ FIND ]------------------------------------------
#
</body>
#
#-----[ AFTER, ADD ]------------------------------------
#
</html>
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/email/index.html
#
#-----[ FIND ]------------------------------------------
#
</body>
#
#-----[ AFTER, ADD ]------------------------------------
#
</html>
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/bbcb_mg.js
#
#-----[ FIND ]------------------------------------------
#
s_spoil_help = 'Spoiler: [spoil]text[/spoil]';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
s_fade_help = 'Fade: [opacity]text[/opacity] or [opacity][img]http://image_url/[/img][/opacity]';
#
#-----[ AFTER, ADD ]------------------------------------
#
s_spoiler_help = 'Spoiler: [spoiler]text[/spoiler]';
s_cell_help = 'Cell: [cell]text[/cell]';
#
#-----[ FIND ]------------------------------------------
#
//var Spoiler = 0;
#
#-----[ REPLACE WITH]-----------------------------------
#
var Spoiler = 0;
var Cell = 0;
#
#-----[ FIND ]------------------------------------------
#
'[fade]','[/fade]',
#
#-----[ AFTER, ADD ]------------------------------------
#
'[spoiler]','[/spoiler]',
'[cell]','[/cell]',
#
#-----[ FIND ]------------------------------------------
#
function highlightmetasearch()
{
document.post.message.select(); document.post.message.focus();
}
function copymetasearch()
{
highlightmetasearch();
textRange = document.post.message.createTextRange();
textRange.execCommand("RemoveFormat");
textRange.execCommand("Copy");
// alert("Il messaggio è stato copiato negli appunti");
}
#
#-----[ REPLACE WITH]-----------------------------------
#
function copymetasearch()
{
document.post.message.select();
document.post.message.focus();
if ( (navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4) )
{
textRange = document.post.message.createTextRange();
textRange.execCommand("RemoveFormat");
textRange.execCommand("Copy");
// alert("Text copied to clipboard");
}
}
#
#-----[ FIND ]------------------------------------------
#
function BBCjustify()
#
#-----[ BEFORE ADD ]------------------------------------
#
function BBCspoiler()
{
var txtarea = document.post.message;
if ((clientVer >= 4) && is_ie && is_win)
{
theSelection = document.selection.createRange().text;
if (theSelection != '')
{
document.selection.createRange().text = "[spoiler]" + theSelection + "[/spoiler]";
document.post.message.focus();
return;
}
}
else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0))
{
mozInsert(txtarea, "[spoiler]", "[/spoiler]");
return;
}
if (Spoiler == 0)
{
ToAdd = "[spoiler]";
document.post.spoiler.src = bbcb_mg_img_path + "spoiler1.gif";
Spoiler = 1;
}
else
{
ToAdd = "[/spoiler]";
document.post.spoiler.src = bbcb_mg_img_path + "spoiler.gif";
Spoiler = 0;
}
PostWrite(ToAdd);
}
function BBCcell()
{
var txtarea = document.post.message;
if ((clientVer >= 4) && is_ie && is_win)
{
theSelection = document.selection.createRange().text;
if (theSelection != '')
{
document.selection.createRange().text = "[cell]" + theSelection + "[/cell]";
document.post.message.focus();
return;
}
}
else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0))
{
mozInsert(txtarea, "[cell]", "[/cell]");
return;
}
if (Cell == 0)
{
ToAdd = "[cell]";
document.post.cell.src = bbcb_mg_img_path + "cell1.gif";
Cell = 1;
}
else
{
ToAdd = "[/cell]";
document.post.cell.src = bbcb_mg_img_path + "cell.gif";
Cell = 0;
}
PostWrite(ToAdd);
}
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/db_generator.tpl
#
#-----[ FIND ]------------------------------------------
#
$userdata = session_pagestart($user_ip, PAGE_INDEX);
#
#-----[ REPLACE WITH]-----------------------------------
#
$userdata = session_pagestart($user_ip);
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_admin.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Permissions List'] = 'Permission List';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Main_index'] = 'Forum Index';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Registered'] = 'Registered';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['Self'] = 'Self';
#
#-----[ FIND ]------------------------------------------
#
$lang['Forum_REG'] = 'REG';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['Forum_SELF'] = 'SELF';
#
#-----[ FIND ]------------------------------------------
#
$lang['Permissions'] = 'Permissions';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Board_disable'] = 'Disable board';
$lang['Board_disable_explain'] = 'This will make the board unavailable to users. Administrators are able to access the Administration Panel while the board is disabled.';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Board_disable'] = 'Disable site';
$lang['Board_disable_explain'] = 'This will make the site unavailable to users. Administrators are able to access the Administration Panel while the site is disabled.';
#
#-----[ FIND ]------------------------------------------
#
$lang['Edit'] = 'Edit';
$lang['Delete'] = 'Delete';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Install'] = 'Install';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Value'] = 'Value';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Ban'] = 'Ban User';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['board_disable_message'] = 'Disable the message by default for the deactivation of the forum.';
$lang['board_disable_message_texte'] = 'Message which will appear when the forum is deactivated';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['board_disable_message'] = 'Display a message for the deactivation of the site.';
$lang['board_disable_message_texte'] = 'Message which will appear when the site is deactivated';
#
#-----[ FIND ]------------------------------------------
#
$lang['Links'] ='Links Admin';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Account_active'] = 'active users';
$lang['Account_inactive'] = 'inactive users';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Account_active'] = 'Active Users';
$lang['Account_inactive'] = 'Inactive Users';
#
#-----[ FIND ]------------------------------------------
#
$lang['Account_inactive'] = 'Inactive users';
$lang['Account_active'] = 'Active users';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Delete_link'] = 'Tick box to delete this autolink.';
#
#-----[ REPLACE WITH]-----------------------------------
#
//$lang['Delete_link'] = 'Tick box to delete this autolink.';
#
#-----[ FIND ]------------------------------------------
#
$lang['auth_view_download'] = 'Download';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['auth_view_download'] = 'Downloads';
#
#-----[ FIND ]------------------------------------------
#
$lang['Post_count_explain'] = 'Here you can edit the post count of this user.';
$lang['Modify_post_counts'] = 'Modify User's Post Count';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Forum_Wordgraph'] = 'Forum Wordgraph';
$lang['Forum_Wordgraph_Explain'] = 'This feature will enable a forum based wordgraph at bottom of each forum';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Forum_Wordgraph'] = 'Forum Tags';
$lang['Forum_Wordgraph_Explain'] = 'This feature will enable a forum based tags table at bottom of each forum';
#
#-----[ FIND ]------------------------------------------
#
$lang['Sort_order'] = 'Order';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['GD_Version'] = 'Version:';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['All_Forums'] = 'All Forums';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Delete'] = 'Delete';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Nivisec_Com'] = 'Nivisec.com';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Delete'] = 'Delete';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Version'] = 'Version';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Affected_Rows'] = '%d known entries removed<br />';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['Links'] = 'Links Manage';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Links'] = 'Links Management';
#
#-----[ FIND ]------------------------------------------
#
$lang['Preview'] = 'Preview Logo';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Preview'] = 'Preview';
#
#-----[ FIND ]------------------------------------------
#
$lang['MG_SW_REFERRERS_Explain'] = 'This option allows to disable Referrers feature (this saves SQL space).';
#
#-----[ AFTER, ADD ]------------------------------------
#
// Icy Phoenix - BUILD 016
$lang['group_rank'] = 'Rank';
$lang['group_color'] = 'Color';
$lang['group_legend'] = 'Show in legend';
$lang['group_legend_short'] = 'Legend';
$lang['group_main'] = 'Main group';
$lang['group_members'] = 'Members';
$lang['group_update'] = 'Apply Changes';
/* lang_color_groups.php - BEGIN */
$lang['Color_Groups'] = 'Color Groups';
$lang['Manage_Color_Groups'] = 'Manage Color Groups';
$lang['Add_New_Group'] = 'Add New Group';
$lang['Color'] = 'Color';
$lang['User_Count'] = 'User Count';
$lang['Color_List'] = 'Color Name List:';
$lang['Group_Name'] = 'Group Name';
$lang['Define_Users'] = 'Define Users';
$lang['Color_Group_User_List'] = 'Color Group User List';
$lang['Options'] = 'Options';
$lang['Example'] = 'Example';
$lang['User_List'] = 'Full User List';
$lang['Unassigned_User_List'] = 'Users With No Group';
$lang['Assigned_User_List'] = 'Users With A Group';
$lang['Add_Arrow'] = 'Add To List';
$lang['Update'] = 'Update';
$lang['Updated_Group'] = 'Updated Group User List<br />';
$lang['Deleted_Group'] = 'Deleted Specified Group. All users that were in it have been reset to no group membership<br />';
$lang['Hide'] = 'Hide';
$lang['Un-hide'] = 'Un-hide';
$lang['Move_Up'] = 'Move Up';
$lang['Move_Down'] = 'Move Down';
$lang['Group_Hidden'] = 'Group Hidden<br />';
$lang['Group_Unhidden'] = 'Group Un-hidden<br />';
$lang['Groups_Updated'] = 'Group changes have been updated<br />';
$lang['Moved_Group'] = 'Moved group order<br />';
//Descriptions
$lang['Manage_Color_Groups_Desc'] = 'Update groups, add a new group, or manage the users assigned to a particular color group.<br />Groups that you choose to "Hide" will not show up on the main index list.';
$lang['Color_Group_User_List_Desc'] = 'Add or remove users to a specified color group.';
//Errors
$lang['Error_Group_Table'] = 'Error querying the color groups table.';
$lang['Error_Font_Color'] = '<b><u>Warning:</b></u> The specified font color appears to be invalid!';
$lang['Color_Ok'] = 'The specified font color appears to be valid.';
$lang['No_Groups_Exist'] = 'No groups exist.';
$lang['Error_Users_Table'] = 'Error querying the users table.';
$lang['Invalid_Group_Add'] = '%s is an invalid or duplicate group name.<br />';
//Dynamic
$lang['Group_Updated'] = 'Updated Color Group %s<br />';
$lang['Editing_Group'] = 'Currently editing the user list for %s.';
$lang['Invalid_User'] = '%s is an invalid username, skipping<br />';
$lang['Invalid_Order_Num'] = '%s contained an invalid order number, but it has been fixed. Please try your move up/down again.';
//New for 1.2.0
$lang['Users_List'] = 'Users List';
$lang['Groups_List'] = 'User Groups List';
$lang['List_Info'] = '<b>Notes</b>: <ul><li>Hold CTRL when clicking to select multiple names. <li>If a user belongs to a user group, and is added to a specific color group, the color group that contains the user will be used; not the one the user group belongs to. <li>The list names are formated as NAME (CURRENT_COLOR_GROUP). There will be no (CURRENT_COLOR_GROUP) if the entry doesn't belong to one. <li>If a user is a member of 2 or more user groups, the highest ranking color group will be assigned (you order their appearance on the main page).</ul>';
/* lang_color_groups.php - END */
// Icy Phoenix - BUILD 018
$lang['MG_SW_ShowSocialBookmarks'] = 'Social Bookmarks';
$lang['MG_SW_ShowSocialBookmarks_Explain'] = 'Show Social Bookmarks section when viewing topics';
$lang['MG_SW_ShowForumOnline'] = 'Show Users Online In Forums';
$lang['MG_SW_ShowForumOnline_Explain'] = 'This will enable online users counter for each forum on index';
// Icy Phoenix - BUILD 020
$lang['MG_SW_AllowDrafts'] = 'Allow Drafts';
$lang['MG_SW_AllowDrafts_Explain'] = 'Allow users to save posts as drafts';
#
#-----[ FIND ]------------------------------------------
#
$lang['110_Manage'] = 'Manage'; // admin_users.php
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['113_Permissions_Users'] = 'Permissions'; // admin_ug_auth.php
$lang['116_CMS_Permissions_Users'] = 'CMS Permissions'; // admin_cms_auth.php
#
#-----[ FIND ]------------------------------------------
#
$lang['230_Permissions_Users'] = 'Permissions'; // admin_ug_auth.php
$lang['235_CMS_Permissions_Users'] = 'CMS Permissions'; // admin_cms_auth.php
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_album_admin.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Child_Category_Moved'] = 'Selected category had child categories. The child categories got moved to the <B>%s</B> category.';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Child_Category_Moved'] = 'Selected category had child categories. The child categories got moved to the <b>%s</b> category.';
#
#-----[ FIND ]------------------------------------------
#
$lang['Watermark_explain'] = 'You can specify the watermark file to be used in this category. Insert the watermark file path respect to your phpBB root (i.e.: <b>album_mod/mark_fap.png</b>). The watermark will be applied only if Watermark feature is on.';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['Cat_Pics_Synchronize'] = 'Sync Pics Counter';
$lang['Cat_Pics_Synchronized'] = 'All pictures counter have been synchronized.';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_album_main.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Upload_Pics'] = 'Upload Pics';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['JUpload_Pic'] = 'Upload Multiple Pictures with Jupload';
#
#-----[ FIND ]------------------------------------------
#
$lang['Approved'] = 'Approved';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['Copy'] = 'Copy';
#
#-----[ FIND ]------------------------------------------
#
?>
#
#-----[ BEFORE ADD ]------------------------------------
#
// Pic watch
$lang['No_longer_watching_comment'] = 'You are no longer watching this pic for comments';
$lang['Watching_comment'] = 'You are now watching this pic for comments';
$lang['Pic_comment_notification'] = 'Album Comment Notification';
$lang['Pic_comment_watch_checkbox'] = 'Check box to be notified on pic comments:';
$lang['Watch_pic'] = 'Watch this pic for comments';
$lang['Unwatch_pic'] = 'Stop watching this pic for comments';
$lang['Click_return_pic'] = 'Click %shere%s to return to pic';
$lang['Pic_RDF'] = 'RSS Feed 1.0';
$lang['Pic_RSS'] = 'RSS Feed 2.0';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_bbcb_mg.php
#
#-----[ FIND ]------------------------------------------
#
$lang['bbcb_mg_fade'] = 'Transparency';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['bbcb_mg_spoiler'] = 'Spoiler';
$lang['bbcb_mg_cell'] = 'Cell';
#
#-----[ FIND ]------------------------------------------
#
$lang['s_spoil_help'] = 'Spoiler: [spoil]text[/spoil]';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['s_fade_help'] = 'Fade: [fade]text[/fade] or [fade][img]http://image_url/[/img][/fade]';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['s_spoiler_help'] = 'Spoiler: [spoiler]text[/spoiler]';
$lang['s_cell_help'] = 'Cell: [cell]text[/cell]';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_bbc_tags.php
#
#-----[ FIND ]------------------------------------------
#
$lang['BBC_Overview'] = '
<ul>
<li><span style="color: #00AA00;"><b>What is Icy Phoenix?</b></span><br /></li>
<li><span style="color: #0000AA;">Icy Phoenix is a CMS based on phpBB (a fully scalable and highly customisable open-source Bulletin Board package PHP based) plus many modifications and code integrations which add flexibility to the whole package. The official home page for phpBB is <a class="post-url" href="http://www.phpbb.com/" target="_blank">www.phpbb.com</a>. Icy Phoenix has some features originally developed for <acronym title="phpBB eXpertS">phpBB XS Project</acronym> which has been founded by Bicet and then developed by both Bicet and Mighty Gorgon. Icy Phoenix has been created by <a class="post-url" href="http://www.mightygorgon.com/" target="_blank">Mighty Gorgon</a> after he left the <acronym title="phpBB eXpertS">phpBB XS Project</acronym>.</span><br /><br /></li>
<li><span style="color: #00AA00;"><b>What are the main features of Icy Phoenix?</b></span><br /></li>
<li>
<span style="color: #0000AA;">Icy Phoenix has many features, most of them are listed in the <a class="post-url" href="http://www.icyphoenix.com/credits.php">Credits</a> on this site, but the main ones are:</span><br />
<ul>
<li><span style="color: #0000AA;">phpBB bulletin board and permission system</span><br /></li>
<li><span style="color: #0000AA;">CMS features allowing the creation of new pages and blocks (some of the functions are based on the abandoned IM Portal project)</span><br /></li>
<li><span style="color: #0000AA;">Overall template integration among all site sections</span><br /></li>
<li><span style="color: #0000AA;">Many ready to use features: Photo Gallery, Downloads, Knowledge Base, Links, Chat...</span><br /></li>
<li><span style="color: #0000AA;">Multilanguage and multitemplate ready</span><br /></li>
<li><span style="color: #0000AA;">Almost 100% XHTML and CSS W3C compliant</span><br /></li>
<li><span style="color: #0000AA;">...and many others...</span><br /></li>
</ul>
<br /><br />
</li>
<li><span style="color: #00AA00;"><b>Is Icy Phoenix supported for bugs, security issues, improvements?</b></span><br /></li>
<li><span style="color: #0000AA;">Icy Phoenix is an open source project. As many open source project it is developed by people using their free time. At the moment there are several persons in the staff willing to help and to contribute to this project. We hope the community continue to grow and being able to provide all the necessary support to all the users who may need help.</span><br /><br /></li>
<li><span style="color: #00AA00;"><b>Is Icy Phoenix easy to install and upgrade from other platforms?</b></span><br /></li>
<li><span style="color: #0000AA;">Icy Phoenix has its own setup procedure which guides the user through the steps of the setup process. An upgrading file is provided to upgrade the package from standard phpBB and <acronym title="Icy Phoenix Ancestor">phpBB XS</acronym>. Hopefully an upgrade procedure from any platform will be written in the future: at the moment the only way to upgrade from another premodded is by downgrading it to phpBB (has been written a procedure for this) and then run the provided upgrade procedure.</span><br /><br /></li>
<li><span style="color: #00AA00;"><b>Does Icy Phoenix have many templates?</b></span><br /></li>
<li><span style="color: #0000AA;">Yes, at the moment there are some free templates (some of them with multicolor variations) and we are working to create new ones. If you are interested to new templates you should regularly check the <a class="post-url" href="http://www.icyphoenix.com/" target="_blank">support forum</a>.</span><br /><br /></li>
<li><span style="color: #00AA00;"><b>Is Icy Phoenix multilanguage?</b></span><br /></li>
<li><span style="color: #0000AA;">English is the main language of Icy Phoenix, but it has been translated into other languages (alphabetical order): Catalan, Dutch, Galego, German, Italian, Serbian, Spanish... and more to come! If you don't find your language listed here, please ask to the <a class="post-url" href="http://www.icyphoenix.com/" target="_blank">support forum</a>, maybe someone else is working on the translation you need and you may join the translation team to give your contribution.</span><br /><br /></li>
<li><span style="color: #00AA00;"><b>Will Icy Phoenix be upgraded to phpBB 3?</b></span><br /></li>
<li><span style="color: #0000AA;">At the moment there is no plan to upgrade Icy Phoenix to phpBB 3. There are several reasons for this. Of course when phpBB 3 will be out for a while, things may change...</span><br /><br /></li>
<li><span style="color: #00AA00;"><b>May I join Icy Phoenix Project?</b></span><br /></li>
<li><span style="color: #0000AA;">Of course. Icy Phoenix is an open source project, and anyone who is willing to give his own contribution on a stable basis then may apply to join the Team.</span><br /><br /></li>
</ul>
';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['BBC_Overview'] = '
<ul>
<li><span class="topic_ann"><b>What is Icy Phoenix?</b></span><br /></li>
<li><span class="topic_imp">Icy Phoenix is a CMS based on phpBB (a fully scalable and highly customisable open-source Bulletin Board package PHP based) plus many modifications and code integrations which add flexibility to the whole package. The official home page for phpBB is <a class="post-url" href="http://www.phpbb.com/" target="_blank">www.phpbb.com</a>. Icy Phoenix has some features originally developed for <acronym title="phpBB eXpertS">phpBB XS Project</acronym> which has been founded by Bicet and then developed by both Bicet and Mighty Gorgon. Icy Phoenix has been created by <a class="post-url" href="http://www.mightygorgon.com/" target="_blank">Mighty Gorgon</a> after he left the <acronym title="phpBB eXpertS">phpBB XS Project</acronym>.</span><br /><br /></li>
<li><span class="topic_ann"><b>What are the main features of Icy Phoenix?</b></span><br /></li>
<li>
<span class="topic_imp">Icy Phoenix has many features, most of them are listed in the <a class="post-url" href="http://www.icyphoenix.com/credits.php">Credits</a> on this site, but the main ones are:</span><br />
<ul>
<li><span class="topic_imp">phpBB bulletin board and permission system</span><br /></li>
<li><span class="topic_imp">CMS features allowing the creation of new pages and blocks (some of the functions are based on the abandoned IM Portal project)</span><br /></li>
<li><span class="topic_imp">Overall template integration among all site sections</span><br /></li>
<li><span class="topic_imp">Many ready to use features: Photo Gallery, Downloads, Knowledge Base, Links, Chat...</span><br /></li>
<li><span class="topic_imp">Multilanguage and multitemplate ready</span><br /></li>
<li><span class="topic_imp">Almost 100% XHTML and CSS W3C compliant</span><br /></li>
<li><span class="topic_imp">...and many others...</span><br /></li>
</ul>
<br /><br />
</li>
<li><span class="topic_ann"><b>Is Icy Phoenix supported for bugs, security issues, improvements?</b></span><br /></li>
<li><span class="topic_imp">Icy Phoenix is an open source project. As many open source project it is developed by people using their free time. At the moment there are several persons in the staff willing to help and to contribute to this project. We hope the community continue to grow and being able to provide all the necessary support to all the users who may need help.</span><br /><br /></li>
<li><span class="topic_ann"><b>Is Icy Phoenix easy to install and upgrade from other platforms?</b></span><br /></li>
<li><span class="topic_imp">Icy Phoenix has its own setup procedure which guides the user through the steps of the setup process. An upgrading file is provided to upgrade the package from standard phpBB and <acronym title="Icy Phoenix Ancestor">phpBB XS</acronym>. Hopefully an upgrade procedure from any platform will be written in the future: at the moment the only way to upgrade from another premodded is by downgrading it to phpBB (has been written a procedure for this) and then run the provided upgrade procedure.</span><br /><br /></li>
<li><span class="topic_ann"><b>Does Icy Phoenix have many templates?</b></span><br /></li>
<li><span class="topic_imp">Yes, at the moment there are some free templates (some of them with multicolor variations) and we are working to create new ones. If you are interested to new templates you should regularly check the <a class="post-url" href="http://www.icyphoenix.com/" target="_blank">support forum</a>.</span><br /><br /></li>
<li><span class="topic_ann"><b>Is Icy Phoenix multilanguage?</b></span><br /></li>
<li><span class="topic_imp">English is the main language of Icy Phoenix, but it has been translated into other languages (alphabetical order): Catalan, Dutch, Galego, German, Italian, Serbian, Spanish... and more to come! If you don't find your language listed here, please ask to the <a class="post-url" href="http://www.icyphoenix.com/" target="_blank">support forum</a>, maybe someone else is working on the translation you need and you may join the translation team to give your contribution.</span><br /><br /></li>
<li><span class="topic_ann"><b>Will Icy Phoenix be upgraded to phpBB 3?</b></span><br /></li>
<li><span class="topic_imp">At the moment there is no plan to upgrade Icy Phoenix to phpBB 3. There are several reasons for this. Of course when phpBB 3 will be out for a while, things may change...</span><br /><br /></li>
<li><span class="topic_ann"><b>May I join Icy Phoenix Project?</b></span><br /></li>
<li><span class="topic_imp">Of course. Icy Phoenix is an open source project, and anyone who is willing to give his own contribution on a stable basis then may apply to join the Team.</span><br /><br /></li>
</ul>
';
#
#-----[ FIND ]------------------------------------------
#
<li><b>files/album/cache/</b></li>
#
#-----[ AFTER, ADD ]------------------------------------
#
<li><b>files/album/jupload/</b></li>
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_blocks.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Title_wordgraph'] = 'Wordgraph';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Title_wordgraph'] = 'Tags';
#
#-----[ FIND ]------------------------------------------
#
$lang['cms_var_md_posts_show_portal_explain'] = 'Select all topics or only marked with "Show in Portal"';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['cms_var_md_posts_show_portal_explain'] = 'Select all topics or only marked with "Show in Home Page"';
#
#-----[ FIND ]------------------------------------------
#
$lang['cms_var_md_wordgraph_count'] = 'Enable Word Counts';
$lang['cms_var_md_wordgraph_count_explain'] = 'Display the total number of words next to each word';
$lang['cms_var_md_wordgraph_words'] = 'Maximum Words';
$lang['cms_var_md_wordgraph_words_explain'] = 'Select the maximum number of words to display';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['cms_var_md_wordgraph_count'] = 'Enable Tags Counts';
$lang['cms_var_md_wordgraph_count_explain'] = 'Display the total number of tags next to each word';
$lang['cms_var_md_wordgraph_words'] = 'Maximum Tags';
$lang['cms_var_md_wordgraph_words_explain'] = 'Select the maximum number of tags to display';
#
#-----[ FIND ]------------------------------------------
#
$lang['cms_option_Show_In_Portal'] = 'Show In Portal';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['cms_option_Show_In_Portal'] = 'Show in Home Page';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_cback_ctracker.php
#
#-----[ FIND ]------------------------------------------
#
$lang['ctracker_settings_on'] = 'Activate';
$lang['ctracker_settings_off'] = 'Deactivate';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['ctracker_settings_on'] = 'Enabled';
$lang['ctracker_settings_off'] = 'Disabled';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_cms.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Layout_View'] = 'View by';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Layout_View'] = 'View permissions';
$lang['Layout_Edit_Perm'] = 'Edit permissions';
#
#-----[ FIND ]------------------------------------------
#
$lang['Choose_Layout'] = 'Choose site page';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Standard_Pages'] = 'Standard Pages';
$lang['Custom_Pages'] = 'Customized Pages';
$lang['Choose_Layout'] = 'Choose Page';
#
#-----[ FIND ]------------------------------------------
#
$lang['cms_block_wordgraph'] = 'Wordgraph';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['cms_block_wordgraph'] = 'Tags';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_dbmtnc.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Version_of_board'] = 'Version of the Board';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Version_of_board'] = 'Version of Icy Phoenix';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_jr_admin.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Color_Group'] = 'Color Group';
#
#-----[ REPLACE WITH]-----------------------------------
#
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Board_disable'] = 'Sorry, but this board is currently unavailable. Please try again later.';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Board_disabled'] = 'Sorry, but this site is currently unavailable. Please try again later.';
#
#-----[ FIND ]------------------------------------------
#
$lang['Rules_reply_can'] = 'You <b>can</b> reply to topics in this forum';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['Rules_reply_can_own'] = 'You <b>can</b> reply to your topics in this forum';
#
#-----[ FIND ]------------------------------------------
#
$lang['Auth_Registered_Users'] = '<b>registered users</b>';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['Auth_Self_Users'] = '<b>specific users</b>';
#
#-----[ FIND ]------------------------------------------
#
$lang['Viewing_HACKSLIST'] = 'Viewing Hacks List';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Viewing_HACKSLIST'] = 'Viewing credits';
#
#-----[ FIND ]------------------------------------------
#
$lang['Viewing_priv_msgs'] = 'Viewing Private Messages';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Viewing_priv_msgs'] = 'Viewing private messages';
#
#-----[ FIND ]------------------------------------------
#
$lang['Birthday_greeting_today'] = 'We would like to wish you congratulatons on reaching %s years old today.<br /><br /> The Management';//%s is substituted with the users age
$lang['Birthday_greeting_prev'] = 'We would like to give you a belated congratulatons for becoming %s years old on the %s.<br /><br /> The Management';//%s is substituted with the users age, and birthday
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Birthday_greeting_today'] = 'We would like to wish you congratulations on reaching %s years old today.<br /><br /> ';//%s is substituted with the users age
$lang['Birthday_greeting_prev'] = 'We would like to give you a belated congratulations for becoming %s years old on the %s.<br /><br /> ';//%s is substituted with the users age, and birthday
#
#-----[ FIND ]------------------------------------------
#
$lang['Users_today_total'] = 'In total <b>%d</b> user have visited this site today: ';
$lang['User_today_total'] = 'In total <b>%d</b> users have visited this site today: ';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Users_today_total'] = 'In total <b>%d</b> users have visited this site today: ';
$lang['User_today_total'] = 'In total <b>%d</b> user have visited this site today: ';
#
#-----[ FIND ]------------------------------------------
#
$lang['Full_Version'] = 'Full Version';
#
#-----[ REPLACE WITH]-----------------------------------
#
//$lang['Full_Version'] = 'Full Version';
$lang['Full_Version'] = 'This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.';
#
#-----[ FIND ]------------------------------------------
#
$lang['Recent_wrong_mode'] = 'You´ve selected a wrong mode.';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Recent_wrong_mode'] = 'You have selected a wrong mode.';
#
#-----[ FIND ]------------------------------------------
#
$lang['Version_of_board'] = 'Version of <a href="http://www.phpbb.com">phpbb</a>';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Version_of_ip'] = 'Version of <a href="http://www.icyphoenix.com/">Icy Phoenix</a>';
$lang['Version_of_board'] = 'Version of <a href="http://www.phpbb.com">phpBB</a>';
#
#-----[ FIND ]------------------------------------------
#
$lang['Show_In_Portal'] = 'Show in portal';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Show_In_Portal'] = 'Show in Home Page';
#
#-----[ FIND ]------------------------------------------
#
$lang['No_Bookmarks'] = 'You do not have set a bookmark';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['No_Bookmarks'] = 'You do not have any bookmark set';
#
#-----[ FIND ]------------------------------------------
#
$lang['Wordgraph'] = 'Wordgraph';
$lang['Viewing_wordgraph'] = 'Viewing Wordgraph';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Wordgraph'] = 'Tags';
$lang['Viewing_wordgraph'] = 'Viewing Tags';
#
#-----[ FIND ]------------------------------------------
#
$lang['Trohpy'] = 'Game Trophies';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['quick_links_games'] = 'Games Menu';
#
#-----[ FIND ]------------------------------------------
#
$lang['Watched_Topics_EXPLAIN'] = 'A list of all the topics you are watching';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['WATCHED_TOPICS_EXPLAIN'] = 'A list of all the topics you are watching';
#
#-----[ FIND ]------------------------------------------
#
$lang['DIGESTS_EXPLAIN'] = 'Digests are periodical email which are sent automatically with an excerpt of the new messages posted in the forum';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['DRAFTS_EXPLAIN'] = 'Manage your Drafts';
#
#-----[ FIND ]------------------------------------------
#
//$lang[''] = '';
#
#-----[ BEFORE ADD]-------------------------------------
#
// Resend Activation - BEGIN
$lang['Resend_activation_email'] = 'Resend activation email';
$lang['Invalid_activation'] = 'User account activation can only be performed by administrators.';
$lang['No_actkey'] = 'There is no activation key for your account. Please contact the board administrator for more information.';
$lang['Send_actmail_flood_error'] = 'You cannot make another request so soon after your last one; please try again in a short while.';
$lang['Resend_activation_email_done'] = 'The activation e-mail has been sent. Please check your email for further information.';
// Resend Activation - END
$lang['Bots_Group'] = 'Bots';
$lang['Bots_Color'] = 'Bots Color';
$lang['Active_Users_Group'] = 'Active Users';
$lang['Active_Users_Color'] = 'Active Users Color';
$lang['Group_Default_Membership'] = 'Default Group';
$lang['Group_Default_Membership_Explain'] = 'Choose the default group for user, to assign rank and color.';
$lang['User_Color'] = 'User Color';
$lang['User_Color_Explain'] = 'If you specify a color for this user this will be overwritten by the default group color if you specify one group in the box above. Use the hex code without <b>#</b> example: ff0000 is the code for RED.';
$lang['No_Groups_Membership'] = 'No Membership';
$lang['No_Default_Group'] = 'No Default Group';
$lang['Group_members_updated'] = 'Successfully updated group members.';
$lang['Colorize_All'] = 'Colorize All Members';
$lang['Colorize_Selected'] = 'Colorize Selected';
$lang['CompanyWho'] = 'The Company';
$lang['CompanyWhere'] = 'How To Reach Us';
$lang['CompanyServices'] = 'Services';
$lang['CompanyProducts'] = 'Products';
$lang['ShareThisTopic'] = 'Share this topic';
$lang['Remove_cookies'] = 'Remove Cookies set by this site';
$lang['Cookies_deleted'] = 'All cookies have been deleted. You are now logged out.<br />To finalize deletion, you must close your browser now.';
$lang['Delete_cookies'] = 'Delete Cookies';
$lang['cookies_confirm'] = 'Are you you sure you want to delete all cookies set by this site?<br /><br />This action will also log you out.';
$lang['CustomIcy'] = 'CustomIcy';
$lang['Drafts'] = 'Drafts';
$lang['Drafts_Action'] = 'Action';
$lang['Drafts_Save'] = 'Save';
$lang['Drafts_Load'] = 'Load';
$lang['Drafts_Saved'] = 'This Draft has been saved';
$lang['Drafts_Loaded'] = 'Draft loaded';
$lang['Drafts_No_Drafts'] = 'No drafts saved';
$lang['Drafts_Delete_Sel'] = 'Delete selected';
$lang['Drafts_Save_Question'] = '<br /><br />Are you sure you want to save this message as draft?<br /><br />Please note that only message body will be saved while all other settings will be discarded.';
$lang['Drafts_Delete_Question'] = '<br /><br />Are you sure you want to delete selected drafts?';
$lang['Drafts_Type'] = 'Draft Type';
$lang['Drafts_Subject'] = 'Draft Subject';
$lang['Drafts_NT'] = 'New topic';
$lang['Drafts_NM'] = 'Reply';
$lang['Drafts_NPM'] = 'Private Message';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main_link.php
#
#-----[ FIND ]------------------------------------------
#
$lang['Links_Preview'] = 'Preview Logo';
#
#-----[ REPLACE WITH]-----------------------------------
#
$lang['Links_Preview'] = 'Preview';
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main_settings.php
#
#-----[ FIND ]------------------------------------------
#
$lang['DATE_FORMAT_MG'] = 'Y/m/d - H:i';
#
#-----[ AFTER, ADD ]------------------------------------
#
$lang['DATE_FORMAT_BIRTHDAY'] = 'd F Y';
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Available Packages
Since this is a beta package, I prefer to release an all in one package which includes in several folders all the extras and templates. I know that this means having a bigger file, but I don't want users trying to install extras in the latest stable release, because with high probability modifications for Icy Phoenix 1.1.0.15 won't work in newer releases, because of the new modifications I made to the core files.
Currently available is only a single big pack.
Icy Phoenix 1.1.5.20 Beta 1
Package Name: Icy Phoenix
Package Version: 1.1.5.20 Beta 1
Release Spot: str_replace('24 hours per day', '48 hours per day', $my_life).
DOWNLOAD: Icy Phoenix 1.1.5.20 Beta 1
Package Version: 1.1.5.20 Beta 1
Release Spot: str_replace('24 hours per day', '48 hours per day', $my_life).
DOWNLOAD: Icy Phoenix 1.1.5.20 Beta 1
Should you ask for support, please remember that this is an open source community and me and all the Staff are doing all for free and in their spare time... be kind, be patient and respect other users efforts and hard work.
Enjoy Icy Phoenix!
Luca Libralato