Icy Phoenix

     
 

Menu

Main Links  Main Links
News  News
Info  Info
Users & Groups  Users & Groups
Style  Style
Language  Language
RSS Feeds  RSS Feeds

CMS - How To Create New HTML Block To Add In Your CMS 

Introduction
With the CMS system you can add each kind of block in every page of your Icy Phoenix board. If, for example, you have a particular block that you must put in a lot of personal page (like a footer or sponsor), is very useful to create a custom block in a block file, because you can edit .tpl file only one time and upload it: all your pages will then get the changes!


Instructions
  1. Create yoursite/blocks/blocks_imp_YOURBLOCK.php

    Code: [Hide]
    1. <?php  
    2. /***************************************************************************  
    3. * blocks_imp_YOURBLOCK.php  
    4. * -------------------  
    5. * begin : 2007/02/06  
    6. * copyright : Mighty Gorgon  
    7. * website : http://www.mightygorgon.com  
    8. * email : mightygorgon@mightygorgon.com  
    9. *  
    10. ***************************************************************************/  
    11.  
    12. /***************************************************************************  
    13. *  
    14. * This program is free software; you can redistribute it and/or modify  
    15. * it under the terms of the GNU General Public License as published by  
    16. * the Free Software Foundation; either version 2 of the License, or  
    17. * (at your option) any later version.  
    18. *  
    19. ***************************************************************************/  
    20.  
    21. if ( !defined('IN_PHPBB') )  
    22. {  
    23. die('Hacking attempt');  
    24. }  
    25. if(!function_exists(imp_YOURBLOCK_func))  
    26. {  
    27. function imp_YOURBLOCK_func()  
    28. {  
    29. global $lang, $template, $board_config;  
    30.  
    31. $template->assign_vars(array(  
    32. )  
    33. );  
    34. }  
    35. }  
    36.  
    37. imp_YOURBLOCK_func();  
    38.  
    39. ?> 


  2. Create yoursite/templates/xxx/blocks/YOURBLOCK_block.tpl and put in it your personal HTML code.

  3. P.S.: replace YOURBLOCK with your personal name! That's all, good work!




  
 hpl [ Wed 11 Apr, 2007 18:25 ] Reply to this News Item Print this Topic E-Mail this Topic  

iCis - First iPhone Application Based On Icy Phoenix 

Hi all,
I'm proud to announce that we have released today the first application for iPhone/iPod/iPad based on Icy Phoenix.

This application at the moment is in Italian only (because all contents are in Italian!) but if you love Italian Food you can have a look anyway.

The goal of the application is to share recipes and other contents published by users in the Italian community CucinaInSimpatia. You can use the application to access the content:
  • By Category
  • By Author
  • By Keyword/Tag


You can also filter recipes to show "gluten free" only or add any recipe to favourites.

All contents are published in the site through Icy Phoenix, I have coded the API to access the content directly online, so everything will be always up to date. It's a good test to eventually publish further applications based on Icy Phoenix.

If you have time or if you are interested, feel free to try the application.

icis

app_store_it

For any specific information you can reply to this topic or contact me privately.

Thanks,
Luca Libralato




  
 Mighty Gorgon [ Thu 08 Nov, 2012 10:31 ] Reply to this News Item Print this Topic E-Mail this Topic  

DB - Fulltext Key 

When installing IP on my wamp server I always run into this problem when installing the database...The used table type doesn't support FULLTEXT indexes

After spending a great deal of time to figure out a quick and easy solution I finally found this one...

Basically MySQL 5 on Windows servers are setting default table types to innodb instead of myisam, and as innodb doesn't support fulltext, it causes this problem

Locate your my.ini and find:

Code: [Hide] [Select]
default-table-type=innodd


and replace with this

Code: [Hide] [Select]
default-table-type=myisam


I hope that helps someone...





  
 DWho [ Mon 24 Dec, 2007 15:51 ] Reply to this News Item Print this Topic E-Mail this Topic  

284 Files... 

Hi all.

In one day I have edited something like 284 files of Icy Phoenix , and now I can say that the RC version is really near.

I need about a week of testing all the things I've changed and then I think I'll create the first RC of Icy Phoenix!

Many bugs fixed and some other functions created and optimized. Plus thanks to Steffen I've almost finished the Icy template... I need to change only a couple of images I don't like... but 95% of the Icy TPL is completed.

Try the new AJAX Chat... I've worked very hard on it... but I think now we have somethin better than chatbox...

Finally I would like just you to know that I'm learning AJAX so you'll notice some AJAX features installed: most of them taken from AJAX Features mod, but some small one coded by me... I hope that everything is working fine even for browsers which are not the two big one FF and IE. If you encounter some issues just drop me a note.

Help me testing this version live on this site, so we can have a more stable RC.


Thank you all and see you soon with RC.
Luca


P.S.: this site is now running live 1.0.10.10.




  
 Mighty Gorgon [ Sun 11 Mar, 2007 11:44 ] Reply to this News Item Print this Topic E-Mail this Topic  

SEO - How To Ban Bots 

how can i ban bots? i think my server is very slow!




  
 Gianni PB [ Wed 24 Jan, 2007 16:20 ] Reply to this News Item Print this Topic E-Mail this Topic