The following warnings occurred:
Warning [2] Undefined array key "lockoutexpiry" - Line: 94 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 94 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "lockoutexpiry" - Line: 573 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 573 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined variable $can_access_moderationqueue - Line: 752 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 752 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 892 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 892 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 892 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 892 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined variable $awaitingusers - Line: 34 - File: global.php(959) : eval()'d code PHP 8.1.31 (Linux)
File Line Function
/global.php(959) : eval()'d code 34 errorHandler->error
/global.php 959 eval
/printthread.php 16 require_once
Warning [2] Undefined array key "style" - Line: 1024 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 1024 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$lang_select_default - Line: 5308 - File: inc/functions.php PHP 8.1.31 (Linux)
File Line Function
/inc/functions.php 5308 errorHandler->error
/global.php 1024 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key 1 - Line: 1474 - File: inc/functions.php PHP 8.1.31 (Linux)
File Line Function
/inc/functions.php 1474 errorHandler->error
/inc/functions.php 1429 fetch_forum_permissions
/printthread.php 76 forum_permissions
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 165 errorHandler->error



Forums
SVN download for vdrift-data (tracks&cars) not working at SourceForge? - Printable Version

+- Forums (https://www.vdrift.net/Forum)
+-- Forum: Community (https://www.vdrift.net/Forum/forumdisplay.php?fid=3)
+--- Forum: Help (https://www.vdrift.net/Forum/forumdisplay.php?fid=5)
+--- Thread: SVN download for vdrift-data (tracks&cars) not working at SourceForge? (/showthread.php?tid=2198)



SVN download for vdrift-data (tracks&cars) not working at SourceForge? - arturo - 11-11-2015

Hello,
When trying "Download Snapshot" for the two folders I want (nuerburgring_nordschleife and ring2007) I end up getting "We're having trouble finding that snapshot. Would you like to resubmit?", which of course I do, to no avail. By the way, I am using Debian, but I don't think this matters here.
Am I missing something, or is it just a problem with SourceForge?
As a temporary solution, if anyone who has these tracks is so kind as to uploading them somewhere and posting the link here, I'll be most thankful.


RE: SVN download for vdrift-data (tracks&cars) not working at SourceForge? - jenn4 - 11-12-2015

Debian probably is not the factor that causes your problem, but it is your savior in your situation. Just follow these steps.

1. Install the subversion package.
Code:
# apt-get install subversion

2. Open a terminal client. CTRL+ALT+T should work.

3. Navigate into your vdrift/tracks. If you have installed vdrift through apt-get your vdrift folder is ~/.vdrift. It however might not have a tracks/ folder. If this is the case, run
Code:
$ mkdir tracks

4. Download the tracks using subversion (svn):
Code:
$ svn co https://vdrift.svn.sourceforge.net/svnroot/vdrift/vdrift-data/tracks/nuerburgring_nordschleife
$ svn co https://vdrift.svn.sourceforge.net/svnroot/vdrift/vdrift-data/tracks/ring2007

5. Start the game. Now the tracks should be there.

You could also download the whole tracks folder with
Code:
$ svn co https://vdrift.svn.sourceforge.net/svnroot/vdrift/vdrift-data/tracks/

If there are any problems with these commands, please ask for help. I have not tested these instructions on debian, although I have done something similiar with my arch system.


RE: SVN download for vdrift-data (tracks&cars) not working at SourceForge? - arturo - 11-13-2015

Worked like a charm, thank you!