Vbulletin - New Pages? Possible?

Discussion in 'vBulletin' started by agent272, Jul 26, 2007.

Thread Status:
Not open for further replies.
  1. #1
    Is it possible with VBulletin to create new pages? I want to create one for advertisers to get info and buy ads on. Is this possible? If not can someone custom build it into the system?
     
    agent272, Jul 26, 2007 IP
  2. Demon fox

    Demon fox Active Member

    Messages:
    703
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    78
    #2
    Yes you can create new pages have a search on vbulletin you should find something.
     
    Demon fox, Jul 26, 2007 IP
  3. agent272

    agent272 Banned

    Messages:
    510
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    0
    #3
    How? lol that was more or less the question, I know it can be done ;)
     
    agent272, Jul 26, 2007 IP
  4. Endurer

    Endurer Well-Known Member

    Messages:
    1,113
    Likes Received:
    84
    Best Answers:
    0
    Trophy Points:
    140
    #4
    Endurer, Jul 26, 2007 IP
  5. agent272

    agent272 Banned

    Messages:
    510
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I will check it out! Thanks dude
     
    agent272, Jul 27, 2007 IP
  6. ximpda

    ximpda Guest

    Messages:
    277
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #6


    use vbadvanced, it gives you options to add new pages.
    you can get vbadvanced here at : www.vbadvanced.com
     
    ximpda, Jul 29, 2007 IP
  7. agent272

    agent272 Banned

    Messages:
    510
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Yah, I thought of that, but I want the homepage to still be the forums.
     
    agent272, Jul 30, 2007 IP
  8. Qryztufre

    Qryztufre Prominent Member

    Messages:
    6,071
    Likes Received:
    491
    Best Answers:
    0
    Trophy Points:
    300
    #8
    [How to] Add custompages to your forum - vBulletin.org Forum


    That should do exactly what you are wanting, and it does not use any hacks, or template changes... you just have to be able to follow it's instructions ;)

    I've added a few to my forums, and it took a try or two, but its really easy once you get the hang of it.
     
    Qryztufre, Jul 30, 2007 IP
  9. agent272

    agent272 Banned

    Messages:
    510
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    0
    #9
    I need html friendly pages Im afraid.
     
    agent272, Jul 30, 2007 IP
  10. Qryztufre

    Qryztufre Prominent Member

    Messages:
    6,071
    Likes Received:
    491
    Best Answers:
    0
    Trophy Points:
    300
    #10
    Qryztufre, Jul 30, 2007 IP
  11. Bernard

    Bernard Well-Known Member

    Messages:
    1,608
    Likes Received:
    107
    Best Answers:
    0
    Trophy Points:
    185
    #11
    You can still use the forums as the home page and use vBAdvanced. vBA defaults to using cmps_index.php as the script's "home page" so it can reside in the same directory (root) as the forums and the forums will be the default home page.

    You can adjust the templates for the navbar and footer to include any new pages you design (whether using vBA to keep the same templated look and feel or not).
     
    Bernard, Jul 30, 2007 IP
  12. agent272

    agent272 Banned

    Messages:
    510
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    0
    #12
    Not html friendly though is it?
     
    agent272, Jul 30, 2007 IP
  13. Qryztufre

    Qryztufre Prominent Member

    Messages:
    6,071
    Likes Received:
    491
    Best Answers:
    0
    Trophy Points:
    300
    #13
    It's written in HTML if that's what you mean.

    If you are referring to the URL not having some page.php?=some_random_name then you may be limited to just making the pages yourself then linking to them some how.

    If you are talking about just giving information to potential advertisers, then I'm pretty sure they won't mind all that much having the dynamic url, as that'll likely be where their ads are placed.

    The only real way I know of it get SEO friendly URLs within the forum setting would be to install vBSEO or the ZOINTS rewrite that does the same thing.
     
    Qryztufre, Jul 30, 2007 IP
  14. agent272

    agent272 Banned

    Messages:
    510
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    0
    #14
    yeah I have had zoints, slows stuff down.
     
    agent272, Jul 30, 2007 IP
  15. Bernard

    Bernard Well-Known Member

    Messages:
    1,608
    Likes Received:
    107
    Best Answers:
    0
    Trophy Points:
    185
    #15
    I have had no problems getting vBA pages indexed and ranked in the SERPs.
     
    Bernard, Jul 30, 2007 IP
  16. Audentio

    Audentio Well-Known Member

    Messages:
    424
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    108
    #16
    There is also the Forum Seperation hack. This gives you new pages as well. I use it and its very nice.
     
    Audentio, Aug 4, 2007 IP
  17. amaderforum

    amaderforum Well-Known Member

    Messages:
    155
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    110
    #17
    this an example:
    paste this code any.php

    <?php
    error_reporting(E_ALL & ~E_NOTICE);
    define('NO_REGISTER_GLOBALS', 1);
    define('GET_EDIT_TEMPLATES', true);
    define('THIS_SCRIPT', 'newpage');
    $phrasegroups = array();
    $specialtemplates = array();
    $globaltemplates = array();
    $actiontemplates = array();
    require_once('./global.php');
            $navbits = array();
            $navbits[''] = 'Disclaimer And Regulations';
            $navbits = construct_navbits($navbits);
            eval('$navbar = "' . fetch_template('navbar') . '";');
            eval('print_output("' . fetch_template('Disclaimer And Regulations') . '");');
    ?>
    Code (markup):
    after login yourdomain/forum/admin or admin

    Then Template after u can see Extra Page

    type what ever u like then save it .

    after link on your nav bar
     
    amaderforum, Aug 11, 2007 IP
Thread Status:
Not open for further replies.