Icy Phoenix

     
 


Post new topic  This topic is locked: you cannot edit posts or make replies. 
Page 1 of 3
Goto page 1, 2, 3  Next
 
Reply with quote Download Post 
Post Upgrading To Icy Phoenix 
 
Need instructions of how to upgrade to icy phoenix without loosing anything on my forums.
 



 
oscarxpSend private message  
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: Upgrading To Icy Phoenix 
 
did you try to run update_to_ip ?
 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Upgrading To Icy Phoenix 
 
when i upload the files it gice me a lot of ctracker's errors, and do the same if i run that file on the main directory
 



 
sonoangeloSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Upgrading To Icy Phoenix 
 
sonoangelo wrote: [View Post]
when i upload the files it gice me a lot of ctracker's errors, and do the same if i run that file on the main directory


You HAVE to run it from root... are you logged as admin before run that file?
 




____________
My Icy forum: www.lineameteo.it
Staff Member @ IcyPhoenix.com & IcyPhoenix.it
 
andrea75Send private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Upgrading To Icy Phoenix 
 
what means, i have to run it from root? i open my site in the home page, but it give me errors and after i run that file, but give me always the same errors.
Before now i have update the XS 049 to 058b in this way and all right, but now...    
 



 
sonoangeloSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Upgrading To Icy Phoenix 
 
U have to be logged as admin and run the update like this http://www.themusicplanet.eu/update_to_ip.php
 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Upgrading To Icy Phoenix 
 
Mighty Gorgon wrote: 
This beta release is meant for having some flavour of what the Icy Phoenix is going to be, fixing the bugs and maybe obtain some good suggestions to be implemented in the final release... Even if this package is quite stable I would suggest you to install it on live environments only if you are quite good PHP and phpBB.


Might Gorgon wrote: 
If you are trying to upgrade your existing sites to this release you should consider that the final release may not contain upgrading instructions from this beta. You have been warned...


I suggest you to wait for the first stable relase  
 



 
z3d0Send private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Upgrading To Icy Phoenix 
 
Zuker wrote: [View Post]
U have to be logged as admin and run the update like this http://www.themusicplanet.eu/update_to_ip.php


i'v done this but nothing tell me some errors, now i reupload the files and you see with your eyes " "  
 



 
sonoangeloSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Upgrading To Icy Phoenix 
 
look i'v uploaded all to root see here

http://www.themusicplanet.eu/public/   ----> Home Page

http://www.themusicplanet.eu/public/update_to_ip.php  ----> Update Page


If someone have the solution please post here  
 



 
sonoangeloSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Upgrading To Icy Phoenix 
 
Yes, that's because you have upload first the files and you MUST run the update first

run this sql and check

Code: [Download] [Hide]
  1. ALTER TABLE `phpbb_users` ADD `ct_search_time` INT( 11 ) NULL DEFAULT 1 AFTER `user_newpasswd`;  
  2. ALTER TABLE `phpbb_users` ADD `ct_search_count` MEDIUMINT( 8 ) NULL DEFAULT 1 AFTER `ct_search_time`;  
  3. ALTER TABLE `phpbb_users` ADD `ct_last_mail` INT( 11 ) NULL DEFAULT 1 AFTER `ct_search_count`;  
  4. ALTER TABLE `phpbb_users` ADD `ct_last_post` INT( 11 ) NULL DEFAULT 1 AFTER `ct_last_mail`;  
  5. ALTER TABLE `phpbb_users` ADD `ct_post_counter` MEDIUMINT( 8 ) NULL DEFAULT 1 AFTER `ct_last_post`;  
  6. ALTER TABLE `phpbb_users` ADD `ct_last_pw_reset` INT( 11 ) NULL DEFAULT 1 AFTER `ct_post_counter`;  
  7. ALTER TABLE `phpbb_users` ADD `ct_enable_ip_warn` TINYINT( 1 ) NULL DEFAULT 1 AFTER `ct_last_pw_reset`;  
  8. ALTER TABLE `phpbb_users` ADD `ct_last_used_ip` VARCHAR( 16 ) NULL DEFAULT '0.0.0.0' AFTER `ct_enable_ip_warn`;  
  9. ALTER TABLE `phpbb_users` ADD `ct_last_ip` VARCHAR( 16 ) NULL DEFAULT '0.0.0.0' AFTER `ct_last_used_ip`;  
  10. ALTER TABLE `phpbb_users` ADD `ct_login_count` MEDIUMINT( 8 ) NULL DEFAULT 1 AFTER `ct_last_used_ip`;  
  11. ALTER TABLE `phpbb_users` ADD `ct_login_vconfirm` TINYINT( 1 ) NULL DEFAULT 0 AFTER `ct_login_count`;  
  12. ALTER TABLE `phpbb_users` ADD `ct_last_pw_change` INT( 11 ) NULL DEFAULT 1 AFTER `ct_login_vconfirm`;  
  13. ALTER TABLE `phpbb_users` ADD `ct_global_msg_read` TINYINT( 1 ) NULL DEFAULT 0 AFTER `ct_last_pw_change`;  
  14. ALTER TABLE `phpbb_users` ADD `ct_miserable_user` TINYINT( 1 ) NULL DEFAULT 0 AFTER `ct_global_msg_read`;  
  15.  
  16. CREATE TABLE `phpbb_ctracker_config` (  
  17.     `ct_config_name` varchar(255) NOT NULL,  
  18.     `ct_config_value` varchar(255) NOT NULL,  
  19.     PRIMARY KEY  (`ct_config_name`)  
  20.     );  
  21.  
  22. CREATE TABLE `phpbb_ctracker_filechk` (  
  23.     `filepath` text,  
  24.     `hash` varchar(32) default NULL  
  25.     );  
  26.  
  27. CREATE TABLE `phpbb_ctracker_filescanner` (  
  28.     `id` smallint(5) NOT NULL,  
  29.     `filepath` text,  
  30.     `safety` smallint(1) NOT NULL default '0',  
  31.     PRIMARY KEY  (`id`)  
  32.     );  
  33.  
  34. CREATE TABLE `phpbb_ctracker_ipblocker` (  
  35.     `id` mediumint(8) unsigned NOT NULL,  
  36.     `ct_blocker_value` varchar(250) default NULL,  
  37.     PRIMARY KEY  (`id`)  
  38.     );  
  39.  
  40. CREATE TABLE `phpbb_ctracker_loginhistory` (  
  41.     `ct_user_id` int(10) default NULL,  
  42.     `ct_login_ip` varchar(16) default NULL,  
  43.     `ct_login_time` int(11) NOT NULL default '0'  
  44.     );  

 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Upgrading To Icy Phoenix 
 
oh damn   reupload the old or run this sql query? xcuse me for the time tha you lose for me  
 



 
sonoangeloSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Upgrading To Icy Phoenix 
 
run that sql and try to run update first
 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Upgrading To Icy Phoenix 
 
now tell me this error   the update went right , but now i have a block problem
 



 
sonoangeloSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Upgrading To Icy Phoenix 
 
what problem?
 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Upgrading To Icy Phoenix 
 
look now


Template->make_filename(): Error - template file not found: portal_page_headerleft.tpl

i HAVE that file  
 



 
sonoangeloSend private messageVisit poster's website  
Back to topPage bottom
Post new topic  This topic is locked: you cannot edit posts or make replies.  Page 1 of 3
Goto page 1, 2, 3  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