Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 875497
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T11:16:49+00:00 2026-05-15T11:16:49+00:00

I’m currently working on my own PHP Framework, and I need some help figuring

  • 0

I’m currently working on my own PHP Framework, and I need some help figuring out if I’m going in the right direction or not…

The framework is both for my own use and to generally advance my PHP skills further. I’ve encountered numerous problems that by overcoming them I have learned a great deal, and love being able to create something from nothing, so I’d rather not see answers like “Just use Zend”! 😉

I have read a bunch of articles both on Stack Overflow and a bunch of other sites, but can’t quite get the right answer I need, so hopefully someone can give me some helpful advice!

I’ve tried a few different solutions, but I’ve just ended up confusing myself and I’m not sure which direction to go now! Can’t quite get my head around it all…

‘Theoretical’ framework structure

- .htaccess
- index.php
- private/
    - app/
        - bootstrap.php
        - modules/
            - default/
                - controllers/
                    - pages.php
                    - index.php
                - models/
                - views/
            - admin/
                - controllers/
                - models/
                - views/
    - config/
        - config.php
        - autoloader.php
    - lib/
        - Some_Library
            - Class1
                - class1.php
            - Class2
                - class2.php
- public/
    - css
    - images
    - scripts

Details

  • index.php is the main file, where every request is routed to with .htaccess.
  • private/ can’t be accessed publicly, obviously.
  • public/ contains all the public files.
  • app/ contains all app-specific code.
  • lib/ could contain Zend or another library (I’m also working on my own), to be called with autoloaders
  • bootstrap.php is the app-specific code… Do I need this? is the main ‘index.php’ enough?.
  • modules/ would contain each module… Do I need modules at all?.
  • default/ is the default module that will contain the MVC’s for most requests (used when ‘admin’ isn’t the first part of the URL).
  • admin/ is the module that will contain the MVC’s for the admin section.

Anyways, to my question…

I thought it would be better to separate the admin section from the rest of the website, but that’s where I’m getting stuck. I have made the above structure to work with it, but I’m not sure if this is the most effective way.

If a request site.com/videos/view/1/ comes to my site..

Module: Default
Controller: Videos
Action: View
Params: array( ‘1’ )

and if the request site.com/admin/pages/view/1/ comes to my site..

Module: Admin
Controller: Pages
Action: View
Params: array( ‘1’ )

Is this the right way to go about this? Or am I over-complicating it and doing something that’s not worth doing?

Should I have a completely separate application framework for my admin section…? Do I even need to separate the admin section’s MVC’s from the rest of it all?

Sorry for the massive question, just wanted to give you as much info as possible! Feel free to answer whichever part you can =P

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T11:16:50+00:00Added an answer on May 15, 2026 at 11:16 am

    One Solution for admin routing is what CakePHP does,
    you first define a configuration for the admin string
    and then in your controller use actions with a specific naming convertion

    //Configuration ============================
    Configure::write("admin_routing" , true );
    Configure::write("admin_prefix"  , "admin" );
    
    //Controller ===============================
    class MyController extends AppController{
    
        function index(){
          //Will map to /mycontroller/
        }
    
    
        function admin_index(){
          //Will map to /admin/mycontroller/
        }
    
    }
    

    You can generalize this by using a routing system
    just look how your favorite framework does it

    On another note

    1. The modules folder seems to be unecesary
    2. I agree with antpaw you should add a globals view and model folder in order to share them across applications
    3. I don’t get why autoloader is inside the config directory and not as part of the lib directory, you can also just move the boostrap.php to the config directory

    Hope this helps

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
this is what i have right now Drawing an RSS feed into the php,
I need a function that will clean a strings' special characters. I do NOT
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string
For some reason, after submitting a string like this Jack’s Spindle from a text
I want use html5's new tag to play a wav file (currently only supported
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.