Is it possible that my .htaccess file could be causing my template permission changes to show up until the next day?  I changed permissions via my ftp program on a template file this morning.  I can see that is is set to 666 in my ftp program but if I go to admin -> edit templates to make the change I need, the pages still says I don't have write permissions when I hit the "apply" button.  I tried making the changes in notepad and re-uploading the file, overwriting the old file, but the changes did not take effect.  If I double click the "new file" on the server in my ftp program it opens up and I can see that is has the changes I made but the website doesn't seem to be reading that file.  I have run mysite/cleanup.php and cleared my browser cache.  Would any of this part of my .htaccess file be causing the changes to not go live until tomorrow?
	Quote:
	
	
		| <IfModule mod_expires.c>
 ExpiresActive On
 ExpiresByType image/gif A604800
 ExpiresByType image/jpeg A604800
 ExpiresByType image/jpg A604800
 ExpiresByType image/png A604800
 ExpiresByType image/x-icon A604800
 ExpiresByType text/css A86400
 ExpiresByType text/x-javascript A604800
 ExpiresByType text/javascript A604800
 ExpiresByType application/x-shockwave-flash A604800
 #
 <FilesMatch "\.(gif╕jpe?g╕png╕ico╕css╕js╕swf)$  ">
 Header set Cache-Control "public"
 </FilesMatch>
 </IfModule>
 
 |