Hey,
i´ve set my BaseUri to "/" because phalcon coudn´t find it by itself. But does it have any effects to the dispatcher manipulation ?
Greetz Marc
|
Jan '14 |
3 |
960 |
0 |
Hi Marc -
What is the actual base URI of your application? It's usually best to use a fullly qualified URI like "https://localhost/phalcon/". I'm not quite sure I understand what you mean by "does it have any effects to the dispatcher manipulation". As far as I know, the base URI affects the URLs in your routes and thus sent by your dispatcher. So if you created a route:
$route->add('/blog/{$year}/{month}/{title}', array(
'controller' => 'posts',
'action' => 'show'
))->setName('show-post');
and called ->forward() from your dispatch service, it would forward to BASEURI/blog/year/month/title.
I mean, what URL do you navigate to when testing your phalcon application?
I manually set my base URI to be either "https://localhost/projectname/" or "https://productionsite.com/" depending on the environment. The base URI shouldn't affect executeBeforeRoute, that's just a event that triggers before Phalcon determines the route. If you have any code you've written, please post it!
Mike
I set up an vHost for my Application, so i navigate to https://sandbox:8888/. But the Problem was, that without setting the base URI to "/" i was not able to navigate through my pages. I always had the "public" in my url. i think its a rewrite problem, but i really can´t figure out where the problem is. I use all .htacces files and have AllowOverride set to All, mod_rewrite is turned on and anything should be Ok but it isn´t :) . So then i tried the set base URI to "/" and it worked for me. Now i try to configure an ACL list and had some trouble with it, so thats why i was thinking about that again.
check my post https://forum.phalcon.io/discussion/1462/ without setbaseuri the tag function will output https://localhost:8000/index.php/uri and the routing all map to index.php...
Look if i do this:
$di->set('dispatcher', function() use ($di) {
//Obtain the standard eventsManager from the DI
$eventsManager = $di->getShared('eventsManager');
//Instantiate the Security plugin
$security = new Security($di);
//Listen for events produced in the dispatcher using the Security plugin
$eventsManager->attach('dispatch', $security);
$dispatcher = new Phalcon\Mvc\Dispatcher();
//Bind the EventsManager to the Dispatcher
$dispatcher->setEventsManager($eventsManager);
return $dispatcher;
});
My View is broken ! It´s just nothing on my screen anymore ?!?!?! I really can´t understand this :(