including javascript file in default layout

2007-11-29 Thread sMAshdot

Hello!

I have added the Javascript Helper to the $helpers array in my
controller,
and have a file called functions.js in the app/webroot/js/ directory.
The server (apache2) has it's document root pointing at app/webroot/
(production mode).

now

?php echo $javascript-link('functions.js') ? in the default.thtml
layout renders
script type=text/javascript src=/js/functions.js

but firefox's error console talks about a syntax error in the file and
shows me what it thinks to be my functions.js ... an html document :-(

I wonder if it is a problem with cakephp routes, or the webserver
which goofs up the request for the file. Maybe, am I simply doing
something wrong?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: including javascript file in default layout

2007-11-29 Thread Thrilller

use
   echo $javascript-link('functions');

not
 echo $javascript-link('functions.js');

i hope this will solve ure problem




On Nov 29, 6:51 pm, sMAshdot [EMAIL PROTECTED] wrote:
 Hello!

 I have added the Javascript Helper to the $helpers array in my
 controller,
 and have a file called functions.js in the app/webroot/js/ directory.
 The server (apache2) has it's document root pointing at app/webroot/
 (production mode).

 now

 ?php echo $javascript-link('functions.js') ? in the default.thtml
 layout renders
 script type=text/javascript src=/js/functions.js

 but firefox's error console talks about a syntax error in the file and
 shows me what it thinks to be my functions.js ... an html document :-(

 I wonder if it is a problem with cakephp routes, or the webserver
 which goofs up the request for the file. Maybe, am I simply doing
 so  mething wrong?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---