81
gerasimos
Reordering Forums
  • 2005/6/21 7:27

  • gerasimos

  • Not too shy to talk

  • Posts: 114

  • Since: 2005/4/28


Hello everybody i am using newbb version 1 and i wonder if there is a way to organize the order which my forum are displayed (e.g i just add another forum but i want to be displayed just above the last one)

any ideas???

Thanks in advanced
Gerasimos



82
gerasimos
Re: Moving posts
  • 2005/6/15 15:00

  • gerasimos

  • Not too shy to talk

  • Posts: 114

  • Since: 2005/4/28


ig a change the forum id in my databse will work???
in fact i changed it and nothing happens



83
gerasimos
Moving posts
  • 2005/6/15 14:29

  • gerasimos

  • Not too shy to talk

  • Posts: 114

  • Since: 2005/4/28


Hello i am using newbb version 1 and i wonder if there is a way to move some posts (not hole topic!) from a topic to other topic.

Thanks in advanced.
Gerasimos



84
gerasimos
PHP Expert?
  • 2005/6/10 15:42

  • gerasimos

  • Not too shy to talk

  • Posts: 114

  • Since: 2005/4/28


Hello i need some php expert help. I am using the estadisticas module for stats. Everything running BUT i want to add just after the displayed number (e.g. 12 members) an image that i have uploaded to [xoopsurl]/uploads/imgstats.
Below i have the whole code for further help!in bold [] is the place that i need the image to displayed

Thanks in advanced
** this code is inside the diverses_stats.php which is in folder Blocks **

function b_diverssats_show() {
global $xoopsDB, $xoopsConfig;
$block = array();
$block['title'] = "Estatisticas";
$result = $xoopsDB->query("select uid, uname, level from ".$xoopsDB->prefix("users")." where level=1 order by uid DESC",1);
list($uid, $lastuser) = $xoopsDB->fetchRow($result);

$result = $xoopsDB->query("SELECT COUNT(*) from ".$xoopsDB->prefix("users")." where level>=0 order by uid DESC",1);
list($numbers) = $xoopsDB->fetchRow($result);

$result = $xoopsDB->query("SELECT COUNT(*) from ".$xoopsDB->prefix("users")." where level=0 order by uid DESC",1);
list($inactifs) = $xoopsDB->fetchRow($result);

$result = $xoopsDB->query("SELECT COUNT(*) from ".$xoopsDB->prefix("users")." where level=5 order by uid DESC",1);
list($admins) = $xoopsDB->fetchRow($result);

$result = $xoopsDB->query("SELECT count(*) from ".$xoopsDB->prefix("mydownloads_downloads")."");
list($numrows2) = $xoopsDB->fetchRow($result);

$result = $xoopsDB->query("SELECT count(*) from ".$xoopsDB->prefix("bb_forums")."");
list($bbforum) = $xoopsDB->fetchRow($result);

$result = $xoopsDB->query("SELECT count(*) from ".$xoopsDB->prefix("mylinks_links")."");
list($links) = $xoopsDB->fetchRow($result);

$result = $xoopsDB->query("SELECT sum(comments) from ".$xoopsDB->prefix("stories")."");
list($comment) = $xoopsDB->fetchRow($result);

$result = $xoopsDB->query("SELECT count(*) from ".$xoopsDB->prefix("stories")."");
list($news) = $xoopsDB->fetchRow($result);

$result = $xoopsDB->query("select sum(hits) from ".$xoopsDB->prefix("mylinks_links")."");
list($hitsliens) = $xoopsDB->fetchRow($result);

$result = $xoopsDB->query("SELECT count(*) from ".$xoopsDB->prefix("bb_posts")."");
list($bbpost) = $xoopsDB->fetchRow($result);

$result = $xoopsDB->query("SELECT count(*) from ".$xoopsDB->prefix("bb_topics")."");
list($bbtopics) = $xoopsDB->fetchRow($result);

$result = $xoopsDB->query("select sum(hits) from ".$xoopsDB->prefix("mydownloads_downloads")."");
list($hits) = $xoopsDB->fetchRow($result);

$result = $xoopsDB->query("select sum(topic_views) from ".$xoopsDB->prefix("bb_topics")."");
list($postviews) = $xoopsDB->fetchRow($result);

$result = $xoopsDB->query("select sum(counter) from ".$xoopsDB->prefix("stories")."");
list($storiesviews) = $xoopsDB->fetchRow($result);



$block['content'] = "<left><a href=\"".$xoopsConfig['xoops_url']."/modules/xoopsmembers/index.php\"><b>$numbers </a> [the place for image show]Members</b><br /> <br />
<a href=\"".$xoopsConfig['xoops_url']."/modules/news/index.php\"><b>$news</a> Δημοσιευμενα Νεα</b><br>
(<b>$storiesviews</b> Αναγνωσεις - <b>$comment</b> Σχολια)<br><br><a href=\"".$xoopsConfig['xoops_url']."/modules/mylinks/index.php\"><b>$links</a> Συνδεσμοι</b>
(<b>$hitsliens</b> Επισκεψεις)<br><br>
<a href=\"".$xoopsConfig['xoops_url']."/modules/newbb/index.php\"><b>$bbforum </a> Κλαδοι Συζητησης</b><br>
<b>$bbtopics</b> Θεματα,<br>
<b>$bbpost</b> Καταχωρησεις,<br>
<b>$postviews</b> Αναγνωσεις<br>
</left>";
return $block;
}

