Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apache caching javascript assets?

Not so long ago I was having trouble with javascript assets. When I made changes to them they wouldn't take effect and the file would become invalid javascript (firebug throwing errors and warnings).

I noticed that my changes weren't appearing and special characters were being added to the end of the file. A bit more digging and I noticed that the special characters were exactly the number of characters of my edits.

Original code:

$(document).ready(function(){
     alert('what');
});

Adding a line, should looks like this:

$(document).ready(function(){
     alert('what');
     alert("what's going on?!);
});

Renders like this:

$(document).ready(function(){
     alert('what');
});��������������������������

When I researched I found that modifying apache config's /etc/httpd/conf/httpd.conf and commenting out EnableSendfile off fixed the issue.

However...

Now the issue has returned, but apache config hasn't changed.

Please help. My current work around is renaming the file, viewing the new file and naming it back; this annoys me tremendously.

I'm developing on a vagrant box, CentOS 6, PHP 5.3/apache 2 - the original solution can be found here: Shared folder in VirtualBox for Apache.

Unfortunately this no longer seems to work.

like image 658
joseym Avatar asked Mar 22 '12 16:03

joseym


1 Answers

Often when EnableSendfile On causes breakage, EnableMMAP causes similar issues. Try turning that off too. You mentioned that you're using CentOS in Vagrant but not the host OS. Is it Windows perchance?

like image 181
noodl Avatar answered Oct 06 '22 22:10

noodl