Hello Guys, I am developing a website in joomla 1.5 with using joomsocial2.4 and VirtueMart1.9 . I have been facing issues since my last few joomla installation tries. Whenever I install VirtueMart and Joomsocial, the VirtueMart Shop runs well but clicking on any joomsocial menu link gives me error as: JDatabaseMySQL::query: 1146 - Table 'final.jos_vm_cart' doesn't exist SQL=SELECT `cart_content` FROM `jos_vm_cart` WHERE `user_id`=62 I am not that good at coding but i can do small editing. I have tried every thing upto my knowledge but am still helpless... Please help me urgently on this issue as my client is killing me for the delivery and i need these two independent components to run together... Is anyone there who can provide me a solution... Please help me out urgently guys... Waiting for reply.. Thanks Alhad.
use Joomsocial virtuemart pluginns http://www.jomsocial.com/download/addons/search-by/tags/virtuemart.html it will help you to solve incompatible codes. and why are you stick with 1.5? and if you are use joomsocial latest version why dont you try it with latest joomla version?
And try this, its for joomla 1.5 http://www.jomsocial.com/download/addons/e-commerce/virtuemart-jomsocial-suite.html
For some reason your virtuemart installation didn't create the table jos_vm_cart, so all you have to do is manually create one How???? Go to the phpMyadmin select the table you're using on the left side pane, a bunch of tables will appear in right side, then in the toolbar click in SQL, paste the code below and click GO CREATE TABLE IF NOT EXISTS `jos_vm_cart` ( `user_id` INT( 11 ) NOT NULL , `cart_content` TEXT NOT NULL , `last_updated` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP , PRIMARY KEY ( `user_id` ) ) TYPE = MYISAM COMMENT = 'Stores the cart contents of a user';