Search found 50 matches
- Wed Dec 07, 2005 5:29 pm
- Forum: [3.0/Olympus] Discussion
- Topic: phpbb3 user information over multiple Database/Domains
- Replies: 9
- Views: 6401
Re: phpbb3 user information over multiple Database/Domains
pretty simple actually Install each forum on its own domain, using the same database, just make sure that during the installation you set different table prefix "forum1_" and "forum2_". then go to one of the domains ftp and open up constants.php and go down the the constant for the user table. take ...
- Wed Dec 07, 2005 8:27 am
- Forum: [3.0/Olympus] Discussion
- Topic: Anyone else enjoy reading the commit logs?
- Replies: 26
- Views: 14825
Re: Anyone else enjoy reading the commit logs?
Acyd recently lost a TON of lines because he nuked a bunch of files. Then he checked in a ton of MCP stuff and that made it a nice and spiffy and better. Yeah he's pretty much moving the stuff from the admin panel to the new admin control panel that he is building using the module system, So he wil...
- Sun Dec 04, 2005 3:58 am
- Forum: [3.0/Olympus] Discussion
- Topic: Online Locations vs Post View
- Replies: 9
- Views: 5683
Re: Online Locations vs Post View
ok, i looked into it and after reviewing the code your theory doesn't make sense. heres the code that does it $location = sprintf($user->lang['READING_TOPIC'], $forum_data[$forum_id]); the info for $forum_data is gathered from these lines // Forum info $sql = 'SELECT forum_id, forum_name, parent_id,...
- Sun Dec 04, 2005 1:03 am
- Forum: [3.0/Olympus] Discussion
- Topic: Online Locations vs Post View
- Replies: 9
- Views: 5683
Re: Online Locations vs Post View
If you are reading a topic it will say "reading topic ... " and not "viewing forum ..." so i don't know know how is displaying that you are in forum X. If you look at the code of viewonline.php There is not sql query to retrieve the name of the forum you are in depending on the topic. edit: It could...
- Sat Dec 03, 2005 11:17 pm
- Forum: [3.0/Olympus] New features discussion
- Topic: Community projects
- Replies: 3
- Views: 4621
Re: Community projects
Thats nice man. Hopefully things will start moving for you guys and we can see that even system on 3.0 when its out. Thanks for sharing the info
- Thu Dec 01, 2005 4:36 am
- Forum: [3.0/Olympus] New features discussion
- Topic: Community projects
- Replies: 3
- Views: 4621
Community projects
I was wondering if some of the people doing the community project would mind sharing some insight on how things are going. I ask this because no one seem to be mentioning it anymore, and since things seem to be picking up speed now, wanted some info on the projects... BTW: to those people that like ...
- Wed Nov 30, 2005 2:46 am
- Forum: [3.0/Olympus] Discussion
- Topic: Anyone else enjoy reading the commit logs?
- Replies: 26
- Views: 14825
Re: Anyone else enjoy reading the commit logs?
the theory of them having separte commits is not even a trivial idea. I mean we can't seriosly expect them to commit everytime they change one line, if they plan other things that are connected to that one line. I say its good that they have their own repository and only commit once they feel that s...
- Tue Nov 29, 2005 6:50 pm
- Forum: [3.0/Olympus] Discussion
- Topic: Anyone else enjoy reading the commit logs?
- Replies: 26
- Views: 14825
Re: Anyone else enjoy reading the commit logs?
WOW, haven't been really checking it out much in the past month or so, i see lots is going on, and that the admin panel is now moved to be a module rather then a separete panel all together, makes adding your own "site" admin options together with the forum admin panel much easier. THANKS GUYS i tak...
- Sun Nov 20, 2005 6:52 am
- Forum: [3.0/Olympus] Styling
- Topic: Making the style load outside of phpbb but with no header
- Replies: 5
- Views: 7164
Re: Making the style load outside of phpbb but with no heade
Ok this is how im doing it <?php define('IN_PHPBB', true); $phpbb_root_path = './phpBB/'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.'.$phpEx); // Start session management $user->session_begin(); $auth->acl($user->data); $user->setup(); // ... your code here // Ou...
- Fri Nov 18, 2005 7:03 pm
- Forum: [3.0/Olympus] Styling
- Topic: Making the style load outside of phpbb but with no header
- Replies: 5
- Views: 7164
Re: Making the style load outside of phpbb but with no heade
Its actually quite simple, I will post how its done when i get home, Im at work right now. I would post a link to my site which im doing this already, but apperently thats spaming. Oh, i though ill tell you that the template filename needs to be inside the respective style's directory. There was a c...