Symfony Asset Manager

I noticed my vps goes down because of this in my symfony:

<?php foreach ($view['assetic']->stylesheets(
    array('bundles/acme_foo/css/*'),
    array('cssrewrite')
) as $url): ?>
    <link rel="stylesheet" href="<?php echo $view->escape($url) ?>" />
<?php endforeach ?>

why this should affect on tailwatchd and on MySQL server? Each time I use this my server goes down for 30 minutes and if I remove it, it works fine! why?

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.