Check the HTML of the wiki page: it should contain a <img> tag (for PNG files) to the generated PNG file. It is likely that you have a misconfiguration in your Apache file, which prevents it to serve the image as a static image file. You can double-check this easily: copy & paste the <img> URL to a new tab of your browser, and see whether the image appears. If not, check your Apache error log file to see whether it reports that the file exists or not.
A common issue is that the image URL use a path that is not handled by the Apache server. Note that is is better to let the Apache daemon serve the file rather than relying on Trac to do so (i.e. do not use a "chrome" path as in your example...) Cheers, Manu On 9/25/06, Akshay Guleria <[EMAIL PROTECTED]> wrote: > > > James Guyton wrote: > > Did you add the path to your cache_dir in the setup file for the > > graphviz plugin? > > > > yup. below my trac.ini configurations > > [graphviz] > cache_min_size = 5000000 > cache_max_size = 10000000 > cache_manager = yes > png_antialias = true > cache_max_count = 2000 > cache_dir = /media/repo/TRAC/UnixSolutions/cache > prefix_url = http://silinux1/UnixSolutions/wiki/chrome > default_graph_fontsize = 10 > cmd_path = /usr/bin > cache_min_count = 1500 > default_graph_fontname = "Andale Mono" > > PS: sorry for the late response. was busy with something else for a > while. > > > > > -- Manu --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" 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/trac-users -~----------~----~----~----~------~----~------~--~---
