Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Downloads (http://www.bvlist.com/forumdisplay.php?f=16)
-   -   BrightSwitch Project (http://www.bvlist.com/showthread.php?t=1515)

codedash 20th March 2009 12:01

index.php is missing

Sithlord 23rd March 2009 19:12

what are the changes beetween the revision 30 and 32??

xuzo 25th March 2009 10:14

Look at:

Changeset 31 for trunk BrightSwitch Project
Changeset 32 for trunk BrightSwitch Project

Anyhow; I have myself started to build further on this code, as the original developer hasn't done anything in months.

Look at trunk BrightSwitch - Trac

Checkout svn at: Revision 12: /trunk

Mostly just some fixes and updated the codeiginiter framework to 1.7.1. New features coming soon. PHP5+ only.

SpecialsK 9th April 2009 03:26

File Missing
 
Profile and Rules page are missing.
Why?

Dorin0301 12th April 2009 00:31

Quote:

Originally Posted by SpecialsK (Post 10649)
Profile and Rules page are missing.
Why?

Because is beta !

SpecialsK 14th April 2009 04:02

Hi
 
Is anyone still workin' at this project?

NickoSLH 9th May 2009 18:11

Quote:

Originally Posted by empereur (Post 8610)
Code:

A Database Error Occurred

Error Number: 1146

Table 'demo.rules' doesn't exist

SELECT * FROM (`rules`) ORDER BY `rule_order` asc


if you right looking, then you see, that the table "rules" fail in your database.:fire:

Code:

CREATE TABLE IF NOT EXISTS `rules` (
  `id` int(11) NOT NULL auto_increment,
  `rule_order` int(11) NOT NULL,
  `rule_data` text NOT NULL,
  PRIMARY KEY  (`id`)
) ;

little fixes:

for rules problem, add in database:
Code:

CREATE TABLE IF NOT EXISTS `rules` (
  `id` int(11) NOT NULL auto_increment,
  `rule_order` int(11) NOT NULL,
  `rule_data` text NOT NULL,
  PRIMARY KEY  (`id`)
) ;

for profile display problem:
Code:

ALTER TABLE users ADD avatar VARCHAR(100) NOT NULL DEFAULT '';
for news display problem:
edit file ./Brightswitch/application/models/news_model.php

and add in line 57 the missing entry

Code:

news.user_added,
as example must see:
Code:

public function get_news()
    {
        $this->db->select('news.id, news.news_title, news.news_content, news.date_added, news.user_added, users.username')
                ->join('users', 'users.id = news.user_added')
                ->order_by('news.id', 'desc');
       
        $query = $this->db->get('news');
. . .


Ryan 24th September 2009 00:02

Is this still in active development?

I'm working on a torrent site, and the skin alone really caught my eye.

plugin 27th February 2010 12:55

very good tracker :friend: i build a site with this.

Bump: the upload don't work for me :( somebody know whats the problem?

Phogo 4th March 2010 16:59

Quote:

Originally Posted by plugin (Post 21422)
very good tracker :friend: i build a site with this.

Bump: the upload don't work for me :( somebody know whats the problem?

the source is dead and never made it out of beta. if you want it to work you will have to fix it yourself!


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

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