People, I have a problem with a zend framework and file location.
application/
controllers/
views/
_header/
_footer/
scripts/
index/
style/
style.css
library/
Zend/
index.php
I am running this on XAMPP 1.6.6a.
Everithing is good when i do not specifiy controller and action in url.
so http://"vhost_name.localhost"/ works well, but when i specify controller and action(or just a controller)
http://"vhost_name.localhost"/login/ or
http://"vhost_name.localhost"/login/index/
html code is loaded and displayed on page, but css style and images are not.
So this is my index.phtml file (its just a begining of project)
<?php
require_once 'application/views/scripts/_header/header.html';
?>
<div id="main_window">
<img src="application/views/scripts/style/images/bug_helpdesk.png" />
</div>
<?php
require_once 'application/views/scripts/_footer/footer.html';
?>
So, header and footer are displayed but image is not.
Enyone knows how to solve this problem??