NEED a forum with the followig features

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • I Report, You Decide

    NEED a forum with the followig features

    phpBB has a session in each url. that is bad for search engine crawlers.
    i also hate to see people post something that is not proper.
    i also want to change some of the keywords to to an url
    so i need the following features:

    1 no session per message or url
    2 every new post must be reviewed by admin before shown on the forum
    3 i want to change keyword 'amazon' to my affiliate url


  • BeBoo

    #2
    Re: NEED a forum with the followig features

    The page you are looking for could not be found. Return to HotScripts homepage to browse our collection of PHP, CGI, Perl, JavaScript and ASP scripts.


    "I Report, You Decide" <test@test.co m> wrote in message
    news:umSGb.2418 04$Ec1.8449694@ bgtnsc05-news.ops.worldn et.att.net...[color=blue]
    > phpBB has a session in each url. that is bad for search engine crawlers.
    > i also hate to see people post something that is not proper.
    > i also want to change some of the keywords to to an url
    > so i need the following features:
    >
    > 1 no session per message or url
    > 2 every new post must be reviewed by admin before shown on the forum
    > 3 i want to change keyword 'amazon' to my affiliate url
    >
    >[/color]


    Comment

    • Guest's Avatar

      #3
      Re: NEED a forum with the followig features

      "I Report, You Decide" <test@test.co m> wrote in message
      news:umSGb.2418 04$Ec1.8449694@ bgtnsc05-news.ops.worldn et.att.net...[color=blue]
      > phpBB has a session in each url. that is bad for search engine crawlers.
      > i also hate to see people post something that is not proper.
      > i also want to change some of the keywords to to an url
      > so i need the following features:
      >
      > 1 no session per message or url
      > 2 every new post must be reviewed by admin before shown on the forum
      > 3 i want to change keyword 'amazon' to my affiliate url[/color]

      Those are fairly straightforward requirements. I'm not sure what #3 means,
      but check out miniBB (http://www.minibb.net/).

      P.S. You should pick a different email to munge -- 'test.com' actually
      exists!


      Comment

      • sandy pittendrigh

        #4
        Re: NEED a forum with the followig features

        The following is a barebones, file-based (no mysql needed)
        threaded BBS.

        You'd have to hack the "NewPost" function to write to an admin
        directory--if you wanted to approve posts before posting them.
        ....and then copy them from the admin directory to the live
        directory. You could do that from a bash prompt, or with
        an html form (which you would have to write).

        Or you could do as I do: delete innapropriate posts after
        they happen. Because this BBS is file based, removing
        a post means "rm $file" from an ssh shell.




        Comment

        • I Report, You Decide

          #5
          Re: NEED a forum with the followig features

          Can big name BB such as IPB or PhpBB do that
          1 no session per message or url
          2 every new post must be reviewed by admin before shown on the forum
          3 i want to change keyword 'amazon' to my affiliate url

          I hate to use those none name scripts for lack of updates/ungrades
          [color=blue]
          > The following is a barebones, file-based (no mysql needed)
          > threaded BBS.
          >
          > You'd have to hack the "NewPost" function to write to an admin
          > directory--if you wanted to approve posts before posting them.
          > ...and then copy them from the admin directory to the live
          > directory. You could do that from a bash prompt, or with
          > an html form (which you would have to write).
          >
          > Or you could do as I do: delete innapropriate posts after
          > they happen. Because this BBS is file based, removing
          > a post means "rm $file" from an ssh shell.
          >
          >
          > http://www.phpclasses.org/browse.html/package/1313.html
          >[/color]


          Comment

          Working...