Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Downloads (http://www.bvlist.com/forumdisplay.php?f=16)
-   -   FTS 1.0.3 Pre-Beta (http://www.bvlist.com/showthread.php?t=2158)

fr33bh 8th March 2009 12:47

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






Fynnon 8th March 2009 13:37

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

Subzero 8th March 2009 14:58

Ye why not ill test it send to

darkcoder666@hotmail.com ;)

fr33bh 8th March 2009 16:02

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

Fynnon 8th March 2009 16:42

1 Attachment(s)
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)

Attachment 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


Edgein 9th March 2009 07:36

Hello
 
You also can sent a copy to my
at elmo@super-tor.org
testing of a source is a hobby of my

grtzz :drink:

Keiichi 12th March 2009 04:16

FTS 1.0.3 Pre-Beta fix 0.1
 
1 Attachment(s)
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>".$row["description"]."</td>";
------------------------------
fix ok
echo "<tr><td><a href= $BASEURL/forums/viewforum.php?action=viewforum&forumid=".$row["id"]."><b>".$row["name"]."</b></a>".$row["description"]."</td>";

admin/moforums.php

Erro
echo "<tr><td><a href=forums.php?action=forumview&forid=".$row["id"]."><b>".$row["name"]."</b></a>".$row["description"]."</td>";
-------------------------------
fix ok
echo "<tr><td><a href= $BASEURL/forums/viewforum.php?action=forumview&forid=".$row["id"]."><b>".$row["name"]."</b></a>".$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

codedash 12th March 2009 19:14

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.

fr33bh 13th March 2009 13:49

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.

Keiichi 13th March 2009 15:41

config pics
 
4 Attachment(s)
Quote:

Originally Posted by fr33bh (Post 9888)
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
:ok:

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
Attachment 1092

/config
Attachment 1093


All times are GMT +2. The time now is 17:38.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.