4,351

(18 replies, posted in PunBB 1.2 discussion)

If it was a PHP script, it can only see what the webserver can see (unless it was abusing a bug in PHP, Apache, or the OS to give itself elevated permissions)
I've seen some pretty powerful backdoor/hack scripts in PHP, but I don't think most of their functions abused holes in Apache, PHP, or the OS

4,352

(9 replies, posted in PunBB 1.2 discussion)

Yes, PunBB currently supports multiple languages (or using a language other than English) everywhere except the admin interface

4,353

(18 replies, posted in PunBB 1.2 discussion)

MadHatter wrote:

I doubt that would help anything.

When I was in school they gave us personal websites, and some time after I graduated I went back to the one I had.  there was a place I had made for group collaboration for some of my classes that let folks upload team documents.  somebody had uploaded a script that allowed them to gain IO access to all the sites hosted on that web server.  I downloaded it and tried it on one of those free hosting servers and was able to have pretty much root access to every site hosted on that server.  It was a pretty dangerous script, and if somebody else hosted on the same box as yours allowed somebody to upload a script like that, they could deface every site on that box from their web browser (including changing directory acl's).

most hosts have scanners for that kind of stuff, so your best bet is to contact them or access your logs to see what was going on.

Proper chmodding would help there (as Apache should only be reading index.php)

You did the PHP, CSS, and Javascript parts?

4,355

(18 replies, posted in PunBB 1.2 discussion)

fantasma wrote:
Smartys wrote:

OK, first off, what exactly did he do? Did he modify config.php, did he edit the database, what?

NO he modified only my index and not the config file!!!

I'd suggest reporting the incident to your host and asking them for help: they're more likely to be able to identify the issue.

4,356

(18 replies, posted in PunBB 1.2 discussion)

OK, first off, what exactly did he do? Did he modify config.php, did he edit the database, what?

4,357

(18 replies, posted in PunBB 1.2 discussion)

Moved to PunBB Discussion

It depends on how he managed to hack your site and what he did to your database.

http://cms.frankh.shacknet.nu/index.php … ;Itemid=32
The documentation, which Frank linked to above

Secondly, step 43 & 44 is altered. Just change the true to false after the query (and add the comment behind , so you have a mark that the attachment mod has altered that line)

You messed up in the install, apply this changeset again
http://dev.punbb.org/changeset/172

UNIX_TIMESTAMP is the issue
Here's a fix though:
http://punbb.org/forums/viewtopic.php?pid=35109#p35109

Try clearing your cache?

Right smile
This bug has already been noticed before and has been fixed in SVN: nice catch though smile
http://dev.punbb.org/changeset/768

Right, you have to not request pages for however many minutes.

buxx wrote:

It seems like there is no intergration with teh Mediawiki software and that is an pitty. This forum software should be the perfect add on for Mediawiki sites to discuss items on the wiki.
Anyone knows something about this?

I thought I saw one, I'll take a look later

4,365

(9 replies, posted in PunBB 1.2 discussion)

elbekko wrote:

1.3 will come with a script that updates the 1.2 database to work with 1.3 wink

It's already available for download, just not finished yet.

It isn't avaliable for download (at least by my definition, which would mean an officially provided zip/tar). The current revision can be checked out using SVN, but it's testing at your own risk.

4,366

(9 replies, posted in PunBB 1.2 discussion)

The language support is no different than it is in 1.2, unless I'm missing something (with the exception of the admin interface, which can now be translated)

Moved to Modifications

That's the right type.
Are you the only person visiting the forum?

Moved to Troubleshooting, since this looks like a config issue

Replace the call to UNIX_TIMESTAMP() to a call to PHP's mktime function (the first 3 arguments should be 0 for obvious reasons)

4,370

(11 replies, posted in Programming)

http://www.google.com/search?q=htaccess
tongue

4,371

(2 replies, posted in PunBB 1.2 discussion)

That's just a custom title wink
As an admin, look in profile under Personal
Also, a group option is to give all group members a tag

Err, there's nothing to change out, you add that code after the define call
What it does is disable the time limit PHP imposes on the script before it halts the execution. Hopefully, that way, all the emails will get sent

4,373

(2 replies, posted in PunBB 1.2 troubleshooting)

That is not common: I'd talk to your host. The last time I saw tables getting corrupted too often, I believe it was traced back to some corrupted MySQL libs.

4,374

(1 replies, posted in PunBB 1.2 troubleshooting)

If the culprit is mod_security, ask the admin to update his/her ruleset: no current ruleset should pose an issue.
However, I'd check error.log and see what error it is giving you.

4,375

(21 replies, posted in Programming)

http://shiflett.org/archive/184
Yes, depending on the character set you're using. Therefore, it's always a good idea to use mysql_real_escape_string.