Results 1 to 4 of 4

Thread: Anyone know phpbb well enough to answer question

  1. #1
    Senior Member
    Join Date
    Dec 2001
    Posts
    304

    Anyone know phpbb well enough to answer question

    I just have a quick question and since most people here are very knowlegable i figured I would ask it here.

    Kindof plain but it does have to do with website development so i guess it applies.

    All i really want to do is change the confermations on phpbb for when you first post and when you delete a post by default there are this

    Your message has been entered successfully
    Click Here to view your message
    Click Here to return to the forum

    And

    Your message has been deleted successfully
    Click Here to return to the forum \

    I searched every file that I think would be stored in and I know when it shows the page it says the address is posting.php but I check it and cant find anything. There is alot of references to includes and I scoped some of them out and cant seem to find the right file to modify. I know it can be done. Anyone know off hand what file needs to be edited?

    Thanks in advance
    Violence breeds violence
    we need a world court
    not a republican with his hands covered in oil and military hardware lecturing us on world security!

  2. #2
    All the strings are stored in the /lang/ folder in the file english.lang.php or whatever language you use. I use openbb with postnuke my path is /public_html/pn/modules/XForum/modules/XForum/lang/english.lang.php


    Hope it helps

  3. #3
    Senior Member
    Join Date
    Dec 2001
    Posts
    304
    Thanks alot. I am going threw it now. Havent found the part that I am looking for yet but I am finding alot more to change, by the looks of it though I am sure this is where it is. Heres a couple of greenies for your help. Oh yea, i checked every friggin file/folder exept the language folder. should have known thats where it would be.

    Thanks
    Violence breeds violence
    we need a world court
    not a republican with his hands covered in oil and military hardware lecturing us on world security!

  4. #4
    PHP/PostgreSQL guy
    Join Date
    Dec 2001
    Posts
    1,164
    In language/lang_english/lang_main.php, you'll see this in there:

    Code:
    $lang['Stored'] = 'Your message has been entered successfully';
    $lang['Deleted'] = 'Your message has been deleted successfully';
    $lang['Poll_delete'] = 'Your poll has been deleted successfully';
    $lang['Vote_cast'] = 'Your vote has been cast';
    Let me know if you need anything else. Change them here.
    We the willing, led by the unknowing, have been doing the impossible for the ungrateful. We have done so much with so little for so long that we are now qualified to do just about anything with almost nothing.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •