3,551

(4 replies, posted in PunBB 1.2 troubleshooting)

Netfirms?
If so, http://punbb.org/forums/viewtopic.php?pid=89382#p89382
Also if so, if it's not too much trouble, could you run the following PHP script

<?php
exec('uptime')

and report back what the output was? It should help us figured out why admin_index.php is failing for your host smile

3,552

(6 replies, posted in PunBB 1.2 troubleshooting)

Check your config.php information for phpBB and make sure what you enter matches

3,553

(6 replies, posted in PunBB 1.2 troubleshooting)

I'm confused: do you know what the database name is for your phpBB forum?

3,554

(6 replies, posted in PunBB 1.2 troubleshooting)

No, there isn't
However, the migration tool is PHP-based: you put it on your webserver and run it.

Just dragging files/folders to the window works

3,556

(10 replies, posted in PunBB 1.2 troubleshooting)

Don't use it? tongue
Seriously though, a regular text-editor like Notepad or Wordpad works fine for editing PHP files and doesn't do all the crazy stuff that Dreamweaver is prone to do. You can even download slightly more advanced programs for free (ie: I use a program called Notepad2, which has line numbers, syntax highlighting, etc)

Moved to Modifications
Internet Explorer has FTP built in.

3,558

(10 replies, posted in PunBB 1.2 troubleshooting)

02cspearson wrote:

Ok I have done the changing the main.tpl thing but all my images do not seem to display
http://www.iggpog22.com/ig2bb/upload/
when you right click and select view image you can see the images
any assistance would be great

That's because the program you used change all the paths to absolute paths on your harddrive (so the images can be seen by you and nobody else).

3,559

(5 replies, posted in PunBB 1.2 troubleshooting)

Something's wrong with your MySQL server, most likely related to file permissions. Make sure the data directory for MySQL has the correct owner and restart MySQL

3,560

(2 replies, posted in PunBB 1.2 discussion)

Moved to PunBB Discussion
The User Management plugin works just fine for this, you can find it on the Downloads page

There's a link to the PM mod right on the front page: http://www.punres.org/desc.php?pid=52

Moved to Modifications
Yes, modifications are things you need to install yourself. You can find them over at PunRes.

3,563

(11 replies, posted in Feature requests)

Oh, you meant like the code Bekko used for avatars? No, it's not quite that easy. If you want more information, make a new topic in Modifications

3,564

(11 replies, posted in Feature requests)

Yes, an extension could be made to do the same for signatures

3,565

(5 replies, posted in PunBB 1.2 troubleshooting)

Enable debug mode, paste the full error

Enable debug mode, paste the full error

Moved to Modifications

No bug, the modification is only meant to hide the post from one place wink

Moved to Integration
Do you want to add a new table or a new row?
If you want to add a new table, will a user have multiple entries in the scores table? If so, you'll want to have the auto incrementing ID and a column in the new table to store user id for lookups. If not, then ditch the auto incrementing ID and just make the user id column for the new table the primary key.

3,570

(5 replies, posted in Feature requests)

guardian34 wrote:

They already use something like this:

<meta name="ROBOTS" content="NOINDEX, FOLLOW" />

Doesn't robots.txt have to be at the root of a server?

Exactly: the meta tags have the necessary effects without the need for a seperate file
If you don't want a page indexed, add

define('PUN_ALLOW_INDEX', 1);

before the call to header.php

Moved to Integration

No, the passwords are hashed in the database: you can't tell from the hash what the original password was.

Moved to Modifications wink

Assuming you don't want to add the image for every ban, I would just remove the call to pun_htmlspecialchars. Then you can use HTML to add the image in the message. Otherwise, as Strofanto suggested, just add the HTML before/after the message in the code.

It isn't necessary to end a file with ?>
<?php signifies the end of an HTML block and the start of a PHP block. ?> signifies the end of a PHP block and the start of an HTML block. There's no reason to end a file with ?> for that reason

3,575

(1 replies, posted in PunBB 1.2 troubleshooting)

if ($pun_user['is_guest'])
{
// guest stuff
}
else
{
// user stuff
}