vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Uploading to External Server (https://vborg.vbsupport.ru/showthread.php?t=73741)

kompakt 01-04-2005 04:18 AM

Uploading to External Server
 
I'm trying to find a script that will allow uploading files to an external server, different from where the forum is installed. It will be an IIS server on a personal computer with 400gigz of space. There was a similar hack installed on vb2.

Thanks...

kompakt 01-10-2005 04:19 PM

bump... any ideas?

scotty 01-10-2005 08:23 PM

this is the script I'm using to transfer my avatars to a different server - maybe that would be helpfull...

PHP Code:

<?php
$FTP_HOST 
="www.YOURDOMAIN.com";
$FTP_USER ="YOURUSERNAME";
$FTP_PW  ="YOURPASSWORD";
$FTP_ROOT_DIR="/";
$LOCAL_SERVER_DIR  "avatars/";
$FTP_DIR "REMOTE/DRICTORY";
$handle=opendir($LOCAL_SERVER_DIR);
while ((
$file readdir($handle))!==false)
{
   if(!
is_dir($file)){
       
$f[]="$file";       
     }
}
closedir($handle);
sort($f);
$count=0;
$mode FTP_BINARY
$conn_id ftp_connect($FTP_HOST);
if(
ftp_login($conn_id$FTP_USER$FTP_PW)){
   print 
"from: ".$LOCAL_SERVER_DIR."<br>";
   print 
"to: ".$FTP_HOST.$FTP_ROOT_DIR.$FTP_DIR."<br>";
   
ftp_pwd($conn_id);
   
ftp_chdir($conn_id,$FTP_DIR);
   foreach(
$f as $files) {
       
$from fopen($LOCAL_SERVER_DIR.$files,"r");   
       if(
ftp_fput($conn_id$files$from$mode)){
           
$count +=1;
//           print $files."<br>";
       
}
   }
   
ftp_quit($conn_id);
}
print 
"upload : $count files.";
?>

this script is scheduled by the admincp/cron once an hour.

scotty

kompakt 01-11-2005 01:35 AM

Thanks, I can see what your script does. The problem with this is that the attachments do not upload to the forum server as individual static files. So copying them to an external server might not do the trick. I'll need to embed this into the upload script somehow.

Marco van Herwaarden 01-11-2005 03:25 AM

How do you mean they not upload as individual files?

kompakt 01-12-2005 12:14 AM

Yes they do Marco. But they dont save as individual files on the server. The attachments have their own way of storage. I looked at the folder where they save to and it looks like this:

\attach\1\...9\

All the files are named ####.attach on the server. But within the forum, each file shows the origional attachment name as uploaded (.jpg, .txt, .mp3)

deathemperor 01-12-2005 06:27 AM

the attachments are stored in the database, not in your storage.
thanks scotty for the script. You give me the idea how to upload from a server to another.

edit: it's possible to query a remote server from the local one, that way you can store attachment in your desired server and it's still use the database. but this requires a lot of changes I think.

Marco van Herwaarden 01-12-2005 06:33 AM

@deathemperor

Well vB give you the choice where to store them, in the database or in the filesystem.

@kompakt
They DO save as individual files if stored on filesystem. they are however not named the same as teh attachment. Wanted to research how to relate a filename on filesystem back to the attachment name, but never found time for doing so, but i guess others already have.

deathemperor 01-12-2005 07:08 AM

oh I thought I've seen it somewhere in vboptions ^^ but I was not sure.

by either way you have solutions...

Marco van Herwaarden 01-12-2005 07:25 AM

Quote:

Originally Posted by deathemperor
oh I thought I've seen it somewhere in vboptions ^^ but I was not sure.

by either way you have solutions...

You can find this setting in ACP-->Attachments-->Attachment Storage Type

You can choose to store all your attachments in database or filesystem.

And no, i didn't give a solution.


All times are GMT. The time now is 05:12 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01729 seconds
  • Memory Usage 1,753KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete