php/mysql site template system ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • George L
    Former vBulletin Support
    • May 2000
    • 32996
    • 3.8.x

    php/mysql site template system ?

    I have been looking around on hotscripts.com and other sites for a php/mysql site template system to power one of my sites' new layouts

    problem is i haven't found one that is easier to use (like vB) and can operate so that the script looks into a template file(s) for the required settings and i applied once or whenever i update the site's layout elements.

    I don't want it hitting the mysql database every time a page loads since the site get's up to 36,000 pageviews/day or around 150,000 - 190,000 server hits/day already

    anyone using or know of such a script ?
    :: Always Back Up Forum Database + Attachments BEFORE upgrading !
    :: Nginx SPDY SSL - World Flags Demo [video results]
    :: vBulletin hacked forums: Clean Up Guide for VPS/Dedicated hosting users [ vbulletin.com blog summary ]
  • Mike Sullivan
    Former vBulletin Developer
    • Apr 2000
    • 13327
    • 3.6.x

    #2
    You mean aside from the one I'm working on as part of another script? Nope.


    (I'm sure you can guess what the other script is.)

    Comment

    • George L
      Former vBulletin Support
      • May 2000
      • 32996
      • 3.8.x

      #3
      Originally posted by Ed Sullivan
      You mean aside from the one I'm working on as part of another script? Nope.


      (I'm sure you can guess what the other script is.)
      yeah... i thought you said you were getting tired of working on it ? or was that only marticle ?
      :: Always Back Up Forum Database + Attachments BEFORE upgrading !
      :: Nginx SPDY SSL - World Flags Demo [video results]
      :: vBulletin hacked forums: Clean Up Guide for VPS/Dedicated hosting users [ vbulletin.com blog summary ]

      Comment

      • Mike Sullivan
        Former vBulletin Developer
        • Apr 2000
        • 13327
        • 3.6.x

        #4
        Only mArticle - I have a pretty well worked out idea of what I'm doing with Esuite.

        I guess you could say it's a glorified phpNuke, but with the Ed Sullivan flare. (Some awesome features that I haven't seen anywhere actually... )

        mArticle is more of a teaser for Esuite.

        Comment

        • MattR
          Senior Member
          • Jun 2000
          • 1047

          #5
          What about that "Fast Template" system I've seen around? I think dot_banner uses that.
          Matt
          Sybase DBA / PHP fanatic
          Sybase v. MySQL v. Oracle | Why I don't like MySQL | Download Sybase TODAY! | Visit DBForums.com!

          Comment

          • Mike Sullivan
            Former vBulletin Developer
            • Apr 2000
            • 13327
            • 3.6.x

            #6
            I think eva want's a template system that creates static HTML files -- similar to UBB 5's system (except using user editable templates).

            Although, I haven't looked too much at fast template, I think it's dynamic (although you could adapt it I'm sure)

            Comment

            • George L
              Former vBulletin Support
              • May 2000
              • 32996
              • 3.8.x

              #7
              Originally posted by Ed Sullivan
              Only mArticle - I have a pretty well worked out idea of what I'm doing with Esuite.

              I guess you could say it's a glorified phpNuke, but with the Ed Sullivan flare. (Some awesome features that I haven't seen anywhere actually... )

              mArticle is more of a teaser for Esuite.
              yes and a teaser it is... been waiting ages for Esuite
              :: Always Back Up Forum Database + Attachments BEFORE upgrading !
              :: Nginx SPDY SSL - World Flags Demo [video results]
              :: vBulletin hacked forums: Clean Up Guide for VPS/Dedicated hosting users [ vbulletin.com blog summary ]

              Comment

              • George L
                Former vBulletin Support
                • May 2000
                • 32996
                • 3.8.x

                #8
                Originally posted by Ed Sullivan
                I think eva want's a template system that creates static HTML files -- similar to UBB 5's system (except using user editable templates).

                Although, I haven't looked too much at fast template, I think it's dynamic (although you could adapt it I'm sure)
                yep, looking for something like that creates static html / php files based on a site template(s) - i really like how marticle works
                :: Always Back Up Forum Database + Attachments BEFORE upgrading !
                :: Nginx SPDY SSL - World Flags Demo [video results]
                :: vBulletin hacked forums: Clean Up Guide for VPS/Dedicated hosting users [ vbulletin.com blog summary ]

                Comment

                • Mike Sullivan
                  Former vBulletin Developer
                  • Apr 2000
                  • 13327
                  • 3.6.x

                  #9
                  Well, the story of mArticle/Esuite is this:

                  - Write mArticle for my site.
                  - Get requests for it here.
                  - Move it from my hardcoded HTML to a template driven engine.
                  - Release it, do some work on it.
                  - Come up with the idea for Esuite.
                  - Decide Esuite is too much of an undertaking, continue developing mArticle to take Esuite's place as a commercial product (1.5 was supposed to be the commercial version).
                  - Decide I don't have enough time to do a commercial mArticle.
                  - Have a beta version of the new mArticle just literally sitting there for about 2 months (since I started working on vB).
                  - Decide to finish up mArticle 1.5 and release it freely, and...
                  - Decide to create Esuite again.

                  9 months ago, to... a week or two ago.

                  I wouldn't be looking for Esuite real soon though, as there are a bunch of hoops to go through before it's release. And, oh yeah, a minor thing... lotsa coding!

                  Comment

                  • George L
                    Former vBulletin Support
                    • May 2000
                    • 32996
                    • 3.8.x

                    #10
                    yeah lack of time huh... sounds like some of my site projects that have been put on hold for over 15 months hehe
                    :: Always Back Up Forum Database + Attachments BEFORE upgrading !
                    :: Nginx SPDY SSL - World Flags Demo [video results]
                    :: vBulletin hacked forums: Clean Up Guide for VPS/Dedicated hosting users [ vbulletin.com blog summary ]

                    Comment

                    • Menno
                      Senior Member
                      • Apr 2000
                      • 1224

                      #11
                      I'm working on a templated newsmanager as well. Should be releasing the beta soon.
                      - Insert viable disclaimer here -

                      ArtBeast!

                      Comment

                      • JB007
                        Senior Member
                        • Jan 2001
                        • 169

                        #12
                        Well, I think that the best way to programme a vB - like template system is not by using MySQL. Instead, we can 'include' template files and create pages by subroutine calles which will greatly cuts down the number MySQL queries and improves the speed. For example ( in perl ):
                        Code:
                        require 'templates.pl';
                        $form = create_page_header({ title=>'Login' });
                        $form .= create_form_header({ formaction=>'current.pl', action=>'dologin' });
                        $form .= create_table_header({ width="100%" });
                        #.. etc
                        for instance, create_page_header would be :
                        Code:
                        sub create_page_header
                        {
                        my $params = shift;
                        my $output = qq~
                        <html>
                        <head>
                        <title>$params->{title}</title>
                        </head>
                        <body>
                        ~;
                        return $output;
                        }
                        BTW, There is a theme creator for PHP-Nuke that makes it easy to create new themes ...

                        Best Regards

                        Comment

                        widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
                        Working...