appendfile

Zend headScript() and appendFile not working as expected

I'm having an issue trying to append a javascript file using headScript()->appendFile('file name') with Zend. I have my layout setup like this: <?= $this->headScript() ->prependScript( 'BASE_URL = "' . $this->baseUrl() . '";' ) ->appendFile( $this->baseUrl('js/lib/jquery/jquery-1.4.2.min.js') ) ->appendFile( $this->base...

Zend Framework appendFile not working after jQuery include

I'm setting a local path for jQuery in my layout. Then adding another js file using appendFile, but it's not adding the file I'm appending. in layout: $jquery=$this->jQuery(); $jquery->enable(); // enable jQuery Core Library $jquery->setLocalPath($this->baseUrl().'/js/jquery-1.3.2.min.js'); echo $jquery; echo $this->headScript(); In ...