These forums are for people who host PunBB themselves, not users of places like MyPunBB (because the support needed for the two groups is significantly different). Please ask on MyPunBB's support forums.

302

(2 replies, posted in PunBB 1.2 discussion)

See here: http://punbb.org/docs/faq.html#faq3_1

303

(4 replies, posted in PunBB 1.2 show off)

None of the in-site links are working for me.

Just out of curiosity, what's the point of hosting binaries for Gentoo? I thought its main advantage was building everything from source -- or are the binaries you're hosting binary by necessity (closed source)?

a. It will probably be easier to integrate your site with PunBB. To decide you might want to look at PunBB's existing integration mechanism.

b. If you choose to use separate forum installs with the same users table, the following topics may be useful:
http://punbb.org/forums/viewtopic.php?id=8755
http://punbb.org/forums/viewtopic.php?pid=75974

Alternatively, you might try modding index.php to show a specified category and base your URL scheme off of that.

c. Not that I know of

305

(1 replies, posted in PunBB 1.2 show off)

Sorry, but this forum is intended for people who host PunBB themselves, not those using free hosts such as MyPunBB.

306

(32 replies, posted in PunBB 1.2 troubleshooting)

Moved to troubleshooting.

Well, first of all, is that file (mysqli.php) uploaded?

307

(2 replies, posted in Programming)

Well, you can use Javascript to apply CSS rules by browser.

In the absence of Javacsript, you can use -- with care -- so-called "CSS hacks". Sitepoint has a decent overview article concerning them.

deadram wrote:

And how different is the safari based browsers VS mozilla/Opera?

Safari uses a derivative of the KHTML engine, so you can use Konqueror on Linux or Swift on Windows to get a rough idea of how a page might render in Safari.

308

(16 replies, posted in PunBB 1.2 discussion)

Works flawlessly in:

Galeon 2.0.2
Kazehakase 0.3.8
Epiphany 2.16.1

All of the above are Gecko-based, so I'm not sure why they'd differ from Firefox, but I figured I'd try anyway.

Amaya 9.51 displays the page fine for "none", but unfortunately I'm not sure how to choose & submit the other two options. All the editing functions are getting in the way. tongue

That looks nothing like the PBB Gallery with which I'm familiar. Is it one of the modified versions?

The settings you see in the screenshots are accessed through the admin plugin provided in the zip file.

lie2815 wrote:

Uhmmm... where exactly can I download that stuff.
That rscheatnet.com link doesn't really work

Easy Poll +: http://www.punres.org/desc.php?pid=309
Easy Poll: http://www.punres.org/desc.php?pid=60

There's a mod on Punres that adds a BBCode between which admins and mods may place raw HTML. Give that a try.

312

(6 replies, posted in General discussion)

Change

$last_post = $db->fetch_assoc($result)

to

$last_post = $db->fetch_assoc($result);

313

(5 replies, posted in PunBB 1.2 discussion)

The primary means with which you may change the look of your forums are the styles, written in plain-old CSS. You can download many new styles on punres.org.

For a bit more control over markup, you may use the templates in include/template.

Moved to PunBB discussions.

314

(6 replies, posted in General discussion)

guardian34 wrote:

I like PunBB 1.3 and Facebook. *shrugs*

Same here. smile

Facebook is a fun site when you're bored.

It's quite well designed too, in my opinion.

I believe your issue is here:

/* Import the colour scheme */

@import url(imports/spinkbb_cs.css);

That doesn't match the capitalization in the files in the zip.

316

(3 replies, posted in General discussion)

http://www.punres.org/desc.php?pid=78

317

(4 replies, posted in Programming)

What software are you using for this server, and how are you accessing it?

318

(20 replies, posted in PunBB 1.2 troubleshooting)

Ah, good catch. smile

319

(10 replies, posted in PunBB 1.2 troubleshooting)

1. Under "User groups", click the "Edit" link next to "Members".

2. That's not currently a feature built-in to PunBB; it might be available through a mod on Punres (search for the "Mail Post" or "Mail Posts" mod, I believe it might be what you're looking for).

320

(20 replies, posted in PunBB 1.2 troubleshooting)

Even without access to php.ini, you might be able to insert something like this at the top of, say, include/common.php.

321

(4 replies, posted in PunBB 1.2 show off)

Looks nice, but IMO you really ought to work on the image quality of your logo. The edges of the text aren't smooth at all.

Judging by the dates on these posts, it wasn't made for the 1.2 branch, so even if available it probably wouldn't work anyway.

Moved to PunBB discussions, and closed. This forum is for people who have their own PunBB installations, not installs on hosts such as MyPunBB. Ask at their support forums.

It seems like osCommerce's boxes are using relative URL's for the images, so you'll either have to edit the files that produce the boxes to have different URLs for the images or set up a mod_rewrite rule of some sort.

Try changing the code pokemon_jojo provided from:

require PUN_ROOT.'include/parser.php';

to

require_once PUN_ROOT.'include/parser.php';

You might have to do the same / a similar modification to viewtopic.php as well.