Tagged Questions
The front-controller tag has no wiki summary.
6
votes
4answers
2k views
What are the advantages and disadvantages of using the Front Controller pattern?
I currently design all of my websites with a file for each page, then include common elements like the header, footer and so on. However, I've noticed that many frameworks and CMSs use the Front ...
3
votes
1answer
196 views
What is a Front Controller and how is it implemented in PHP?
First of all, i'm a beginner to PHP. And have posted a question here :
Refactoring require_once file in a project
. I've tried to read about Front controller as much as i can, but can't get how it ...
3
votes
1answer
156 views
how to leverage on Spring MVC to implement front controller but not using controllers
the title of this post might be confusing.I'll try be best to clarify it.
I Started a project using Spring MVC it works fine no problem.After that i've realized
that i was a bit overkill and found ...
3
votes
2answers
255 views
Pretty URL to string parameters
I have a website that use this style : /index.php?page=45&info=whatever&anotherparam=2
I plan to have pretty url to transform the previous url to : /profile/whatever/2
I know I have to use ...
3
votes
2answers
1k views
Zend Framework: How to disable default routing?
I've spent many hours trying to get this to work. And I'm getting quite desperate.
Would be great if someone out there could help me out :)
Currently using Zend Framework 1.9.5, though I have been ...
3
votes
2answers
686 views
Zend_Framework- Where to Place $_GET and $_POST (HTTP Request) handling?
I recently read this post which led to a series of other posts that all seem to suggest the same idea: Models do everything, the View should be able to communicate directly with the model and vice ...
3
votes
8answers
2k views
How to implement URL pattern interpreter as used by Django and RoR in PHP
What's the best way to implement a URL interpreter / dispatcher, such as found in Django and RoR, in PHP?
It should be able to interpret a query string as follows:
/users/show/4 maps to
area = ...
2
votes
1answer
138 views
Zend clear Request Parameters
I just wanted to ask why the following inside a Zend_Controller_Action action method:
$request = $this->getRequest();
$params = $request->getParams();
var_dump($params);
foreach ($params as ...
2
votes
3answers
482 views
get current controller
in a function I want to reach current controller:
$front = Zend_Controller_Front::getInstance();
this only gives a handler but not current controller.
I changed the code from function to inside of ...
2
votes
2answers
2k views
How to create user-friendly and seo-friendly urls in jsf?
For example, I have class Article with methods getTitle () and getContent ().
I also have ArticlesService with method getAllArticles (). How to create a list of links with meaningful names (formed ...
2
votes
2answers
2k views
Zend framework: Removing default routes
I'm using Zend FW 1.9.2, want to disable the default routes and supply my own. I really dislike the default /:controller/:action routing.
The idea is to inject routes at init, and when the request ...
2
votes
2answers
330 views
Is it possible to use a “front controller” in Rails?
In Spring MVC a Dispatcher servlet is used as a "front controller" to handle all of the application requests and route them appropriately.
Is it possible to use such an approach in Rails or is it ...
1
vote
1answer
133 views
A Controller plugin defined in application.ini not found by the front controller
I defined a plugin in application.ini directory like
resources.frontController.plugins.acl = "CMS_Controller_Plugin_Acl"
The namespace CMS_ is set to be autoloaded in bootstrap.php
...
1
vote
0answers
73 views
htaccess redirect taking precedence over htaccess basic authentication
I have the following htaccess which redirects front controller commands to a given file....
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
...
1
vote
1answer
144 views
how run an action after executing the action of control (in all of the pages)
i have a plugin for frontcontroller.
it work fine for dispatcherloodstartup metod , but postdispatcher can`t call action!!
what is wrong?!
this is my plugin:
class ...
1
vote
3answers
217 views
Should all Front Classes use singleton?
Consider Martin Fowler's Patterns Of Enterprise Application Architecture, and the pattern of Front Controller: http://martinfowler.com/eaaCatalog/frontController.html
Apparently, it uses the singleton ...
1
vote
2answers
99 views
Going from small to medium sized websites
I've been coding websites for a couple of years now, mostly in php and xhtml. I come from the design world, but I'm proud of doing standart compliant websites and great interfaces. Also used Wordpress ...
1
vote
4answers
1k views
How do I implement a front controller in Java?
I'm writing a very simple web framework using Java servlets for learning purposes. I've done this before in PHP, and it worked by consulting the request URI, then instantiating the appropriate class ...
1
vote
3answers
2k views
Java Front Controller
I'm thinking of implementing Front Controller in my J2EE application. Could you please suggest the same with few links (with source code examples) & any standards to follow?
Best regards
1
vote
2answers
2k views
Best practices of implementation of front controller using java servlets
Suppose we have some project with next structure:
web
articles
main.jsp
sidearts.jsp
central.jsp
forum
main.jsp
css
js
WEB-INF
web.xml
Note that we don't have front ...
1
vote
2answers
345 views
friendly code to transition from page controller to front controller
I am in the early stages of creating a small-medium sized web application by myself. I read "PHP Objects, Patterns, and Practice," and I decided to use page controllers because quick production is a ...
1
vote
1answer
63 views
View management and selection in desktop app
How is view management and selection typically accomplished in a desktop app? I know the FrontController is a popular pattern in web apps but I have the feeling that it is not well suited for desktop ...
1
vote
1answer
316 views
Database Driven Front End Controller / Page Management Good or Bad?
I am currently working within a custom framework that uses the database to setup a Page Object which contains the information about Module, View, Controller, etc which is used by a Front Controller to ...
0
votes
1answer
16 views
Front-end-dev console
I'm in charge of a website developped with symfony. This website is in prod.
I would like to know how to reinstall the front-end console, because im completely blinded in my task.
0
votes
3answers
85 views
PHP layout manager
I am not sure if I am allowed to ask a more practical question here as this question is not as much support as just giving good advice.
I have a front controller with a simple layout manager (lack ...
0
votes
2answers
104 views
dynamic routing with php front controller
I'm trying to fetch control name from URL and match it with correct controller dynamically in index.php.
My app root : /localhost/app/index.php
So basically when i typed ...
0
votes
1answer
30 views
How to easily include links to other pages of my site within my PHP files?
I was wondering if there is a way to make the following process more automated (so links automatically update throughout if the links get changed).
I have a PHP site, with a front controller.
Now ...
0
votes
3answers
272 views
Apache .htaccess: redirect all request to a file, except images?
Im using this .htaccess now:
Options +FollowSymLinks +ExecCGI
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ entryPoint.php [QSA]
</IfModule>
with this, I want all ...
0
votes
1answer
141 views
mod_rewrite redirect if file not found
I've got a website that use a front controller that redirect traffic to certain files so I can employ SEO friendly URLs however there are some static pages on the site which I don't want traffic ...
0
votes
0answers
727 views
Magento error “Front controller reached 100 router match iterations”
I have an annoying problem. I googled almost everything about this error. And i haven't found a solution for my website.
I used the debugging code provided by Andrey Tserkus.
I can see that i get ...
0
votes
1answer
54 views
Mod Rewrite Regex - Match a url containting A but not B
I'm trying to send page requested through a front controller.
I need to match the following urls
domain.com/admin/
domain.com/admin/somepage
but I also have some assets in the /admin subfolder ...
0
votes
1answer
38 views
is there any problem for a page in WEB-INF to access image in web pages folder
Hello
i'm working on a j2ee web app with spring 3.0.5 implementing the front controller pattern, with it's dispatcher servlet without the controller using
<mvc:view-controller path="/" ...
0
votes
1answer
266 views
.htaccess front controller mod rewrite trouble
I know this should be simple but I'm having a hard time writing the .htaccess rule for my front controller.
The /themes/ folder contains all my css/js/images etc so I don't want them to pass though ...
0
votes
2answers
380 views
Display forwarded JSP with url-pattern “/*”
To improve my java skills, I'm trying to build a simple j2ee framework (MVC).
I built it to handle every request in a FrontServlet. Here is the mapping that I used :
web.xml :
<servlet>
...
0
votes
3answers
901 views
Getting View Object from within a Zend Controller plugin
In my controller, I have a postDispatch to consolidate my FlashMessenger messages:
public function postDispatch()
{
$messages = $this->_helper->getHelper ( 'FlashMessenger' )
...
0
votes
1answer
102 views
How can I extract page numbers and id numbers from a URI?
I am trying to load my whole site through a single point of entry, index.php?uri
My goal is to have nice clean urls though, so far I have come up with...
domain.com/section-name/page-of-that-section ...
0
votes
4answers
461 views
Frontcontroller plugin does not load
When i use a frontcontroller plugin in zend frameworker it seems to run before the autoloader. How should i do this?
in my app.ini
resources.frontController.plugins.routes = "Plugin_Routes"
...
0
votes
5answers
434 views
Design Patterns: What's the antithesis of Front Controller?
I'm familiar with the Front Controller pattern, in which all events/requests are processed through a single centralized controller.
But what would you call it when you wish to keep the various parts ...
0
votes
1answer
157 views
How to refactor long Front Controller?
I am using a Front Controller to send the user through a series of pages with questions. Pretty much everything must be dynamic as the pages, the questions, and everything else is set in the admin ...
0
votes
8answers
1k views
Php site structure
I'm currently in the process of setting my website, largely with php. Though this is my first time using it so I'm running into some problems.
I've got the basics of the site down. Registering, ...
0
votes
5answers
290 views
two session_starts() hang PHP app
Context: I was going to build app using mod_rewrite (front page loading child pages), but got stuck on loading session_enabled pages from the front controller page.
Problem: The problem is that I ...