On May 28, 7:54 am, nick <[email protected]> wrote: > Hi guys, > > I want to use fusioncharts in my cakephp application but the swf file > to display the chart does not seem to be loading. In the same folder > as my view, I have a directory called charts with all the swf files.
There's your problem. The views dir is above docroot (ie. webroot) so you can't serve anything from there. Put your SWF files somewhere below webroot, eg: webroot/fusioncharts/... Then serve them with a pth like: /fusioncharts/... Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] 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
