Bravo List
Register
Go Back   > Bravo List > P2P > Forum > Downloads
Reply
Thread Tools
  #241  
Old 13th January 2010, 05:33
Tony's Avatar
Tony Tony is offline
Senior Member
 
Join Date: Mar 2008
P2P
Posts: 182
Default
Quote:
This code is no longer being built nor supported - Numerous requests to have it removed have been ignored - It never made it out of Beta due to various reasons so you have it from my mouth its dead - finito - gone and i wont be answering any other posts on it - If you respect my wishes you'll remove this - The people that have it are all grown ups if they cant figure it out it wasnt for them in the first place - Sorry but this is how it has to be - Codex/Tbdev Installer is Dead - BigJoos
You mean people actually go on tbdev and ask for support on this ? i mean look at the BETA its nothing at all like tbdev with just all the mods you can think of installed onto it is it ?
Reply With Quote
  #242  
Old 18th January 2010, 17:07
movietorrent movietorrent is offline
Member
 
Join Date: Jan 2010
P2P
Posts: 10
Exclamation error
I did everything that I need, and I show this error
What is now?

Code:
PHP Error Message

Warning: require_once() [function.require-once]: open_basedir restriction in effect. File(/usr/local/apache/htdocs/include/config.php) is not within the allowed path(s): (/home/:/usr/lib/php:/tmp) in /home/a2389319/public_html/include/bittorrent.php on line 6

Free Web Hosting

PHP Error Message

Warning: require_once(/usr/local/apache/htdocs/include/config.php) [function.require-once]: failed to open stream: Operation not permitted in /home/a2389319/public_html/include/bittorrent.php on line 6

Free Web Hosting

PHP Error Message

Fatal error: require_once() [function.require]: Failed opening required '/usr/local/apache/htdocs/include/config.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/a2389319/public_html/include/bittorrent.php on line 6

Free Web Hosting
Reply With Quote
  #243  
Old 18th January 2010, 17:10
Phogo's Avatar
Phogo Phogo is offline
VIP
 
Join Date: Jan 2008
United Kingdom
Posts: 902
Default
Think the free webhosting may be blocking some features
Reply With Quote
  #244  
Old 18th January 2010, 17:19
Laffin's Avatar
Laffin Laffin is offline
Senior Member
 
Join Date: Oct 2008
Posts: 32
Default
Actually a lot of web hosting, uses the open_basedir in a safe php setting.
your option is to create a directory where it is allowed, such as your root.
create a directory, and an .htaccess file that makes the directory forbidden.
.htaccess
Code:
Options -Indexes
Should work, allowing your php files access, and disallowing web access.
Reply With Quote
  #245  
Old 6th February 2010, 02:49
jebajseti jebajseti is offline
Member
 
Join Date: Feb 2010
P2P
Posts: 3
Default
all i can say about this source is wooow. Keep up the good work and fix some bugs and this will really be the best tbdev source ever. I like code very much but ill wait for final version.
And i would like to ask one question is it possible to add inside iplay login code?

regards
Reply With Quote
  #246  
Old 6th February 2010, 09:21
Jack747 Jack747 is offline
Senior Member
 
Join Date: Jan 2010
Slovenia
Posts: 40
Default
Quote:
Originally Posted by jebajseti View Post
all i can say about this source is wooow. Keep up the good work and fix some bugs and this will really be the best tbdev source ever. I like code very much but ill wait for final version.
And i would like to ask one question is it possible to add inside iplay login code?

regards
Yah me too. The iPlay? Try it. Just make a js folder or if its already made put the animatedcollapse.js in it the add the images to the pic directory and paste the css file in root. See if it works. And you got a very funny name, and its even more funny because a lot of people dont know the meaning, lol!

Last edited by Jack747; 6th February 2010 at 11:12.
Reply With Quote
  #247  
Old 6th February 2010, 16:43
jebajseti jebajseti is offline
Member
 
Join Date: Feb 2010
P2P
Posts: 3
Default
i'm getting this error when editing user, edit works when i go back and refresh but when i click okay i get this. It gets me annoyed :)

Code:
Warning:  Invalid argument supplied for foreach() in /home/f1scsup/public_html/tracker-f1/include/vfunc.php on line 535

Warning: Cannot modify header information - headers already sent by (output started at /home/f1scsup/public_html/tracker-f1/include/vfunc.php:535) in /home/f1scsup/public_html/tracker-f1/modtask.php on line 1200
modtask.php arround line 1200

Code:
    if (($CURUSER['class'] == UC_CODER && ($user['modcomment'] != $_POST['modcomment'] ||
        $modcomment != $_POST['modcomment'])) || ($CURUSER['class'] < UC_CODER && $modcomment !=
        $user['modcomment']))
        $updateset[] = "modcomment = " . sqlesc($modcomment);
    if (sizeof($updateset) > 0)
        mysql_query("UPDATE users SET  " . implode(", ", $updateset) . " WHERE id=" .
            sqlesc($userid) . "") or sqlerr(__file__, __line__);
    status_change($userid);
    forummods(true);
    $returnto = $_POST["returnto"];
    header("Location: $DEFAULTBASEURL/$returnto");
    die();
vfunc.php arround line 535

Code:
    if (!file_exists($file) || $forced == true)
    {
        $q = sql_query("SELECT id,username,forums_mod FROM users WHERE forum_mod = 'yes' ") or print(mysql_error());
        while($a = mysql_fetch_assoc($q))
        $users[] = $a;
        
        $forums = array();
        
        foreach($users as $user)
        {
            $reg = "([0-9]+)";
            preg_match_all($reg,$user["forums_mod"],$fids);
            foreach($fids[0] as $fid)
            {
                if(!array_key_exists($fid,$forums))
                $forums[$fid] = array();
                $forums[$fid][] = array($user["id"],$user["username"]);
            }
        }
        $h = fopen($file,"w+");
        if($h)
        {
            fwrite($h,serialize($forums));
            fclose($h);
        }
    }
Reply With Quote
  #248  
Old 7th February 2010, 11:13
Jack747 Jack747 is offline
Senior Member
 
Join Date: Jan 2010
Slovenia
Posts: 40
Default
Whak kind of hosting do you have. If its a free hosting that may be the problem.
Reply With Quote
  #249  
Old 7th February 2010, 13:18
jebajseti jebajseti is offline
Member
 
Join Date: Feb 2010
P2P
Posts: 3
Default
Quote:
Originally Posted by Jack747 View Post
Whak kind of hosting do you have. If its a free hosting that may be the problem.
buyed hosting
Reply With Quote
  #250  
Old 5th March 2010, 19:58
redesmania redesmania is offline
Member
 
Join Date: Nov 2009
P2P
Posts: 6
Exclamation problems with announce!
I need help with my announce!
my program is utorrete me to return an error, Traker sending invalid data <null>??
Why??

I use Installer_Beta2
Reply With Quote
Reply

Tags
codex , installer , v4


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
YSE PRE6 with installer kp380lv Yuna Scatari Edition (YSE) 4 11th May 2010 23:32
$$looking for a installer and coder for my tracker$$ wltan Sell & Buy 9 8th May 2010 20:42
Gazelle Installer and Programmer Gazeller Sell & Buy 1 16th January 2010 20:23
My theme for tbdev installer KiD Community Cafe 2 17th October 2009 10:28



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