Hello milosh, sorry for inconvinience! Can you please check following steps
1> Modified the dev.cfg file of web module(etiny) with your database in which you have install the ecommerce server module (from trunk-extra-addons). example: # ECOMMERCE [ecommerce] database = 'Database Name' Now you have to just change your html file which is available at ecommerce/tinyerp/static/ecommerce /ecommerce.html, For this Check step 2 2> Modify src and url of your html file. For e.g: src="http://192.168.0.96:8081/eshop/eshop.js" url=http://192.168.0.96:8081/eshop Note: You have to modify src and url path as per your web client path...If you are running webclient with localhost and port:8080 then change like: src="http://localhost:8080/eshop/eshop.js" url=http://localhost:8080/eshop Your html file will look like this: <html> <head> <title>ecommerce</title> <style> iframe{ border: 3px solid #C4C4C4; background: #FFFFF3; } </style> <script></script> <script> function load(){ var shop = new eShop("block",{ height: 690, widht: 700, url: "http://192.168.0.96:8081/eshop", css: "ecom_change2" }); } </script> </head> <body> <div></div> </body> </html> Run above html file now... Note: About the eshop.js , This is not javascript file but its a function on ecommerce web module, so dont worry about this :P So Please check above steps to successfully run ecommerce. And if you have still problem to get ecommerce screen on home page kindly tell us, We will check it More from you! Thanks. -------------------- m2f -------------------- -- http://www.openobject.com/forum/viewtopic.php?p=44498#44498 -------------------- m2f -------------------- _______________________________________________ Tinyerp-users mailing list http://tiny.be/mailman2/listinfo/tinyerp-users
