How can I have a post quick reply textarea , just like the one on daniweb , in a phpbb 2.0 ?
Do you know/have a mod that does that ?

Dani AI

Generated

Short, practical notes based on this thread (thanks to , and for the pointers).

Quick checklist before installing any phpBB‑2 quick‑reply mod:

  • Backup files and the database first.
  • Confirm the MOD explicitly lists compatibility with your phpBB 2.x build and your active style.
  • Apply template edits to your active style’s viewtopic.tpl (not just the default template).
  • Follow the MOD README exactly for PHP/file merges; many quick‑reply MODs change viewtopic.php, posting.php and language files.
  • After editing, clear phpBB’s template cache (delete compiled files in cache/ except index.htm/.htaccess).
  • Test on a local copy before touching a live board.

Common issues and fixes:

  • If nothing shows, check the active style’s viewtopic.tpl (a MOD may have patched a different file than the one your board actually uses).
  • Permission or auth checks can hide the form; quick replies are usually wrapped in a logged‑in/auth condition — verify the same condition the forum uses for normal posting. A simple phpBB 2 check looks like:
if ($userdata['session_logged_in'])
{
    // render quick reply block
}
  • If the MOD adds AJAX, watch for JavaScript library conflicts and use the browser console to spot errors.
  • If running on newer server software, phpBB2 can require tweaks or an upgrade; consider moving to a maintained release for long‑term security and compatibility.

If styling is your only goal (as asked), change the quick‑reply block’s CSS/template rather than replacing the whole mod.

Recommended Answers

All 3 Replies

There is mod for that on the phpbb website.

do you mean just changing the textarea background image?

No , I just needed a very simple post quick reply implementation on the viewtopic.php in phpbb 2.0
I found a mod that does exactly what I need .Stupid me , I googled for "short message reply" mod , and that's why I cound't find it

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.