|
Page 3 of 4
|
Joshua203 
Joshua 203
Dutch A Go Go

Joined: August 2008
Posts: 1754
Location:  Earth, Europe, the Netherlands, Rotterdam
|
 Re: Problem Update To 2.0 Version
Quote: If i put: http://www.kungfumania.es/ip/install/install.php with the change in the config.php file change 'define('PHPBB_INSTALLED', true);' by 'define('IP_INSTALLED', true);'
Why would you run anything from the ip directory?... it should not even exist in your setup
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
|
#31 Sat 27 Apr, 2013 17:34 |
|
Sponsors

|
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.
|
| |
spirit22 
Joined: April 2013
Posts: 51
|
 Re: Problem Update To 2.0 Version
Why would you run anything from the ip directory?... it should not even exist in your setup 
I only try run that because here http://www.icyphoenix.com/docs/readme_english.html#upgrade_ip
says:
18. Run install/install.php since you need to run Add Uploaded Images To DB (Upgrading from Icy Phoenix 1.3 or above) to add all uploaded images to DB (i.e. http://www.mysite.com/ip/install/install.php).
I've tried both ways and neither works. I only get a blank page, it does nothing
|
#32 Sat 27 Apr, 2013 18:06 |
|
Joshua203 
Joshua 203
Dutch A Go Go

Joined: August 2008
Posts: 1754
Location:  Earth, Europe, the Netherlands, Rotterdam
|
 Re: Problem Update To 2.0 Version
public_html/config.php exists?
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
|
#33 Sat 27 Apr, 2013 18:37 |
|
spirit22 
Joined: April 2013
Posts: 51
|
 Re: Problem Update To 2.0 Version
Yes, is the last config.php of my forum with data access to db.
|
#34 Sat 27 Apr, 2013 18:40 |
|
Joshua203 
Joshua 203
Dutch A Go Go

Joined: August 2008
Posts: 1754
Location:  Earth, Europe, the Netherlands, Rotterdam
|
 Re: Problem Update To 2.0 Version
config.php should be the old one from the old forum.
Please point your browser to adm/erc.php and clear the cache.
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
|
#35 Sat 27 Apr, 2013 18:52 |
|
spirit22 
Joined: April 2013
Posts: 51
|
 Re: Problem Update To 2.0 Version
Cache cleared.
And now when i try www.kungfumania.es/install/instal.php says:
config.php could not be found.
Click here to install Icy Phoenix
|
#36 Sat 27 Apr, 2013 19:04 |
|
Joshua203 
Joshua 203
Dutch A Go Go

Joined: August 2008
Posts: 1754
Location:  Earth, Europe, the Netherlands, Rotterdam
|
 Re: Problem Update To 2.0 Version
Please try again to re-upload/overwrite with the old config.php
For some reason it stays missing, even if you say it is there ( public_html/config.php ).
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
|
#37 Sat 27 Apr, 2013 19:32 |
|
spirit22 
Joined: April 2013
Posts: 51
|
 Re: Problem Update To 2.0 Version
I reupload and rewrite the old config.php but i have the same error.
And the file is there good.
|
#38 Sat 27 Apr, 2013 19:43 |
|
Joshua203 
Joshua 203
Dutch A Go Go

Joined: August 2008
Posts: 1754
Location:  Earth, Europe, the Netherlands, Rotterdam
|
 Re: Problem Update To 2.0 Version
content of config.php is PHPBB_INSTALLED again?
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
|
#39 Sat 27 Apr, 2013 19:55 |
|
spirit22 
Joined: April 2013
Posts: 51
|
 Re: Problem Update To 2.0 Version
Yes  It's bad?
|
#40 Sat 27 Apr, 2013 20:03 |
|
Joshua203 
Joshua 203
Dutch A Go Go

Joined: August 2008
Posts: 1754
Location:  Earth, Europe, the Netherlands, Rotterdam
|
 Re: Problem Update To 2.0 Version
edit your config.php to this
<?php
// Icy Phoenix auto-generated config file
// Do not change anything in this file!
$dbms = 'mysql4';
$dbhost = 'localhost';
$dbname = 'xxx';
$dbuser = 'editedbyspirit22'; USER EDITED
$dbpasswd = 'editedbyspirit22'; PASSWORD EDITED
$table_prefix = 'ip_3';
define('IP_INSTALLED', true);
?>
save it and try
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
|
#41 Sat 27 Apr, 2013 20:07 |
|
spirit22 
Joined: April 2013
Posts: 51
|
 Re: Problem Update To 2.0 Version
And I get many errors of 'Resource Limit Is Reached' but the personal of hosting says it's script error of the instalation.
|
#42 Sat 27 Apr, 2013 20:12 |
|
Joshua203 
Joshua 203
Dutch A Go Go

Joined: August 2008
Posts: 1754
Location:  Earth, Europe, the Netherlands, Rotterdam
|
 Re: Problem Update To 2.0 Version
Show error "session_last_visit" no exist.
phpMyAdmin and SQL tab (into Icy DB)
- DROP TABLE `phpbb_sessions`;
-
- CREATE TABLE `phpbb_sessions` (
- `session_id` VARCHAR(32) NOT NULL DEFAULT '',
- `session_user_id` MEDIUMINT(8) NOT NULL DEFAULT '0',
- `session_start` INT(11) NOT NULL DEFAULT '0',
- `session_time` INT(11) NOT NULL DEFAULT '0',
- `session_ip` VARCHAR(40) NOT NULL DEFAULT '0',
- `session_browser` VARCHAR(255) DEFAULT '' NOT NULL,
- `session_page` VARCHAR(255) NOT NULL DEFAULT '',
- `session_logged_in` TINYINT(1) NOT NULL DEFAULT '0',
- `session_forum_id` MEDIUMINT(8) UNSIGNED DEFAULT '0' NOT NULL,
- `session_topic_id` MEDIUMINT(8) UNSIGNED DEFAULT '0' NOT NULL,
- `session_last_visit` INT(11) UNSIGNED DEFAULT '0' NOT NULL,
- `session_forwarded_for` VARCHAR(255) DEFAULT '' NOT NULL,
- `session_viewonline` TINYINT(1) UNSIGNED DEFAULT '1' NOT NULL,
- `session_autologin` TINYINT(1) UNSIGNED DEFAULT '0' NOT NULL,
- `session_admin` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`session_id`),
- KEY `session_user_id` (`session_user_id`),
- KEY `session_fid` (`session_forum_id`)
- );
-
- DROP TABLE `phpbb_sessions_keys`;
-
- CREATE TABLE `phpbb_sessions_keys` (
- `key_id` VARCHAR(32) NOT NULL DEFAULT '0',
- `user_id` MEDIUMINT(8) NOT NULL DEFAULT '0',
- `last_ip` VARCHAR(40) NOT NULL DEFAULT '',
- `last_login` INT(11) NOT NULL DEFAULT '0',
- PRIMARY KEY (`key_id`,`user_id`),
- KEY `last_login` (`last_login`)
- );
-
- ## `phpbb_sessions_keys`
And working... 
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
|
#43 Sat 27 Apr, 2013 20:26 |
|
spirit22 
Joined: April 2013
Posts: 51
|
 Re: Problem Update To 2.0 Version
Don't work
|
#44 Sat 27 Apr, 2013 20:40 |
|
Joshua203 
Joshua 203
Dutch A Go Go

Joined: August 2008
Posts: 1754
Location:  Earth, Europe, the Netherlands, Rotterdam
|
 Re: Problem Update To 2.0 Version
ok ..I took a better look at this image
Please try running the suggested SQL insert query
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
|
#45 Sat 27 Apr, 2013 20:52 |
|
|
Page 3 of 4
|
Was this topic useful?
Was this topic useful?
| Link this topic |
| URL |
|
| BBCode |
|
| HTML |
|
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
|
|
|
|