I've generated backup of a website has symfony2 CMS
when i extracted it on my localhost its worked fine but (css/js/images) not working
its like the bundles need to rebuild again right ?
i am using Mac os terminal to write symfony2 commands
css tags
{% block stylesheets %}
{{ parent() }}
<link rel="stylesheet" href="{{asset('bundles/cmsfront/css/default.css')}}" type="text/css" />
{% if app.request.attributes.get('_locale') == 'ar' %}
<link rel="stylesheet" href="{{asset('bundles/cmsfront/css/rtl.css')}}" type="text/css" />
{% endif %}
{% endblock %}
the online website running prefect , i need to move this website to another server so i just want to make a test on my localhost and i got this error for CSS and Images etc
403
Forbidden
You don't have permission to access /myweb/web/bundles/cmsfront/js/slider.js on this server.
any advice ?
/myweb/web
in the url ? Your Apache server should be configured to have theweb
folder as the DocumentRoot