Bravo List
Register
Go Back   > Bravo List > P2P > Forum > Downloads
Reply
  #1  
Old 8th March 2009, 12:47
fr33bh fr33bh is offline
Senior Member
 
Join Date: Jan 2008
Posts: 15
Default FTS 1.0.3 Pre-Beta
I want to release a new version, but before this i need someone to test the version.
If you want to help me, i can give you an up-to-date zip archive. I need people to install a fresh version and test it, and i need people to upgrade from 1.0.2 to this new version.
You can see the Trac, where changes are recored, here: Free Torrent Source - Trac .

You can access the SVN repository, here: http://my-svn.assembla.com/svn/freetosu/ .

Thanks in advance.

attention

Attention

Latest release of this source is FTS 1.1
In the future you can check for new versions of this source here http://sourceforge.net/projects/freetosu





Reply With Quote
The Following User Says Thank You to fr33bh For This Useful Post:
Phogo (17th March 2009)
  #2  
Old 8th March 2009, 13:37
Fynnon's Avatar
Fynnon Fynnon is offline
xxx
 
Join Date: Nov 2007
P2P
Posts: 984
Default
I`d like to test it, please send a copy to admin@bvlist.com
It will be installed here: http://guv2.com/fts

10x

PS The FTS versions released are strange, we have v1.2.3 also v2.0 then v1.0.2 and now v1.0.3 which doesn`t seem to make much sense

What it the correct versioning, did weget it wrong ?!
10x
Reply With Quote
  #3  
Old 8th March 2009, 14:58
Subzero's Avatar
Subzero Subzero is offline
Coder
 
Join Date: Jul 2008
P2P
Posts: 190
Default
Ye why not ill test it send to

darkcoder666@hotmail.com ;)
Reply With Quote
  #4  
Old 8th March 2009, 16:02
fr33bh fr33bh is offline
Senior Member
 
Join Date: Jan 2008
Posts: 15
Default
I have sent to both of you the link to download the beta version. Please tell me all the problems you can find.

Bump: and about the versionizing, i support only 1.x.x versions.... 2.0 is a old version, not developed anymore.

Bump: if you find anything that needs to be changed, please write that thing here: http://my-trac.assembla.com/freetosu/newticket . At milestone, select 1.0.3
Reply With Quote
  #5  
Old 8th March 2009, 16:42
Fynnon's Avatar
Fynnon Fynnon is offline
xxx
 
Join Date: Nov 2007
P2P
Posts: 984
Default
Installed here:
FTS 1.0.3 BETA Demo


1. Your ReadMe file says:
Quote:
Open /install/fresh_install.php in your browser.
but the file is called install_fresh.php


2.
I have this error on homepage:
Code:
Warning: Invalid argument supplied for foreach() in /var/www/vhosts/guv2.com/httpdocs/fts/include/libs/options/main_class.php on line 55
[0] in function dbv in /var/www/vhosts/guv2.com/httpdocs/fts/include/functions.php on line 1210
[1] in function ads in /var/www/vhosts/guv2.com/httpdocs/fts/fts-contents/templates/ANDiTKO/functions.php on line 74
[2] in function include in /var/www/vhosts/guv2.com/httpdocs/fts/fts-contents/templates/ANDiTKO/head.php on line 135
[3] in function include in /var/www/vhosts/guv2.com/httpdocs/fts/include/functions.php on line 1332
[4] in function stdhead in /var/www/vhosts/guv2.com/httpdocs/fts/login.php on line 6
3. forums.php is missing !



4.If i press the Staff Panel button i get an error (see screenshot)

Click image for larger version

Name:	3-8-2009 4-53-40 PM.png
Views:	17
Size:	30.4 KB
ID:	1065

5. In Admin CP at Tracker & Server Info i have this error:

Code:
Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/proc/loadavg) is not within the allowed path(s): (/var/www/vhosts/guv2.com/httpdocs:/tmp) in /var/www/vhosts/guv2.com/httpdocs/fts/administrator/serverinfo.php on line 521
[0] in function file_exists in /var/www/vhosts/guv2.com/httpdocs/fts/administrator/serverinfo.php on line 521
[1] in function get_serverload in /var/www/vhosts/guv2.com/httpdocs/fts/administrator/serverinfo.php on line 372
[2] in function get_generalinfo in /var/www/vhosts/guv2.com/httpdocs/fts/administrator/serverinfo.php on line 88
[3] in function display_serverinfo in /var/www/vhosts/guv2.com/httpdocs/fts/administrator/serverinfo.php on line 549
Reply With Quote
  #6  
Old 9th March 2009, 07:36
Edgein's Avatar
Edgein Edgein is offline
Senior Member
 
Join Date: Sep 2008
Netherlands
Posts: 154
Default Hello
You also can sent a copy to my
at elmo@super-tor.org
testing of a source is a hobby of my

grtzz
Reply With Quote
  #7  
Old 12th March 2009, 04:16
Keiichi Keiichi is offline
Senior Member
 
