vote up 0 vote down star

Hi there,

I'm having an issue with the visualization of my site on Google Chrome and Safari (both using Webkit rendering engine), the site is built upon Symfony framework, version 1.1 (unmaintained version). When navigating to the site, this shows an error 500 when loading a page, I read somewhere that it might be related to Symfony caching but I don't know how to solve it and turning off caching is not a solution.

Thankyou in advance.

flag

80% accept rate

3 Answers

vote up 1 vote down check

This ticket fixes the problem, so you can patch your sfWebRequest class code.

link|flag
vote up 1 vote down

See this: http://forum.symfony-project.org/index.php/m/75225/

To fix, change your config/ProjectConfiguration.class.php to include the following:

  public function setup()
  {
    // keep current code here and then add...

    $this->dispatcher->connect('request.filter_parameters', array($this, 'filterRequestParameters'));
  }

  public function filterRequestParameters(sfEvent $event, $parameters)
  {
    $request = $event->getSubject();
    if (preg_match('|Safari/([0-9\.]+)|', $request->getHttpHeader('User-Agent')))
    {
      $request->setRequestFormat('html');
    }

    return $parameters;
  }
link|flag
vote up 0 vote down

You can see the actual problem by browsing via "dev" controller. It's called by default: yourAppName_dev.php

So if you have a "frontend" app, it's: http://domain.tld/frontend_dev.php

Yes, most of the cases for error 500 is the cache. You can clear the cache by navigating to your project root directory and type:

symfony cc

or

./symfony cc

or

php symfony cc

which depends of you environment and setup.

Also you can delete the content of the cache directory located in your project root manually.


Hope this helps.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.