51

(3 replies, posted in General discussion)

I like the fine print at the bottom:

Google Gulp and Your Privacy
From time to time, in order to improve Google Gulp's usefulness for our users, Google Gulp will send packets of data related to your usage of this product from a wireless transmitter embedded in the base of your Google Gulp bottle to the GulpPlex?, a heavily guarded, massively parallel server farm whose location is known only to Eric Schmidt, who carries its GPS coordinates on a 64-bit-encrypted smart card locked in a stainless-steel briefcase handcuffed to his right wrist. No personally identifiable information of any kind related to your consumption of Google Gulp or any other current or future Google Foods product will ever be given, sold, bartered, auctioned off, tossed into a late-night poker pot, or otherwise transferred in any way to any untrustworthy third party, ever, we swear. See our Privacy Policy.

52

(3 replies, posted in General discussion)

Does anyone here have a used Gulp cap they can give me?  I want to get a Google Gulp account.

53

(13 replies, posted in General discussion)

How do they do that?  That's too funny.  They aren't related to google, are they?

Oh, that makes sense.

Looking at phpMyAdmin further, it looks like you could also copy over the mambo database into your new punbb database without losing any of the mambo data.  Experiment and see.

You don't have to reinstall punbb - just rename the tables.  The first step is to convert your punbb database so that each table has the 'punbb_' prefix.  Once that's done, install mambo's tables in that same database using 'mambo_' for their prefix.  (the punbb database data will be saved, but mambo's will be lost - you said this was ok).

Your punbb database probably looks like this:
users
posts
topics

and it needs to be:
punbb_users
punbb_posts
punbb_topics

Do you have access to your database via phpMyAdmin?  If so it's really easy to make changes without knowing what you're doing.  Go to the database, select the table 'users', click the 'operations' tab, under 'Rename table' change 'users' to 'punbb_users', click 'go'.  Repeat for each of the other punbb tables.  The whole procedure will only take a couple minutes.  When finished, go to your config.php file and add in the prefix.  If you aren't sure how to add it in, you could do a test install and see how the install file prints it - or ask someone here.  Once this is done your punbb database should work as before.  Next, just install mambo's tables in the same database using 'mambo_' for the prefix.

I don't understand what your problem is either.  This is just basic, standard CSS.

That's a cool feature, Paul.  Thanks.  (CSS sure is fun, isn't it?)

First, you'd need both punBB and Mambo in the same database.  Use the prefix option when installing the forum and cms, and the tables will look something like this:

punBB_users
punBB_posts
punBB_etc
mambo_users
mambo_posts
mambo_etc

That's the easy part.  Next it sounds like you need to tie in the login/user system of the forum with the login/user system of the cms.  I'm guessing here, but if you know a little PHP and mySQL it might be relatively easy to modify one of the 'register.php' files so that it registers the user for both systems at the same time.  I'd see if I could edit punBB's register.php file so that when the user registers, it sends info to the user table for both punBB and Mambo.  Then set things up so there's only the punBB register page, of course, and hide the mambo register page.

60

(17 replies, posted in News)

I found this thread while searching google for "registerfly support problems" (something like that).  You made the 2nd page I think - pretty good considering.  punBB is really moving up in the world.  Congrats.

61

(17 replies, posted in News)

Yes.  smile
I couldn't resist repeating it to get the point across.
Teach by repetition - that sort of thing.

Search Engine Optimization is the art of designing your site so that it gets the best possible rankings in search engines.  SEO includes everything from choosing the optimum domain name, what text goes in the title bar, what text goes in the description meta tag, the first visible text on the page, what links are found on the main page, etc, etc, etc.  SEO is a big deal, trust me.

I think in this case bryant might be talking about how to integrate the forum into a regular website (not necessarily a cms or gallery - any old site).  The common issues involved are having the forum code insert helpful text in the title bar on each page - actually it looks like punbb already does this.  Another good thing for SEO is to convert the urls from query strings to search-engine-friendly format.

