It's not a PunBB thing, your server seems to be sending this in the request
Content-Type: image/png
You'll have to see what's causing that
6,576 2005-10-11 01:20
Re: Firefox register.php with CAPTCHA issue (14 replies, posted in PunBB 1.2 troubleshooting)
6,577 2005-10-11 00:30
Re: dlngle.com/Arcade/bi'o'everythin (18 replies, posted in PunBB 1.2 show off)
Steve: Except the link isn't to PunBB (he didn't make it right) and the copyright still can be confusing
6,578 2005-10-10 21:58
Re: dlngle.com/Arcade/bi'o'everythin (18 replies, posted in PunBB 1.2 show off)
Hacked enough to make the site time out? I doubt it
6,579 2005-10-10 21:44
Re: dlngle.com/Arcade/bi'o'everythin (18 replies, posted in PunBB 1.2 show off)
EDIT:
The following looks as if it has changed from before on the site:dlngle.com wrote:Powered by dlngle.com
© Copyright 2005?2007 Matt dingle
Special thanks to PunnBB/Rick for giving me the grounds-Steve
Nope, it was like that when I looked at it (although now I do get a timeout)
However, the copyright is illegal (I think). I didn't notice it anywhere other then the forum, and as the copyright FAQ says
Q: May I add my own copyright to the page footer?
Yes, but you may not alter the original copyright in such a way that it loses it's original "meaning". It must, in other words, still be absolutely clear who is the copyright holder of PunBB. Adding an additional line with your copyright notice is ok.
6,580 2005-10-10 12:39
Re: dlngle.com/Arcade/bi'o'everythin (18 replies, posted in PunBB 1.2 show off)
Or PunBB, or make a link properly
Oh, and are you allowed to hotlink content from ebaumsworld?
6,581 2005-10-09 14:43
Re: [Mod Request] Post for certain forum have to be reviewed by a mod. (7 replies, posted in PunBB 1.2 modifications, plugins and integrations)
OK, then my idea will work well
6,582 2005-10-09 13:23
Re: Split & Merge Topics (17 replies, posted in Feature requests)
There's already a mod for this I think
6,583 2005-10-09 13:20
Re: [Mod Request] Post for certain forum have to be reviewed by a mod. (7 replies, posted in PunBB 1.2 modifications, plugins and integrations)
That's a feature Rickard was thinking for 1.3 I believe
What you can do, so you can do this without modding, is change the forum permissions so that people can't post new topics. Then, you create another forum, and set it so people can't read it but can post new threads in it. Post the posting link for the second forum in the description of the first. Mods can read the second, if it's OK they move it to the real forum.
It gets a bit harder if you want to moderate posts as well (and would probably end up being a mod then)
6,584 2005-10-09 13:16
Re: PunBBig needs a new home (15 replies, posted in PunBB 1.2 discussion)
Connor is hosting it, I think Chacmool just needs to set it up
6,585 2005-10-09 02:09
Re: punbb.org has some difficulties (5 replies, posted in PunBB 1.2 bug reports)
Yeah
http://punbb.org/forums/viewtopic.php?id=6269
Dunno what the deal is this time though
6,586 2005-10-08 23:33
Re: extern php nothing showing up (3 replies, posted in PunBB 1.2 troubleshooting)
Which is why he uses ../ when including it
I think Tobi is probably right
6,587 2005-10-08 18:06
Re: Database restore fails (6 replies, posted in PunBB 1.2 troubleshooting)
FIND
$backup_file_name = (!empty($HTTP_POST_FILES['backup_file']['name'])) ? $HTTP_POST_FILES['backup_file']['name'] : "";
$backup_file_tmpname = ($HTTP_POST_FILES['backup_file']['tmp_name'] != "none") ? $HTTP_POST_FILES['backup_file']['tmp_name'] : "";
$backup_file_type = (!empty($HTTP_POST_FILES['backup_file']['type'])) ? $HTTP_POST_FILES['backup_file']['type'] : "";
if($backup_file_tmpname == "" || $backup_file_name == "")
{
message('No file was uploaed or the upload failed, the database was not restored');
}
if( preg_match("/^(text\/[a-zA-Z]+)|(application\/(x\-)?gzip(\-compressed)?)|(application\/octet-stream)$/is", $backup_file_type) )
{
if( preg_match("/\.gz$/is",$backup_file_name) )
{
$do_gzip_compress = FALSE;
$phpver = phpversion();
if($phpver >= "4.0")
{
if(extension_loaded("zlib"))
{
$do_gzip_compress = TRUE;
}
}
if($do_gzip_compress)
{
$gz_ptr = gzopen($backup_file_tmpname, 'rb');
$sql_query = "";
while( !gzeof($gz_ptr) )
{
$sql_query .= gzgets($gz_ptr, 100000);
}
}
else
{
message('Sorry the database could not be restored');
}
}
else
{
$sql_query = fread(fopen($backup_file_tmpname, 'r'), filesize($backup_file_tmpname));
}
}
else
{
message('Error the file name or file format caused an error, the database was not restored');
}
If the backup isn't gzipped:
REPLACE WITH
$sql_query = fread(fopen('backup.sql', 'r'), filesize('backup.sql'));
If it is
REPLACE WITH
$gz_ptr = gzopen($backup_file_tmpname, 'rb');
$sql_query = "";
while( !gzeof($gz_ptr) )
{
$sql_query .= gzgets($gz_ptr, 100000);
}
Then, upload the backup via FTP or another method into the plugins directory, go to the db management, type anything in the box, and submit the form. Wait, and it should restore.
Tell me if it doesn't work
6,588 2005-10-08 17:52
Re: Database restore fails (6 replies, posted in PunBB 1.2 troubleshooting)
As much as I hate to link there...
http://www.phpbb.com/kb/article.php?article_id=264
(Although now that I read that, another option seems better, since most people can't edit phpmyadmin's files)
I'll get the edit for the DB Management mod in a sec
6,589 2005-10-07 22:50
Re: PunBB needs your money! (124 replies, posted in News)
Nah, I agree: it doesn't look all that worthwhile (although screenshots might be nice )
Edit: Keep in mind I haven't donated, so my opinion doesn't really count
6,590 2005-10-07 22:46
Re: Cash Mod 1.0.0 (63 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I think I know the cause
from lottery.php
$db->query('UPDATE '.$db->prefix.'config SET conf_value=\''.$pun_user['username'].' last won the lottery and won '.$pun_config['cm_lottery_pot'].' '.$pun_config['cm_cur_name'].'.\' WHERE conf_name=\'cm_lottery_pot\' LIMIT 1');
So, if someone won and then immediately won again, they would get that freaky message
And it makes sense that it's at random: the if statement uses rand
6,591 2005-10-07 01:52
Re: successful login redirects to "not logged in" page (17 replies, posted in PunBB 1.2 troubleshooting)
You don't disable anything by uncommenting, you enable the sending of a header that IE seems to be picky about in some cases. It probably won't work, but it's worth a try
6,592 2005-10-07 01:44
Re: successful login redirects to "not logged in" page (17 replies, posted in PunBB 1.2 troubleshooting)
No, if it works it's a long term solution
6,593 2005-10-07 01:40
Re: successful login redirects to "not logged in" page (17 replies, posted in PunBB 1.2 troubleshooting)
PunBB can't possibly work without cookies
6,594 2005-10-07 01:26
Re: successful login redirects to "not logged in" page (17 replies, posted in PunBB 1.2 troubleshooting)
I'm using XP
You might want to try uncommenting the P3P line in the pun_setcookie function in functions.php
6,595 2005-10-07 01:14
Re: successful login redirects to "not logged in" page (17 replies, posted in PunBB 1.2 troubleshooting)
Well, it works fine for me...
6,596 2005-10-07 00:30
Re: successful login redirects to "not logged in" page (17 replies, posted in PunBB 1.2 troubleshooting)
Link?
6,597 2005-10-06 20:57
Re: User Group Matrix (1 replies, posted in General discussion)
Only that Rickard was looking into changing PunBB's group system for 1.3
6,598 2005-10-06 19:53
Re: PunBB 1.2.8 (67 replies, posted in News)
how could u be right? connorhd
Because it is unpredictable
I might find a security bug tomorrow, or I might not find one for a month, or I might not find another one (I'm leaning toward the last one, since I haven't really been able to find much of anything else). Same with everyone else
6,599 2005-10-06 10:29
Re: Problem with code BB syntax (2 replies, posted in PunBB 1.2 troubleshooting)
Well, assuming you're using 1.2.5 (which you shouldn't, you should upgrade) the problem might be this
http://punbb.org/forums/viewtopic.php?pid=39852#p39852
6,600 2005-10-05 23:26
Re: Shouldn't deleting a post decrease the user's post count by one? (8 replies, posted in Feature requests)
*hides Pie back in his box*
Sorry folks, no idea how he got out