Harro Verton wrote on Saturday 24th of September 2011:Why would you need the session id? It's an internal and random value, that regularly changes during the course of a session. You should not use this value in your application.
Harro Verton wrote on Sunday 25th of September 2011:I can imagine that with a domain of "http://a.a", any decent browser will reject the cookie. Use a browser plugin like firebug and/or firefox's web developer toolbar to check the headers being send by the server and the browser, and check which cookies are stored by the browser.
.git/ .idea/ CHANGELOG.md README.md TESTING.md oil public/4. I should to click on public folder , and after that I can see my web site.
Harro Verton wrote on Monday 26th of September 2011:The public folder should be the document root of your webserver, so all code is not accessable via the browser.
If you have access to the webserver's config, the best option is to modify the document root. If you don't, see http://fuelphp.com/docs/installation/instructions.html (installing in the document root). You're css issue is most likely related to the fact that you've installed Fuel incorrect, so fix that first. O, and while you're at it, disable directory indexes ("Options -Indexes"), you should NEVER be able to see the directory structure when browsing to your site.
CREATE TABLE carts ( cookie_user_id VARCHAR(40) NOT NULL, user_id INT(10) UNSIGNED NULL DEFAULT NULL, item_id MEDIUMINT(9) UNSIGNED NOT NULL, item_quantity TINYINT(3) UNSIGNED NOT NULL DEFAULT '1', item_price DECIMAL(8,2) UNSIGNED NOT NULL, item_color VARCHAR(20) NULL DEFAULT NULL, item_size VARCHAR(5) NULL DEFAULT NULL, order_time TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, UNIQUE INDEX cookie_user_id (cookie_user_id) ) COMMENT='Here cart table, item_color and item_size just for example!!' COLLATE='utf8_general_ci' ENGINE=InnoDB;
It looks like you're new here. If you want to get involved, click one of these buttons!