Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   TBDev (http://www.bvlist.com/forumdisplay.php?f=20)
-   -   TBDev 2009 (http://www.bvlist.com/showthread.php?t=4931)

DAKz 4th February 2012 01:53

Quote:

Originally Posted by bogdanz00 (Post 32760)
tbdev is nice, but older!

would be nice to release a new version, fresh! :mad:

there is so much fighting over there that I doubt they will ever release another one, the 2010 release has been in the works for more then 2 years and no final in sight. Lets put it this way....if they worked for microsoft we would all be still on Windows 98.

shasta 13th February 2012 22:37

Quote:

Originally Posted by DAKz (Post 32860)
there is so much fighting over there that I doubt they will ever release another one, the 2010 release has been in the works for more then 2 years and no final in sight. Lets put it this way....if they worked for microsoft we would all be still on Windows 98.

agree
:coffee:

dj_otrov 24th February 2012 02:48

error
 
Warning: file_get_contents(http://www.tbdev.net/index.php?app=d...ownload&id=125) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.0 404 Not Found in /data/multiserv/users/809875/projects/1926356/www/install/install.php on line 51
Random Checks

Exist: browse.php:
Exist: include/config.php
Exist: admin/stats.php
Exist: SQL/tb.sql

Writable: include/config.php
Writable: torrents
Writable: cache
Writable: logs
We have found error in the file structure of the site, this could be due to one of the below reasons:
  • The zip file has not been extracted into the same folder as this file
  • We were unable to move the files from the TB_ALPHA folder into the http root directory where this file resides
  • The file structure has been altered by the author
If you are able to solve the issues then please do so and then hit the recheck button below, if all else fails please download the zip file for the latest tbdev source and extract it to the same folder as this file, that should resolve the issues.We have an encountered a problem with the permissions on one or more files/folders. In order for the site and his installer to operate you need to ensure that these are resolved. This is commonly a linux issue, you can either chmod the files/folders to 777 or chown the entire directory to your http servers user. If you are new to linux it will be easier for you to simply chmod the files to 777 at this point, use google if your not sure how to do this, there are millions of howto's. Hit recheck when you think this problem is solved.

josh1512 8th April 2012 18:57

help
 
hi i try and install this release and i keep getting redirected back to my host i am using 000webhost what can i do to install this release

HUnter83 8th April 2012 19:16

Quote:

Originally Posted by josh1512 (Post 34213)
hi i try and install this release and i keep getting redirected back to my host i am using 000webhost what can i do to install this release


wouldn touch a free host there to much trouble than there worth. set up a test site on your pc install the code fix the errors and then find a paid hosting service or dedicated 1

skangster 2nd July 2012 12:06

hi guys
 
how ya doin,i am looking to upload TBDev tracker on my VPS,please i need as much info as possible

Where to download the latest TBDev and how to upload it

thank you in advance

Krypto 2nd July 2012 21:51

You should find all the info you require on these forums along with the latest version.

You can also download it from Sourceforge http://sourceforge.net/projects/tbdevnet/

Donic90 4th July 2012 19:26

Statusbar
 
Hy,

I want to change the position of the status bar, i want the status bar above de logo(header).

I'm editing the bitorrent.php file and i have the following code

PHP Code:

<body>
    <
div id='container'>
      <
div id='header'>
      <
div class='clear'><div id='mainlogo'><img src='{$TBDEV['pic_base_url']}logo.jpg' alt='' /></div>
      </
div>
    </
div>

      <
table class='mainouter' width='100%' border='1' cellspacing='0' cellpadding='10'>
<!-- 
STATUSBAR -->";

    [B]
$htmlout .= StatusBar();[/B]

    
$htmlout .= "<!-- MENU -->
      <
tr><td class='outer'>
      <
div id='submenu'>";

    if (
$CURUSER
    { 
      
$htmlout .= "<div class='tb-top-left-link'>
      <
a href='index.php'>{$lang['gl_home']}</a>
      <
a href='browse.php'>{$lang['gl_browse']}</a>
      <
a href='search.php'>{$lang['gl_search']}</a>
      <
a href='upload.php'>{$lang['gl_upload']}</a>
      <
a href='chat.php'>{$lang['gl_chat']}</a>
      <
a href='forums.php'>{$lang['gl_forums']}</a>
      <!--<
a href='misc/dox.php'>DOX</a>-->
      <
a href='topten.php'>{$lang['gl_top_10']}</a>
      <
a href='rules.php'>{$lang['gl_rules']}</a>
      <
a href='faq.php'>{$lang['gl_faq']}</a>
      <
a href='links.php'>{$lang['gl_links']}</a>
      <
a href='staff.php'>{$lang['gl_staff']}</a>
      </
div>
      <
div class='tb-top-right-link'>";

      if( 
$CURUSER['class'] >= UC_MODERATOR )
      {
        
$htmlout .= "<a href='admin.php'>{$lang['gl_admin']}</a>";
      }

    
$htmlout .= "<a href='my.php'>{$lang['gl_profile']}</a>
      <
a href='logout.php'>{$lang['gl_logout']}</a>
      </
div>";
    } 
    else
    {
      
$htmlout .= "<div class='tb-top-left-link'>
      <
a href='login.php'>{$lang['gl_login']}</a>
      <
a href='signup.php'>{$lang['gl_signup']}</a>
      <
a href='recover.php'>{$lang['gl_recover']}</a>
      </
div>";
    }

    
$htmlout .= "</div>
    </
td>
    </
tr>
    <
tr><td align='center' class='outer' style='padding-top: 20px; padding-bottom: 20px'>";


    if (
$TBDEV['msg_alert'] && isset($unread) && !empty($unread))
    {
      
$htmlout .= "<p><table border='0' cellspacing='0' cellpadding='10' bgcolor='red'>
                  <
tr><td style='padding: 10px; background: red'>\n
                  
<b><a href='messages.php'><font color='white'>".sprintf($lang['gl_msg_alert'], $unread) . ($unread > 1 ? "s" : "") . "!</font></a></b>
                  </
td></tr></table></p>\n";
    }

    return 
$htmlout;
    
} // stdhead 

when i put the $htmlout .= StatusBar(); above the container it gives me an error. help ? :wallbash:

djzoulox 13th July 2012 18:06

Quote:

Originally Posted by underx (Post 23075)
plz how can remove the cloud search in browse.php ?

remove this part in browse.php
Code:


    $HTMLOUT .= "
";


    //print out the tag cloud
    require_once "include/searchcloud_functions.php";
    $HTMLOUT .= cloud() . "
";


kutup95 23rd July 2012 12:50

(HTML/BB code is not allowed.)

how can i allow this ?


All times are GMT +2. The time now is 09:28.

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