Join Date: Feb 2008
Brazil
Posts: 25
Default FTS 1.0.3 Pre-Beta fix 0.1
access the SVN repository

FTS 1.0.3 Pre-Beta
PHP Code:
............................
FTS 1.0.3 Pre-Beta_fix_0.1

;;;;;;;;;;;;;;;;;;;;;;;;;;;;
forums/post.php

Erro
 sql_query
("INSERT INTO posts (topicid, userid, added, body, subject) " .
    
"VALUES($topicid$userid$added$body, '$subject')") or sqlerr(__FILE____LINE__);

-----------------------------
fix ok
 sql_query
("INSERT INTO posts (topicid, userid, added, body, subject) " .
    
"VALUES($topicid$userid$added$body$subject)") or sqlerr(__FILE____LINE__);
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

admin/forummanage.php

Erro
echo "<tr><td><a href=forums.php?action=viewforum&forumid=".$row["id"]."><b>".$row["name"]."</b></a><br>".$row["description"]."</td>";
------------------------------
fix ok
echo "<tr><td><a href= $BASEURL/forums/viewforum.php?action=viewforum&forumid=".$row["id"]."><b>".$row["name"]."</b></a><br>".$row["description"]."</td>";

admin/moforums.php

Erro
echo "<tr><td><a href=forums.php?action=forumview&forid=".$row["id"]."><b>".$row["name"]."</b></a><br>".$row["description"]."</td>";
-------------------------------
fix ok
echo "<tr><td><a href= $BASEURL/forums/viewforum.php?action=forumview&forid=".$row["id"]."><b>".$row["name"]."</b></a><br>".$row["description"]."</td>";
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
include/
libs/main.php
Erro
$REPORTEMAIL 
FFactory::configoption($MAIN['reportemail'],"report@$_SERVER[HTTP_HOST]");

fix ok
$reportemail 
FFactory::configoption($MAIN['reportemail'],"report@$_SERVER[HTTP_HOST]");
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
fts-contents/fts-plugins/index-elements/wgo.php

fix add 
global function
function 
_index_element_wgo() {
    global 
$BASEURL$CURUSER$sessions;
--------------------------------
fts-contents/fts-plugins/index-elements/stats.php

fix erro add 
global function $maxusers

     
global $_c$maxusers;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
ADD pic/green-arrow-right.gif green-arrow.gif

ADD forums
.php users.php 
Sorry my bad English

Keiichi
Attached Files
File Type: rar FTS 1.0.3 Pre-Beta_fix_0.1.rar (4.32 MB, 112 views)
Reply With Quote
  #8  
Old 12th March 2009, 19:14
codedash codedash is offline
Senior Member
 
Join Date: Nov 2008
Posts: 20
Default
Install went very well. Very nice and with a lot of stuff to make life easy eg recaptcha! Thanks everybody for making this an open source project and especially fr33bh. I am moving to linux soon so i really appriciate this effort.
Reply With Quote
  #9  
Old 13th March 2009, 13:49
fr33bh fr33bh is offline
Senior Member
 
Join Date: Jan 2008
Posts: 15
Default
Ok guys, i fixed the errors you reported, and now i need people to test the release. I am making the download url publicly: ftp://ftp.berlios.de/pub/freetosu/fts-1.0.3-beta.zip . Test and report any errors you find. Thanks.
Reply With Quote
  #10  
Old 13th March 2009, 15:41
Keiichi Keiichi is offline
Senior Member
 
Join Date: Feb 2008
Brazil
Posts: 25
Default config pics
Quote:
Originally Posted by fr33bh View Post
Ok guys, i fixed the errors you reported, and now i need people to test the release. I am making the download url publicly: ftp://ftp.berlios.de/pub/freetosu/fts-1.0.3-beta.zip . Test and report any errors you find. Thanks.
fr33bh


clientside/signup/form-field-tooltip.js
PHP Code:
orig
this
.tooltipText false;
this.imagePath 'images/';
this.arrowImageFile 'green-arrow.gif';
this.arrowImageFileRight 'green-arrow-right.gif';

fix
this
.tooltipText false;
this.imagePath 'pic/';
this.arrowImageFile 'green-arrow.gif';
this.arrowImageFileRight 'green-arrow-right.gif'
add on /pic/green-arrow.gif /green-arrow-right.gif

signup.php
Click image for larger version

Name:	greenarrowrightsignupfo.jpg
Views:	61
Size:	109.5 KB
ID:	1092

/config
Click image for larger version

Name:	config.jpg
Views:	18
Size:	52.5 KB
ID:	1093
Attached Files
File Type: rar config_pics.rar (3.02 MB, 33 views)
File Type: rar form-field-tooltip.rar (4.6 KB, 13 views)
Reply With Quote
Reply

Tags
fts , prebeta

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
IPBTracker 3.0 Beta 1 Fynnon Downloads 2 17th December 2011 18:49
Beta gone? codedash Free Torrent Source 3 29th March 2009 15:22
FTS v2.0 BETA Dragan3591 Downloads 21 8th March 2009 09:33



All times are GMT +2. The time now is 08:46. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.