Topic: Access FA from curl/wget
Hi
I need to add to FA some pages which I want to access not from a Web browser but from curl/wget.
Those pages are some kind of report which I probably could do in pure SQL but that would be safer to the php code from FA.
For example I need a csv with a price list, and ideally I would go something line
wget www.fa.com/price_list.csv
The problem is I need to create a session or something. Is there a to "disable" session for certain page (I don't really care about security, I would even be happy to just do
php price_list.csv.php > price_list.csv
from the current on FA directory (on the localhost)
But I have still this problem of session.
So the question, how can I write a php page which can include all FA db settings, and access to its functions, without having to use session (or is there a way to emulate this session somehow)
/Elax