?>



85
gerasimos
Re: Forum desplay
  • 2005/6/9 19:45

  • gerasimos

  • Not too shy to talk

  • Posts: 114

  • Since: 2005/4/28


i hope this will help you.

https://xoops.org/modules/smartfaq/faq.php?faqid=355

by the way is any working web counter that u use in your site. I am searchig for a flash one but until now no luck

Gerasimos - Greece - Euro2004 Winner
www.apriliaclub.tk (Greece -Hellas)



86
gerasimos
Re: Forum desplay
  • 2005/6/9 18:35

  • gerasimos

  • Not too shy to talk

  • Posts: 114

  • Since: 2005/4/28


Steps:
1. Going to Administrator menu
2. In Systems Admin you select "Edit User"
3. You select the user you want to view forum in flat mode (e.g. Webmaster) and press edit
4.In the middle of all this options there is a drop down menu with options (flat/nested etc) you select the flat mode and this user form now on will see forum in flat mode.

- If you want to change that for all current users there is a sql that u must to run in your database.
let me now.

Gerasimos - Greece - www.apriliaclub.tk



87
gerasimos
Re: Forum desplay
  • 2005/6/9 14:20

  • gerasimos

  • Not too shy to talk

  • Posts: 114

  • Since: 2005/4/28


you must chage it from admin section > edit user> in this menu there is a option with ('flat/etc)you change it there



88
gerasimos
counter module?
  • 2005/6/9 11:53

  • gerasimos

  • Not too shy to talk

  • Posts: 114

  • Since: 2005/4/28


Hello, does anyone use the counter module from Korea??
i have major problem (its not working)
if anyone use it and working please post a reply with istructions

Thanks



89
gerasimos
member picture every week?
  • 2005/6/9 10:26

  • gerasimos

  • Not too shy to talk

  • Posts: 114

  • Since: 2005/4/28


Hello, is there any module to use in order to display a picture from a list of picrures and changed it automatically every week. Like "Member of week"



Thanks in advaced
Gerasimos



90
gerasimos
Re: New version newbb
  • 2005/6/7 11:47

  • gerasimos

  • Not too shy to talk

  • Posts: 114

  • Since: 2005/4/28


i made finnaly the update but nothing was displayed in forum!!!!(only the Categories without the forums) i made all the security from the begginG BUT NOTHING..

ANY IDEAS???




TopTop
« 1 ... 6 7 8 (9) 10 11 »



Login

Who's Online

217 user(s) are online (140 user(s) are browsing Support Forums)


Members: 0


Guests: 217


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits