philipk Approved

Member since: 2014-05-23

Recent posts by philipk
Post When

Case closed!

return \Response::make($this->controller->run('404'), 404);

https://github.com/octoberc...

Posted in Returning 404 from a component

@daniel81: By using Laravel's Response::view directly you're bypassing October's templating system, ...

Posted in Returning 404 from a component

You're right, it is. I'm in a different situation though:

public function onRun()
{
    $slug = $thi...

Posted in Returning 404 from a component

Have you set up the correct URL on the blog post page? It should contain a slug parameter: /blog/pos...

Posted in Blog by RainLab - links not working for me

Yes, that would be the built-in 404 page :-)

What if I wanted to show this page: /themes/demo/pages/...

Posted in Returning 404 from a component

I'm building a basic plugin that serves dynamic pages from the database. I've made a component from ...

Posted in Returning 404 from a component