| Topic Archived |
View previous topic :: View next topic |
| Author |
Message |
ongaro Newbie


Offline Joined: Dec 17, 2004 Posts: 6
|
Posted: Fri Dec 17, 2004 7:50 am Post subject: No output after upgrade |
|
To evaluate DragonFly I made a copy of my working 8.2 MySQL db, installed 9.0 in a separate tree, edited the config.php file accordingly and pointed to install.php.
Everything was fine, but then I can't get any output, just
<html><body></body></html>
using Firefox.
The theme is the default one (cpgnuke).
I turned all possible debug option on, also display_errors in php.ini, but the result is always an empty frustrating screen. All logfiles are mute.
OS is Debian woody, Apache 1.3, php 4.3.8, MySQL 4.0.
If I install from the scratch (i.e. with an empty database) everything works fine, so the problem appears to be linked to the upgrade procedure.
ongaro's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) debian woody/apache 1.3/php 4.3.8/cpgnuke 8.2-9.0
|
|
| Back to top |
|
 |
dread Newbie


Offline Joined: Dec 19, 2004 Posts: 5
|
Posted: Sun Dec 19, 2004 2:23 am Post subject: Re: No output after upgrade |
|
did you try logging on as admin?
dread's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) searching for host (9.0)
|
|
| Back to top |
|
 |
Trevor Developer


Offline Joined: Apr 19, 2004 Posts: 2170 Location: New York
|
Posted: Sun Dec 19, 2004 2:26 am Post subject: Re: No output after upgrade |
|
Could you post your config.php file, with the password masked?
Trevor's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux / 1.3.34 / 4.1.18 / 4.4.2 / CVS
|
|
| Back to top |
|
 |
boris Newbie


Offline Joined: Jul 13, 2004 Posts: 26 Location: NJ
|
Posted: Mon Dec 20, 2004 3:23 pm Post subject: Re: No output after upgrade |
|
I'd like to report a very similar problem after the upgrade from 8.2b to 9.0. I have also copied 8.2b into a new tree, created a new database instance, and modified a config.php database information. Install went smoothly and gave me all greens in the end. However when I am running index.php or admin.php I am getting the blank screen back.
_________________ just fix it
boris's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linix/Apache1.3.34/MySQL4.1.13/PHP4.3.11/Dragonfly9.0.6.1
|
|
| Back to top |
|
 |
DJ Maze Developer


Offline Joined: Apr 19, 2004 Posts: 5683 Location: http://tinyurl.com/5z8dmv
|
Posted: Mon Dec 20, 2004 3:28 pm Post subject: Re: No output after upgrade |
|
Can you try a CVS snapshot which will be available at 18:00 GMT this evening ?
I've fixed a few bugs but the snapshot is not available yet.
It has some issues regarding PHP 4.3.5 and another about ini_set() solved.
DJ Maze's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Fedora 15 / 2.2.22 / 5.5.20 / 5.3.10 / CVS
|
|
| Back to top |
|
 |
Jeruvy Security Team


Offline Joined: Apr 23, 2004 Posts: 1432 Location: Canada
|
Posted: Tue Dec 21, 2004 1:00 am Post subject: Re: No output after upgrade |
|
Yes, when I upgraded I too had issues. Some of the tables in the database were not upgraded properly (this may well be a bug, but it's too vague for me to find).
Best to take a copy of your newly upgraded database and compare it against a fresh installed database and compare the two for differences.
_________________ J.
j e r u v y a t y a h o o d o t c o m
Need help? Look here: www.dragonflycms.org/W...d=112.html
Need to chat? Look for me on irc.freenode.net
Jeruvy's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Ubuntu7.10/Debian3.1 - 2.2.3/1.3.37 - 5.0.38/4.0.27 - 5.2.1/4.4.7 - CVS/9.1.2}
|
|
| Back to top |
|
 |
ongaro Newbie


Offline Joined: Dec 17, 2004 Posts: 6
|
Posted: Wed Dec 22, 2004 3:35 pm Post subject: Re: No output after upgrade |
|
I tried with the latest CVS snapshot, but the problem remains.
Here is my config.php file, with extra stuff removed.
<?php
if (!defined('CPG_NUKE')) { exit; }
define('DB_TYPE', 'mysql');
$dbhost = 'localhost';
$dbname = 'df';
$dbuname = 'root';
$dbpass = 'mypassword';
$prefix = 'cms';
$user_prefix = 'cms';
$adminindex = 'admin.php';
$mainindex = 'index.php';
define('CPGN_DEMO', false);
define('CPG_DEBUG', true);
.....
ongaro's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) debian woody/apache 1.3/php 4.3.8/cpgnuke 8.2-9.0
|
|
| Back to top |
|
 |
Phoenix • Many Posts •


Offline Joined: Apr 19, 2004 Posts: 8799 Location: Netizen
|
|
| Back to top |
|
 |
boris Newbie


Offline Joined: Jul 13, 2004 Posts: 26 Location: NJ
|
Posted: Wed Dec 22, 2004 9:07 pm Post subject: Re: No output after upgrade |
|
My install is on a host server.
Here is my config.php section (same as ongaro)
<?php
define('DB_TYPE', 'mysql');
if (!defined('CPG_NUKE')) { exit; }
$dbhost = 'localhost';
$dbname = 'mydb';
$dbuname = 'myname';
$dbpass = 'mypassword';
$prefix = 'cms';
$user_prefix = 'cms';
$adminindex = 'admin.php';
$mainindex = 'index.php';
define('CPGN_DEMO', false);
define('CPG_DEBUG', true);
....
I did a succesfull fresh install which contained 75 DB tables
My 8.2 DB has 112 tables due to the extra modules
An upgraded DB has 116 tables.
One of the modules I use is cpg NukeAmazone, also Amazense.
I know they might not work with 9.0 but would like to test this.
Tnx
_________________ just fix it
boris's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linix/Apache1.3.34/MySQL4.1.13/PHP4.3.11/Dragonfly9.0.6.1
|
|
| Back to top |
|
 |
ongaro Newbie


Offline Joined: Dec 17, 2004 Posts: 6
|
Posted: Thu Dec 23, 2004 2:21 pm Post subject: Re: No output after upgrade |
|
| Phoenix wrote: |
| I assume this is a local install? |
For the moment it's on our intranet.
MySQL and Apache are on the same box.
Security is relaxed.
ongaro's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) debian woody/apache 1.3/php 4.3.8/cpgnuke 8.2-9.0
|
|
| Back to top |
|
 |
Phoenix • Many Posts •


Offline Joined: Apr 19, 2004 Posts: 8799 Location: Netizen
|
Posted: Thu Dec 23, 2004 2:32 pm Post subject: Re: No output after upgrade |
|
ongaro,
so no prefixes needed for the dbname or dbusername, and you have used the config.php for 9.0.
Perhaps a path issue with the intranet, which I have seen reported before - at what point of the install process do you get blank screen? after what step?
_________________ • DonationsPro for DragonflyCMS, SMF, MyBB, vBulletin •
Phoenix's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
|
|
| Back to top |
|
 |
ongaro Newbie


Offline Joined: Dec 17, 2004 Posts: 6
|
Posted: Thu Dec 23, 2004 3:29 pm Post subject: Re: No output after upgrade |
|
OK,
perhaps I found where the bug is.
I commented out lines 69-92 from cmsinit.inc, and it started working.
I have php 4.3.8 configured with zlib using
--with-zlib-dir=/path-to-zlib-dir/zlib-1.2.1
Hope this can help (but what a damned job!)
ongaro's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) debian woody/apache 1.3/php 4.3.8/cpgnuke 8.2-9.0
|
|
| Back to top |
|
 |
DJ Maze Developer


Offline Joined: Apr 19, 2004 Posts: 5683 Location: http://tinyurl.com/5z8dmv
|
Posted: Thu Dec 23, 2004 5:14 pm Post subject: Re: No output after upgrade |
|
ongaro please specify which file revision # you have
DJ Maze's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Fedora 15 / 2.2.22 / 5.5.20 / 5.3.10 / CVS
|
|
| Back to top |
|
 |
boris Newbie


Offline Joined: Jul 13, 2004 Posts: 26 Location: NJ
|
Posted: Thu Dec 23, 2004 8:15 pm Post subject: Re: No output after upgrade |
|
Unfortunately commenting out 69-92 lines from cmsinit.inc did not solve
my problem.
_________________ just fix it
boris's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linix/Apache1.3.34/MySQL4.1.13/PHP4.3.11/Dragonfly9.0.6.1
|
|
| Back to top |
|
 |
Phoenix • Many Posts •


Offline Joined: Apr 19, 2004 Posts: 8799 Location: Netizen
|
Posted: Fri Dec 24, 2004 1:40 am Post subject: Re: No output after upgrade |
|
boris, do you have a test site link?
_________________ • DonationsPro for DragonflyCMS, SMF, MyBB, vBulletin •
Phoenix's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
|
|
| Back to top |
|
 |
|
|