Cs-Cart Basics

Dear developers,



Just started developing for cs-cart. I've some starter questions:

[list]

[]i'm running cs-cart 3.0.6 on XAMPP / Windows. I can't access the admin through manage.php i'm getting redirect to a secure channel https://localhost… I've changed settings in the database but it didn't help. Can anyone point me in a good direction?

[
]I want to create a page in the root: “testthings.php”. In that page i'd like to learn how to call core functions like fn_get_order_info in fn.cart.php to use the data in some additonal classes. The data i'd like to transfer to other systems. Of course i'm getting errors like “[color=#000000]Access denied”. I know i have to register the page and require some core things, but i don't know where to start and so on. I really want to peek into objects like :[/color]





[color=#000000]require(“/addons/realtimewms/classes/cstowms.php”);[/color]

[color=#000000]require(“/core/fn.cart.php”);[/color]





[color=#000000]$order_info = fn_get_order_info(65094, false, true, false, false, true);

var_dump($order_info);[/color]

[/list]