ispCP - Board - Support
release rc3, and other things - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Development Area (/forum-1.html)
+--- Forum: Suggestions (/forum-2.html)
+--- Thread: release rc3, and other things (/thread-503.html)

Pages: 1 2 3


RE: release rc3, and other things - Zothos - 05-17-2007 01:50 AM

digibyte Wrote:RC2c released.

yay ^^


RE: release rc3, and other things - vetch101 - 05-17-2007 04:16 AM

digibyte Wrote:
Illidan Wrote:If i want to update from RC2b to RC2c must i use the uninstall file in the setup folder?

Or only backup the database, delte the vu2000 user and use then the setup from the rc2c?
No, do not use the uninstall file.
Backup the database (in case something goes wrong), delete the vu2000 user and the vu2000 group and then run the RC2c setup.

Hi,

I've just upgraded to RC2c and my users seem to have disappeared from the database...

Can I just restore the database backup I took - or will that confuse it?

Cheers,

Jx


RE: release rc3, and other things - grungy - 05-17-2007 04:35 AM

digibyte Wrote:RC2c released.

Nothing important but when I log in as admin to RC2c in the upper corner I get an error saying :

Code:
Warning: fclose(): supplied argument is not a valid stream resource in /var/www/ispcp/gui/admin/index.php on line 96



RE: release rc3, and other things - Floxxx - 06-25-2007 04:22 AM

grungy Wrote:
digibyte Wrote:RC2c released.

Nothing important but when I log in as admin to RC2c in the upper corner I get an error saying :

Code:
Warning: fclose(): supplied argument is not a valid stream resource in /var/www/ispcp/gui/admin/index.php on line 96

I have the same, however only when bind is not running (i have my DNS externally). So maybe that's something to look into...

made a quick fix for this by changing:
[/code]
Code:
$dh2 = @fopen($last_update,'r');
$last_update_result = (int)@fread($dh2, 8);
fclose($dh2);

to:

Code:
$dh2 = @fopen($last_update,'r');
$last_update_result = 0;
if ( $dh2 ) {
        $last_update_result = (int)@fread($dh2, 8);
        fclose($dh2);
}