Members: 16,996
Threads: 38,845
Posts: 159,389
Online: 17

Newest Member: Kl_broka@rediffmail.com


Odoo.tv - Outdoor Television


Sedo - Domains kaufen und verkaufen das Projekt mambers.com steht zum Verkauf Besucherstatistiken von mambers.com etracker® Web-Controlling statt Logfile-Analyse
Old 07.01.2005, 14:50   #11 (permalink)
Mamber
 
hkclubbing's Avatar
 
Join Date: Jun 2004
Location: Hong Kong
Posts: 77
hkclubbing is on a distinguished road
Default Re: phpBB 5 latest posts

hey I still cant get this module to work when my phpbb and mambo are in the same database, any help please?

Thanks in advance!
hkclubbing is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Old 07.01.2005, 22:33   #12 (permalink)
Senior Mamber
 
Join Date: Apr 2004
Posts: 134
doggystyle is on a distinguished road
Default Re: phpBB 5 latest posts

with my module? what version of mambo? any error messages?

btw. cool hp. i also have a nightlife page
doggystyle is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 15.01.2005, 13:36   #13 (permalink)
Baby Mamber
 
Join Date: Nov 2004
Location: France
Posts: 8
thierrybo is on a distinguished road
Default Re: phpBB 5 latest posts

Hi,

, phpbbtopics_08 works fine for me.

I saw you ask for variables not used in you script, like forum_id, your sql statement does not even use it. Anyway a welcome base to start with.

Thierry B.
thierrybo is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 15.01.2005, 22:53   #14 (permalink)
Baby Mamber
 
Join Date: Nov 2004
Location: France
Posts: 8
thierrybo is on a distinguished road
Default Re: phpBB 5 latest posts

Hi,

Trere is something I don't understand inside your SQL. Why did you add
Code:
WHERE topic_views != 0
? It has the effect to exclude all threads that nobody has seen, but often it is the more recents threads. So why do you want to wait that AT LEAST one person view the thread before displaying it inside your module ?

Thierry B.
thierrybo is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 17.01.2005, 06:04   #15 (permalink)
Mamber
 
hkclubbing's Avatar
 
Join Date: Jun 2004
Location: Hong Kong
Posts: 77
hkclubbing is on a distinguished road
Default Re: phpBB 5 latest posts

hey dog, i tried to add phpbb latest 5 posts on 4.5 but did not work do you have a latest tweaked code I could download?
hkclubbing is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 28.01.2005, 22:52   #16 (permalink)
Baby Mamber
 
Join Date: Jan 2005
Posts: 1
kyros is on a distinguished road
Default Re: phpBB 5 latest posts

Quote:
Originally Posted by doggystyle
and another version which makes use of the parameter styles (i.e. list box) in 4.5.1 so the parameters are easier to handle. i don't know whether the installation works with 4.5. it would be nice if somebody can try and tell me.

greets
somebody give me a hug.... i was banging my head whole day with a modulke called mod_phpbblatest not only it didnt work but screwed frontpage login too.. .

then i came here and saw ur mod08 ... i registered to download and test this and BAM all probs gone.. everything working smooth....

doggystyle ... u my man ...

ah almost forgot .. this is my test installation http://codemills.com
kyros is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05.02.2005, 11:20   #17 (permalink)
Baby Mamber
 
Join Date: Feb 2005
Posts: 10
Athlon_2o0o is on a distinguished road
Default Re: phpBB 5 latest posts

It doesn't work correctly with my skin it seems. It displays the urls but not in normal text, but in weird huge blocks with white between them. Is there anyone who can help me? You can see my problem at the right botton module list of http://www.instagib.nl.
Athlon_2o0o is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05.02.2005, 12:07   #18 (permalink)
Baby Mamber
 
Join Date: Nov 2004
Location: France
Posts: 8
thierrybo is on a distinguished road
Default Re: phpBB 5 latest posts

You have to edit your css file and add a new class derivated from moduletable (like "moduletable-phpbb), then tweak this class to fit your needs, then in phpbb parameters, add '-phpbb' suffix to the 'Module Class Suffix' parameter so that this module use your new css class.



Thierry B.
thierrybo is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05.02.2005, 12:26   #19 (permalink)
Baby Mamber
 
Join Date: Feb 2005
Posts: 10
Athlon_2o0o is on a distinguished road
Default Re: phpBB 5 latest posts

Do you mean I have to copy this:

Code:
table.moduletable {
	width: 100%;
	margin-bottom: 5px;
	padding: 0px;
	border-spacing: 0px;
	border-collapse: collapse;
}

table.moduletable th {
	background: url('file:///D:/My%20Documents/My%20Web%20Sites/MamboV4[1].5.1b-Stable/Release/templates/rhuk_solarflare/images/subhead_bg.png') repeat-x;
	color: #666666;
	text-align: left;
	padding-top: 4px;
	padding-left: 4px;
	height: 21px;
	font-weight: bold;
	font-size: 10px;
	text-transform: uppercase
}

table.moduletable td {
	font-size: 11px;
	padding: 0px;
	margin: 0px;
	font-weight: normal;
in the file file and make it this, but then with editted values?

Code:
table.moduletable-phpbb {
	width: 100%;
	margin-bottom: 5px;
	padding: 0px;
	border-spacing: 0px;
	border-collapse: collapse;
}

table.moduletable-phpbb th {
	background: url repeat-x;
	color: #666666;
	text-align: left;
	padding-top: 4px;
	padding-left: 4px;
	height: 21px;
	font-weight: bold;
	font-size: 10px;
	text-transform: uppercase;
}

table.moduletable-phpbb td {
	font-size: 11px;
	padding: 0px;
	margin: 0px;
	font-weight: normal;
}
I cant try it though as the "Module Class Suffix" shown at your place it's even present at mine. It just doesn't exist..
Athlon_2o0o is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12.02.2005, 23:15   #20 (permalink)
Baby Mamber
 
Join Date: Aug 2004
Posts: 10
chrisho is on a distinguished road
Default Re: phpBB 5 latest posts

I've got this installed fine BUT it doesn't pick up the forum ID correctly - I've set the parameter to 1, but it pulls out info from both of my active forums. Any ideas?
chrisho is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
phpbb latest error thehandler Mambo 4.5 General Talk 2 17.01.2005 06:06
Url Path in Phpbb Latest courtney Mambo 4.5 'How Do I' Questions 1 07.01.2005 14:53
SimpelBoard Latest 5 Posts prozac Component 'How Do I' Questions 0 04.11.2004 15:39
latest post form phpbb Kris Mambo 4.5.1 'How Do I' Questions 1 07.09.2004 05:30
phpBB Component - Install, Import, Admin Problems JackBreech Component 'How Do I' Questions 15 21.08.2004 01:57


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

Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0
A vBSkinworks Design
© Copyright 2004-2008 by Arthur Konze Webdesign.