Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 2
Goto page 1, 2  Next
 
Reply with quote Download Post 
Post CUSTOMIZATION - How To Customize Some IP Basics 
 
How To Customize Some Icy Phoenix Basics

This guide will help you customize a few Icy Phoenix basics.

  1. How do I change the site logo in my website banner?
  2. What is a favicon and how do I change mine?
  3. How do I change the sender of the "Welcome" private message?
  4. How do I change my website keywords, description, and various other information?



How do I change the site logo in my website banner?

You can change the site logo in your website banner by replacing the current graphic with your own.  Depending on your template title, this is the path you would upload your new logo: /templates/YOUR_STYLE/images/YOUR_STYLE_IMG_FOLDER/sitelogo_small.png

If you are simply replacing the default sitelogo_small.png graphic, you should make sure your logo is of the same filetype.  Notice the current filetype is .png.

If you wish to change the logo to a different filetype such .gif, .jpg, .PNG, .bmp, etc., open: ip_root/templates/default/default.cfg.

FIND:

Code: [Download] [Hide] [Select]
$images['sitelogo'] = $current_template_images . 'sitelogo_small.png';


CHANGE: (change the logo name to your logo name)

Code: [Download] [Hide] [Select]
sitelogo_small.png



What is a favicon and how do I change mine?

 abfavicon

A favicon is a website icon that is displayed in a website's address bar.  This is a favorite of many webmasters because when their website is set as a favorite or bookmarked, their favicon will appear next to the bookmark name in a browser's bookmarks.  This allows visitors to easily find the bookmarked website they want to visit.  Many webmasters use standard or animated favicons.

If you don't already have a favicon, you can create a small, usually 16x16 icon in programs such as Microsoft Paint or Adobe Photoshop.  The favicon can be saved in .ico if you have the plugin for it in Adobe Photoshop.  If you don't have Adobe Photoshop, you can still create your favicon using Microsoft Paint.

Once you have created your .jpg, .gif, .png icon, you can convert it to an .ico file here.

Rename the file, if it hasn't been done already, to favicon.ico.  Make sure it keeps the .ico file extension.

Upload this image to ip_root/images/.  Overwrite the old favicon.ico file already on your server.  You should now clear your website cache and close all browser windows.  The new favicon should now be seen when visiting your website.


How do I change the sender of the "Welcome" private message?

If you have access to the website database, run this query:

Code: [Download] [Hide] [Select]
UPDATE phpbb_config SET config_value = '2' WHERE config_name = 'main_admin_id';


Be sure to change the number 2 with the user ID of the account you wish for it to be sent from.


How do I change my website keywords, description, and various other information?

OPEN: ip_root/language/YOUR_LANGUAGE/lang_main_settings.php.

Feel free to change anything in this file!


 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: [RC][DOC] How To Customize Some IP Basics 
 
Nice doc... wish that was available when I first started out..

   
 




____________
Mods and themes for Icy Phoenix 1.3

IcyPhoenix UK is off-line permanently due to lack of time to update mods.
if anyone is interested in my templates I will upgrade them to Icy 2.0.
 
DWhoSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: [RC][DOC] How To Customize Some IP Basics 
 
Chaotic wrote: [View Post]
[b]How do I change the sender of th...te message?[/b]

If you have access to the website database, run this query:

Code: [Download] [Hide] [Select]
UPDATE phpbb_config SET config_value = '2' WHERE config_name = 'main_admin_id';


Be sure to change the number 2 with the user ID of the account you wish for it to be sent from.

Just to clarify one thing...

In constants.php you should also edit this line:
Code: [Download] [Hide] [Select]
define('FOUNDER_ID', '2');

 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: [RC][DOC] How To Customize Some IP Basics 
 
The instructions weren't complete.

I If you want to add things to the h**p://***.freakybehavior.com/forum/ complete banner at the top, how do you do that?

I found the "top_header.png" and it repeats. But I want to change the middle part of the banner to read What's your Freak Song?TM at the top.
In this example, where the blue part of the banner at the top of the screen is located. How can I do that?

When I made a banner, the dimensions would only be 262x120. When I made it that size, it repeated. I changed the stylesheet to "no-repeat" and that didn't change anything.

HELP!!!
 



 
slowsoulzSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: [RC][DOC] How To Customize Some IP Basics 
 
slowsoulz wrote: [View Post]
...http://www.freakybehavior.com/forum/ ...


That site runs phpBB3 not Icy Phoenix
Please use the right section for your requests http://www.icyphoenix.com/viewforum.php?f=32
 




____________
~~~ Andrea ~~~
User #379756 on Linux Counter
"If you can't apt-get something, it isn't useful or doesn't exist!!"
 
buldoSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: [DOC] How To Customize Some IP Basics 
 
If we´re talking about IP 1.3.0.53

this is wrong

Code: [Download] [Hide]
  1. UPDATE phpbb_config SET config_value = '2' WHERE config_name = 'main_admin_id'; 


it should be

Code: [Download] [Hide]
  1. UPDATE ip_config SET config_value = '2' WHERE config_name = 'main_admin_id'; 

 




____________
Out of Order
 
spydieSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: [DOC] How To Customize Some IP Basics 
 
That depends what your table prefix is.

Maybe it's not phpBB_ or ip_...maybe it's lolwtf_...
 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: CUSTOMIZATION - How To Customize Some IP Basics 
 
Chaotic wrote: [View Post]
How do I change my website keywords, description, and various other information?[/url]

OPEN: ip_root/language/YOUR_LANGUAGE/lang_main_settings.php.

Feel free to change anything in this file!



When I changed this meta names and descriptions and look at the code of index page I saw only this
Code: [Download] [Hide] [Select]
<meta name="description" content="Форум профессиональных игроков в покер, турниры, обсуждения." />
<meta name="keywords" content="покер форум, пароли на фрироллы, фриролл вконтакте, фил хельмут, wsop, хенд, многостоловые турниры, nl holdem, сателлит, разборы рук, ребай турниры, сит-энд-гоу, stt турнир, хедз-ап, кеш игра, омаха, пот лимит, статьи по омахе, стратегия покера, покер румы онлайн, бездепозитные бонусы, супер бездеп, покерное видео, воды по мтт" />
<meta name="category" content="general" />

Why they not changing into russian letters? I edited lang_main_settings.php with notepad++ in original it was
$lang['Index'] = 'Покер форум';
$lang['Default_META_Keywords'] = 'покер форум, пароли на фрироллы, фриролл вконтакте, фил хельмут, wsop, хенд, многостоловые турниры, nl holdem, сателлит, разборы рук, ребай турниры, сит-энд-гоу, stt турнир, хедз-ап, кеш игра, омаха, пот лимит, статьи по омахе, стратегия покера, покер румы онлайн, бездепозитные бонусы, супер бездеп, покерное видео, воды по мтт';
$lang['Default_META_Description'] = 'Форум профессиональных игроков в покер, турниры, обсуждения.';

 



 
Edited by DWho, Mon 08 Feb, 2010 23:47: added code tags to make post easier to read
RipleySend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: CUSTOMIZATION - How To Customize Some IP Basics 
 
I guess the reason is that you are not using UTF-8 encoding and your lang files are not encoding using UTF-8.

First thing can be changed in lang_main_settings.php, second thing requires you to use an enhanced text editor, like the free PSPad for example (then you have to change your file encoding.).
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: CUSTOMIZATION - How To Customize Some IP Basics 
 
Code: [Download] [Hide]
  1. <?php  
  2.      function encodeDir($dirname)  
  3.      {  
  4.          if( !is_dir( $dirname ) )  
  5.          {  
  6.              throw new InvalidArgumentException( 'The path `' . $dirname . '` is not existing' );  
  7.          }  
  8.          $dir = @opendir( $dirname );  
  9.          if( !$dir )  
  10.          {  
  11.              throw new InvalidArgumentException( 'The path `' . $dirname . '` cannot be opened' );  
  12.          }  
  13.          while( ( $file = @readdir( $dir ) ) !== false )  
  14.          {  
  15.              if( $file != '.' && $file != '..' )  
  16.              {  
  17.                  if( is_dir( $dirname . $file ) )  
  18.                  {  
  19.                      encodeDir( $dirname . $file );  
  20.                  }  
  21.                  else  
  22.                  {  
  23.                      $content = file_get_contents( $dirname . $file );  
  24.                      file_put_contents( $dirname . $file, utf8_encode( $contents ) );  
  25.                  }  
  26.              }  
  27.          }  
  28.          @closedir( $dir );  
  29.      }  
  30.  
  31.      encodeDir( '/' );  
Recursive utf8-encode function :).
 



 
InformproSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: CUSTOMIZATION - How To Customize Some IP Basics 
 
Mighty Gorgon wrote: [View Post]
I guess the reason is that you are not using UTF-8 encoding and your lang files are not encoding using UTF-8.

First thing can be changed in lang_main_settings.php, second thing requires you to use an enhanced text editor, like the free PSPad for example (then you have to change your file encoding.).
Thank you for response, but when I translate other lang files in notepad++ they appear correct   The only problem is with main settings..
And when I paste russian text in smiley sreator it do not show letters correct too  

Informpro, should I paste this somewhere?
 



 
RipleySend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: CUSTOMIZATION - How To Customize Some IP Basics 
 
Which encoding you have for your current DB? UTF-8?

Smiley creator uses fonts and GD lib... not all fonts have russian chars and not all GD Libraries versions support TTF. I think that the only thing you can do is edit the core code by adding a Russian capable font to output the text.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: CUSTOMIZATION - How To Customize Some IP Basics 
 
Chaotic wrote: 



How do I change the sender of the "Welcome" private message?

If you have access to the website database, run this query:

Code: [Download] [Hide] [Select]
UPDATE phpbb_config SET config_value = '2' WHERE config_name = 'main_admin_id';


Be sure to change the number 2 with the user ID of the account you wish for it to be sent from.



how can I change the sender of the "Welcome" private message, without the new sender be main_admin?

example.
main_admin is Costa ID2
sender of the "Welcome" private message, to be MySite ID 300 (and can be a admin ths nick name without any problem, but not main admin)
 



 
CostaSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: CUSTOMIZATION - How To Customize Some IP Basics 
 
Open includes/usercp_register.php and replace the user_id in this line:

Code: [Download] [Hide] [Select]
$privmsg_sender = $founder_id;

 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: CUSTOMIZATION - How To Customize Some IP Basics 
 
Thanks Luca  




edit

sorry for my ignorant
if ID user is 300 then the correct syntax is

Code: [Download] [Hide] [Select]
$privmsg_sender = 0_id;
??
 



 
CostaSend private message  
Back to topPage bottom
Post new topic  Reply to topic  Page 1 of 2
Goto page 1, 2  Next


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
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


  

 

  cron