Previous Thread
Next Thread
Print Thread
Rate Thread
#56933 12/03/2003 5:31 PM
Joined: May 2001
Posts: 684
Code Monkey
Code Monkey
Offline
Joined: May 2001
Posts: 684
Hi,

can someone rewrite the backup hack for 6.6?
Allen has no time yet... frown


Webmaster of d-talk & Kabel-Forum.com
Sponsored Links
#56934 12/03/2003 10:42 PM
Joined: Jun 2001
Posts: 2,849
Spotlight Winner
Spotlight Winner
Offline
Joined: Jun 2001
Posts: 2,849
PLEASE???? I really miss having this hack.

#56935 12/04/2003 8:07 PM
Joined: Jul 2003
Posts: 273
Member
Member
Offline
Joined: Jul 2003
Posts: 273
I don't know what it is.... but.... YEAH!

rabble! rabble! rabble!...... *shakes fist*

wink

#56936 12/04/2003 8:38 PM
Joined: Jun 2001
Posts: 2,849
Spotlight Winner
Spotlight Winner
Offline
Joined: Jun 2001
Posts: 2,849
It was a hack that allowed you to open the CP and select from four options, members, cgi-bin, noncgi or a custom folder. Once you made that choice it would gunzip the files and download them from your noncgi folder. The last step was a delete button that would delete the backup file from the noncgi folder for you.

It was a great tool and even though it didn't work on all servers (no Windows) it was loved by one and all (almost).

#56937 12/05/2003 5:29 AM
Joined: Mar 2002
Posts: 64
Member
Member
Offline
Joined: Mar 2002
Posts: 64
Yes please!!!!

Sponsored Links
#56938 12/05/2003 5:18 PM
Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
How about a (working) link to a past version's install so we can see what we have to deal with and how hard of a task it'll be... The procedures to run the backup should be the same, the only change would be to make it cp compatable (and guess who doesn't know it too well yet!)...

I was thinking that there may be a procedure to backup the document as a zip file somehow but i'm not too sure ;/...


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
#56939 12/05/2003 5:34 PM
Joined: May 2001
Posts: 684
Code Monkey
Code Monkey
Offline
Joined: May 2001
Posts: 684
Here it is:

DOWNLOADLINK wink


Webmaster of d-talk & Kabel-Forum.com
#56940 12/06/2003 5:07 PM
Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
I'll try to have someone look into it heh... It's all CP side so I can't do it till i understand it a bit better...


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
#56941 12/07/2003 11:13 AM
Joined: Mar 2002
Posts: 64
Member
Member
Offline
Joined: Mar 2002
Posts: 64
on a Unix system will be very easy to write a bash script with cron for a back up...

#56942 12/07/2003 12:45 PM
Joined: Jun 2001
Posts: 2,849
Spotlight Winner
Spotlight Winner
Offline
Joined: Jun 2001
Posts: 2,849
The whole idea of this script is that you get to do it whenever you want from the CP of the UBB. We know there are other ways but different sites on different hosts have different levels of access. this is a UBB function. Very elegant solution for the people that aren't on Windows servers.

I use the command line enabled version of WinZip on IIS 6 boxes. Frikkin' wonderful product it is. smile

Sponsored Links
#56943 12/07/2003 1:17 PM
Joined: Jan 2003
Posts: 3,456
Likes: 2
Master Hacker
Master Hacker
Offline
Joined: Jan 2003
Posts: 3,456
Likes: 2
could someone post a screenshot of how it looks in the old CP? I'm considering doing this, but I'm having trouble picturing it

#56944 12/07/2003 3:44 PM
Joined: May 2001
Posts: 684
Code Monkey
Code Monkey
Offline
Joined: May 2001
Posts: 684
Here it is

[Linked Image]


Webmaster of d-talk & Kabel-Forum.com
#56945 12/07/2003 4:13 PM
Joined: Jan 2003
Posts: 3,456
Likes: 2
Master Hacker
Master Hacker
Offline
Joined: Jan 2003
Posts: 3,456
Likes: 2
I'll give it a shot this week, working on another nice mod at the moment

#56946 12/07/2003 4:37 PM
Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Al: Just a sugguestion, for the tar commands, use the set included in that UBBDev article for backing up your boards (since that's prettymuch all this script uses is tar):

Code
#UBB.classic backup

tar -cf backup.cgi.tar.gz /var/www/cgi-bin/ubbcgi
tar -cf backup.noncgi.tar.gz /var/www/html/ubb --exclude=/var/www/html/ubb/cach$
tar -cf backup.members.tar.gz /var/www/Members

tar -czf /var/www/backups

rm /var/www/backups/backup.cgi.tar.gz
rm /var/www/backups/backup.noncgi.tar.gz
rm /var/www/backups/backup.members.tar.gz

# done!
Tar is the tar code, rm is remove, exclude is telling it to ignore the cache...

The sections you'd probably want for backup:
CGI (for CGI and Vars)
NonCGI (minus Cache)
Members
Entire Board

you'd probably have to build a few functions though heh...


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
#56947 12/13/2003 8:48 AM
Joined: May 2001
Posts: 684
Code Monkey
Code Monkey
Offline
Joined: May 2001
Posts: 684
Is someone still working now on this hack?


Webmaster of d-talk & Kabel-Forum.com
#56948 12/13/2003 3:00 PM
Joined: Jun 2001
Posts: 2,849
Spotlight Winner
Spotlight Winner
Offline
Joined: Jun 2001
Posts: 2,849
*hopes*

#56949 12/13/2003 3:36 PM
Joined: Jan 2003
Posts: 3,456
Likes: 2
Master Hacker
Master Hacker
Offline
Joined: Jan 2003
Posts: 3,456
Likes: 2
if someone else wants to work on it, it's fine. It's Finals week for me, so I'm swamped

#56950 12/13/2003 10:55 PM
Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Al is working on it, after finals anyway lol...


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts

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
isaac
isaac
California
Posts: 1,157
Joined: July 2001
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)