Previous Thread
Next Thread
Print Thread
Rate Thread
Page 2 of 2 1 2
#1666 11/01/2001 3:39 AM
Joined: Nov 2000
Posts: 166
Member
Member
Offline
Joined: Nov 2000
Posts: 166
i cant figure out this Beyond Compare thing. i have alot of hacks i just installed in the last 7 days. i know i dont have to upgrade, but i want to keep up with the newest version.

anybody wanna do this for me? laugh

QUESTION: are ALL the files that are in the upgrade file NEEDED for the upgrade???

[ 11-01-2001: Message edited by: DJSharp ]

Sponsored Links
#1667 11/01/2001 10:15 PM
Joined: Jun 2001
Posts: 729
Coder
Coder
Offline
Joined: Jun 2001
Posts: 729
Quote
quote:
DJ, you might want to wait on upgrading as many hacks are still in the process of being updated for UBB v6.1.0.2

#1668 11/08/2001 12:32 AM
Joined: Apr 2001
Posts: 164
Member
Member
Offline
Joined: Apr 2001
Posts: 164
I'm screwed. I tried to trim my member files with newstrip.cgi and I get this error:

Can't continue after import errors at newstrip.cgi line 12 BEGIN failed--compilation aborted at newstrip.cgi line 12.


Now what? I can't upgrade because of the hacks adding fields to my member files and now the program that fixes it won't run!! AARGH!!

Do I have to start clean and have my 2000 members reregister or is there a way to import messages and members from the old to the new version??

Here is the start of newstrip. What is in line 12 that is causing the problem all you CGI literates??

#!/usr/local/bin/perl
#
# UBB Member Field Stripper, 2.0
# Copyright 2001 Infopop Corporation
#
# WARNING: This is an EXPERIMENTAL BETA SCRIPT.
# Use this script at your OWN RISK.
# We offer NO official support for this script!

use strict;
use CGI qw(:standard);
use CGI::Carp qw(fatalsToBrowser set_message);
set_message(&ErrorHandler);
use vars qw(%in @memberslist $memberspath);

%in = map{$_ => param($_)} param();

my($vc, $us) = ("./vars_config.cgi", "./UltBB.setup");

if(!-e $vc && !-e $us) {
&StandardHTML("Error", "Sorry, I was unable to find either a
vars_config.cgi or a UltBB.setup file.
Please make sure that you have placed this file in the UBB's
CGI directory!");
} elsif(-e $vc && !-e $us) {
open(FILE, "<$vc") or die "$! opening $vc";
my @lines = ;
close(FILE);
foreach(@lines) { chomp; }
my @pathline = grep(/MembersPath/, @lines);
$pathline[0] =~ m/=>(.+)$/;
my $closer = $1;
$closer =~ s/^s+//g;
$closer =~ s/s+$//g;
$closer =~ s/,$//g;
$closer =~ s/['"`]//g;
$closer =~ s/^q+~//;
$closer =~ s/~$//;
if(!-e "$closer/memberslist.cgi") {
&StandardHTML("Error", "The MembersPath I detected, '$closer',
does not seem to exist. I could not find the memberslist
file.");
} else {
$memberspath = $closer;
}
open(FILE, "<./vars_misc.cgi") or die "$! opening vars_misc";
my @misc = ;
close(FILE);
foreach(@misc) { chomp; }
my @closedline = grep(/BBStatus/, @misc);
$closedline[0] =~ m/=>(.+)$/;
my $thiscloser = $1;
$thiscloser =~ s/^s+//g;
$thiscloser =~ s/s+$//g;
$thiscloser =~ s/,$//g;
$thiscloser =~ s/['"`]//g;
$thiscloser =~ s/^q+~//;
$thiscloser =~ s/~$//;
if($thiscloser !~ m/OFF/i) {
&StandardHTML("Error", "Your UBB must be OFF before this

[ 11-07-2001: Message edited by: Rinkrat ]

#1669 11/08/2001 3:01 PM
Joined: Jan 2000
Posts: 5,073
Admin Emeritus
Admin Emeritus
Joined: Jan 2000
Posts: 5,073
Make sure it's in your UBB directory, then change the

use CGI::Carp qw(fatalsToBrowser set_message);

line to read:

use UBBCGI::Carp qw(fatalsToBrowser set_message);


UBB.classic: Love it or hate it, it was mine.
#1670 11/11/2001 10:45 AM
Joined: Apr 2001
Posts: 164
Member
Member
Offline
Joined: Apr 2001
Posts: 164
I guess they tweaked the install file so it would allow me to install without running the member file trimmer. I'm up to date now and ready to reinstall all my mods! smile smile

Thanks for the help guys.

Sponsored Links
#1671 11/11/2001 4:13 PM
Joined: Oct 2001
Posts: 6
Junior Member
Junior Member
Offline
Joined: Oct 2001
Posts: 6
Does anyone know if Version 6.1.x will allow NO BACKGROUND's in the message cells (table headers, footers, columns, etc?
(I'd like the html page background, a graphic, to show through, but the Style Templates page in Version 6.05 .doesn't allow it.---it requires that an html color be specified...)
Thanks eversomuch....

#1672 11/12/2001 2:14 AM
Joined: Apr 2001
Posts: 164
Member
Member
Offline
Joined: Apr 2001
Posts: 164
My 6.1.02 is finally installed but it is so slow that it just hangs half the time. I pretty much uploaded nearly every file from a full copy after upgrading to same my members and conferences but it is so bogged down that the pages won't even load.

If I delete vars_config.cgi then refill in the data on the opening screen it will run fast for 5 minutes then bog down again. I even deleted nearly all of the vars files and filled them in one a time but it still hangs after a few minutes. I rebuilt all the stat and forum and member files but it still as like a snail.

Any ideas what the problem is?? THe rest of my site is fine so it's not the servers,

#1673 12/16/2001 9:02 PM
Joined: Dec 2001
Posts: 1
Junior Member
Junior Member
Offline
Joined: Dec 2001
Posts: 1
Does UBB 6.1.0.3 come in php and cgi versions? Im gonna buy a license soon and just wanna know if 6.1.0.3 is available in both forms.

#1674 12/16/2001 9:18 PM
Joined: Nov 2001
Posts: 745
Admin Emeritus
Admin Emeritus
Offline
Joined: Nov 2001
Posts: 745
quote:
Originally posted by SomeGuy:
Does UBB 6.1.0.3 come in php and cgi versions? Im gonna buy a license soon and just wanna know if 6.1.0.3 is available in both forms.



It's just 1 version. With the option to turn on the PHP accelerator.

#1675 12/16/2001 9:25 PM
Joined: Jun 2001
Posts: 297
Member
Member
Offline
Joined: Jun 2001
Posts: 297
No only in CGI, but it loads faster when the php accelerator is turned on via Control Panel > Configuration Settings

Sponsored Links
#1676 12/16/2001 9:52 PM
Joined: Jan 2000
Posts: 5,073
Admin Emeritus
Admin Emeritus
Joined: Jan 2000
Posts: 5,073
It's usually best to start new topics in the appropriate forum rather than taking on a post to an announcement that is months old...


UBB.classic: Love it or hate it, it was mine.
Page 2 of 2 1 2

Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
Gizmo
Gizmo
Portland, OR, USA
Posts: 5,833
Joined: January 2000
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20221218)