The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
15 благодарности(ей) от: | ||
dellow, dlewisr, elsa23, findingpeace, Hostboard, kemana, nacaruncr, prandah, RichieBoy67, Rubio, sarvarjafari, seb5594, tareqbd, to_die4 |
Comments |
#702
|
||||
|
||||
:up:
cca 900MB Thanx |
#703
|
|||
|
|||
the backup does me fine, but when I put everything in the localhost - attachaments and avatars are not.
may be corrupted? What configuration of hack me? thanks |
#704
|
||||
|
||||
Mauro-
It is likely you have attachments and avatars set to be saved in the file system- this mod only backs up the database. You need to worry about coping files separately. Admin CP -> Attachments -> Attachment Storage Type and Admin CP -> Avatars -> User Picture Storage Type These places will tell you where your attachments and avatars are stored. |
#705
|
|||
|
|||
Quote:
To get things working: Update local path in /includes/config.php Update email options settings in vbulletin admin panel to reference new url (along with all the other settings) I had my attachments stored in the filesystem and in vbulletin, in a location specified as a crazy full server path which can only be changed by switching to debug mode: $config['Misc']['debug'] = 1; <<by adding that to the 2nd line of the config.php). Then a hidden item in the admin panel's option menu appears for "untouchables" (2nd on the list!) where the path can be changed (remembering to remove the debug mode line afterwards from config.php). |
#706
|
||||
|
||||
Quote:
all stopped working on aug 30th 2012.....my host dont seem to think its them..all files on my side have not changed and even reinstalled the mod...still no gzip. Host just emailed back and said everything fine on the server The gzip is installed on the server and working fine. Please have a look: ====================================== root@rs2 [~]# which gzip /bin/gzip root@rs2 [~]# gzip -V gzip 1.3.5 nothing has changed on my end.......time to find a new host I guess |
#707
|
|||
|
|||
I have everything stored in the database.
mm do not quite understand your answers. My English is bad. http://i.imgur.com/Bmhkf.png http://i.imgur.com/aFyTO.png http://i.imgur.com/s5ge5.png probe twice with two backs. Thanks for your answers. |
#708
|
||||
|
||||
I see you've made a separate thread- https://vborg.vbsupport.ru/showthrea...66#post2362366
Good idea because the error does not seem to be related to this mod. |
#709
|
||||
|
||||
Quote:
I can ssh and gzip the files but it still dont work from the MOD, gzip in this MOD has worked for 2 months since I installed it. It just stopped working a few days ago.... thanks for any help I have installed at another host also...same problem |
#710
|
|||
|
|||
I have found a script that incorporates a feature that will delete backups that are X days old. Is there a way to incorporate it into this Mod? Maybe in the next release?
http://www.wjunction.com/48-technica...up-script.html |
#711
|
|||
|
|||
I just tossed this code in there to keep only the latest 5 backups:
Code:
// Delete Old Backups
function deleteOLD($directory)
{
$dirs = array($directory);
$files = array();
$files = array_merge($files, scandir($directory, false));
unset($files[0]);
unset($files[1]);
sort($files);
// Loop over all but the 5 newest files and delete them
// Only need the array keys (filenames) since we don't care about timestamps now as the array will be in order
if (count($files) > 5)
{
for ($i = 0; $i < (count($files) - 5); $i++)
{
// You'll probably want to check the return value of this too
$file = $this->DUMP_PATH.$files[$i];
$this->removeFile($file);
echo "<i>[Deleting Old Backup - $file]</i><br />"; vbflush();
}
} else { echo "<i>[No Old Backups to Delete.]</i><br /><br />"; vbflush(); }
}
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|