Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard Spread FireBoard!
How to make a fresh install from svn? (1 viewing) (1) Guest
Go to bottom Favoured: 0
TOPIC: How to make a fresh install from svn?
#18475
How to make a fresh install from svn? 1 Year, 1 Month ago  
Can anyone direct me on how to make a fresh install of fireboard from the svn? I have installed tortoise svn and checked the latest files from trunk. How do I install this as a component in joomla? I tried uploading the files via ftp to my site and manually make the sql-queries but then of course the component will not show up in joomla back-end.
Is there an installer already in the trunk?
Sorry for my "newbieness" but this is the first time I tried installing something from svn.
crisscross (User)
Junior Boarder
Posts: 36
graphgraph
User Offline Click here to see the profile of this user
Gender: Male husvagnsforum crizcroz@gmail.com Location: Umeå, Sweden Birthdate: 1969-10-22
Logged Logged
 
They f**k you at the drive-thru, ok?
 
The administrator has disabled public write access.  
#18589
Re:How to make a fresh install from svn? 1 Year, 1 Month ago  
Quick & Dirty:
1. Install a previously published installer package (1.0.1? ...)
2. Checkout SVN (wherever you like)
3. Copy ...
fireboard/trunk/administrator/components/com_fireboard TO YOURWEB/administrator/components
AND
fireboard/trunk/components/com_fireboard TO YOURWEB/components
from SVN (or move or link)
4. Delete all Tables jos_fb_* with phpMyAdmin (if ANY!)

After that FB Backend panel shows up with the two options for clean install:
- import from JB
- install clean empty tables

If you don't want to delete all tables, i'd suggest you to check each table by hand!
Use the file fireboard/trunk/FB_databaseStructure.txt to compare.
And for sure create missing fields. I recommend you to use and enforce exactly THE SAME order!

Test with us
Miro Dietiker (User)
Senior Boarder
Posts: 155
graphgraph
User Offline Click here to see the profile of this user
Gender: Male miro_dietiker MD Systems miro.dietiker@md-systems.ch Location: Zurich, Switzerland Birthdate: 1980-10-30
Logged Logged
 
Last Edit: 2007/08/19 19:30 By Miro Dietiker.
 
Boarding with FIRE .-) -- Professional OpenSource developer
 
The administrator has disabled public write access.  
#18608
Re:How to make a fresh install from svn? 1 Year, 1 Month ago  
Thank you very much! I did it all and all went fine except that counters for threads and replies where zero. Recount categories and stats gave me a fatal error on memory (32 mb), probably because I have over 100,000 posts. That might be something to look into because many on shared hosts might have problem with changing php.ini for more php-allocated memory.
crisscross (User)
Junior Boarder
Posts: 36
graphgraph
User Offline Click here to see the profile of this user
Gender: Male husvagnsforum crizcroz@gmail.com Location: Umeå, Sweden Birthdate: 1969-10-22
Logged Logged
 
They f**k you at the drive-thru, ok?
 
The administrator has disabled public write access.  
#18610
Re:How to make a fresh install from svn? 1 Year, 1 Month ago  
Looks like you're right...

reCountBoards obviously fetches a query comtaining all messages into one object.
This is a problem for big installs.

I reported it...
Miro Dietiker (User)
Senior Boarder
Posts: 155
graphgraph
User Offline Click here to see the profile of this user
Gender: Male miro_dietiker MD Systems miro.dietiker@md-systems.ch Location: Zurich, Switzerland Birthdate: 1980-10-30
Logged Logged
 
Boarding with FIRE .-) -- Professional OpenSource developer
 
The administrator has disabled public write access.  
#19428
Re:How to make a fresh install from svn? 1 Year, 1 Month ago  
any better solution?
danialt (Admin)
BoJ Team
Simplicity
Administrator
Posts: 957
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Birthdate: 1978-05-25
Logged Logged
 
Best Of Joomla Team
FireBoard Project Manager
 
The administrator has disabled public write access.  
#19430
Re:How to make a fresh install from svn? 1 Year, 1 Month ago  
Well if the code would iterate on the mysql result manually...

...PHP would never fetch all messages into local memory, instead php could only maintain one single message in memory...

class.fireboard.php @330
$database->setQuery("select id, time, parent, catid from #__fb_messages order by id asc";
$lis = $database->loadObjectList();

Look at "loadObjectList":
function loadObjectList( $key='' ) {
...
while ($row = mysql_fetch_object( $cur )) {
...
$array[$row->$key] = $row;


...although, i'm not sure how this is accordable with the Joomla standard sequences.
Really that bad design?
? function getNumRows
Looks like there's no iterative method per design
Miro Dietiker (User)
Senior Boarder
Posts: 155
graphgraph
User Offline Click here to see the profile of this user
Gender: Male miro_dietiker MD Systems miro.dietiker@md-systems.ch Location: Zurich, Switzerland Birthdate: 1980-10-30
Logged Logged
 
Boarding with FIRE .-) -- Professional OpenSource developer
 
The administrator has disabled public write access.  
Go to top