hi i am having a doubt in changing the path for attached file i.e…,for
uploading photos and files …by default the path is
“:rails_root/public/system/”
and i want to change the path as ~/apps/Blog/data/attached/
BLOG refers to my project app name
after making the changes the image or file i saving but it is not
displaying in the browser
can any one help me out in writing the correct PATH and URL
Normally in a rails app only files under your_app/public are
accessible directly. If you want to access files elsewhere then you
will have to do clever things with apache or other webserver to
achieve this.
Colin is 50% right. You can use send_data to use rails to send files
which
are not in the public folder or, as Colin
suggested, use apache to serve them.
But for your specific question, you should look at
:path option is where you save the file
:url option is the url used to access the image