Here's a discussion on SEO at the hiveminds forum:
(they're good folks even though they still use phpbb wink)
http://hiveminds.org/phpBB/viewtopic.php?t=2523

63

(17 replies, posted in News)

Mako wrote:

I hate Enom. Had problems with them earlier last year. Switch to RegisterFly. It's MUCH cheaper.

If you hate Enom, why would you like RegisterFly?  RegisterFly is an Enom reseller.

64

(17 replies, posted in PunBB 1.2 discussion)

Just open a few files and experiment.

65

(4 replies, posted in Feature requests)

That's the kind of thing you can easily add yourself, as far as I hear.  Just write your own stylesheet(s) and add a link to it in the header template.

66

(9 replies, posted in PunBB 1.2 troubleshooting)

Thanks.  I wouldn't use it here - it's for a custom CMS I'm working on.

67

(9 replies, posted in PunBB 1.2 troubleshooting)

I'd like to add the ability for one or two heading tags - <h2></h2> and <h3></h3>.  Is it fairly straightforward?  I haven't looked at the code in parser.php yet but am assuming it won't be too difficult.

68

(36 replies, posted in Programming)

Typo3 is better than Mambo? 
Drupal is better than Mambo? 
I thought Mambo was the undisputed king of CMS portals.  I haven't used any of them but from reading around it sounded like Mambo was the one to use (as well as Nucleus, of course wink).  Guess I'll have to add Typo3 and Drupal to my list.

P.S.
Bert, I read your reviews for punbb and nucleus at OSCMS last night.  You state a good case, and it's a good read.  I'm planning to try out nucleus and singapore on account of your suggestions.

69

(76 replies, posted in News)

What about using the overflow property?  If you apply it to the image's containing block, would that work?  Then people can choose whatever they want via the stylesheet:

.visible {overflow: visible;}
.hidden {overflow: hidden;}
.scroll {overflow: scroll;}

70

(76 replies, posted in News)

Connorhd wrote:

Maybe we should stop the PM war before it starts, it happened when 1.2 was released no point in doing it again

I agree.  We already beat this one to death a few weeks ago.  If people need to debate the pros and cons of Private Messaging, it would make more sense to start a separate topic for it (imho).

How stable is 1.2.1?  It sounds like there were one or two things that needed fixing.  Does it all look good now?

Take another look at SitePoint's tutorial.  This is exactly what you're asking for.  It's a lot easier to use than you think:

Use the code on this page - http://www.sitepoint.com/article/php-xm … -rss-1-0/4
At the bottom of that page there's a link to an example of how to include it on your page - http://www.sitepoint.com/examples/phpxm … oo.php.txt

Just replace 'http://www.sitepoint.com/rss.php' with the URL of your RSS feed.

72

(24 replies, posted in PunBB 1.2 discussion)

I mucho like the addition of the breadcrumb trail at the bottom.  I never said anything about it before -- I just planned to add it myself.  Thankyou, thankyou, it's a good thing.

I don't notice the increase from 10px to 11px either.  It's still small.  I'm on Win-XP-home, Mozilla-1.5.  Why not just use ems instead of pxs?

73

(76 replies, posted in News)

Oooo.  How exciting!  Thank you mr. Rickard.  I've been looking forward to this day.  I think I might just download this new version now (as opposed to my 1.1.5) and give it a spin.  (Thanks for releasing the revision so quickly.)

By the way, I appreciate that you put time into making revisions stable, rather than releasing a new version every couple of weeks (like another forum not to be named does).  I'd rather wait for a stable version and install it once rather than install it every month.  Thanks for everything; I like your forum; blah blah; smile.

Connorhd wrote:
Dr.Jeckyl wrote:

is there such a thing as a WYSIWYG editor for style sheets?

notepad and the refresh button tongue

LOL - that's what I use; works like a charm.  What you see is what you get everytime.

I had the same question about a month ago.  Searching google using 'rss web page display php', you'll find SitePoint's tutorial.  It's a good way to get started (it works on my site) but the script it teaches you to use is only meant for RSS 1.0 -- that can potentially cause problems with newer feeds.  Searching google again I found MagpieRSS, which looks like one of the best parsers available.  Once you catch the RSS bug you may also be interested in the MyHeadlines web scrapersmile enjoy!