Urgently need a help regarding joomsocial and VirtueMart

Discussion in 'Joomla' started by NetiZenSys, Dec 16, 2011.

  1. #1
    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.
     
    NetiZenSys, Dec 16, 2011 IP
  2. kbabi

    kbabi Member

    Messages:
    168
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    46
    #2
    kbabi, Dec 16, 2011 IP
  3. kbabi

    kbabi Member

    Messages:
    168
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    46
  4. NetiZenSys

    NetiZenSys Guest

    Messages:
    13
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I am stuck to joomla 1.5 because virtuemart supports that only..
     
    NetiZenSys, Dec 16, 2011 IP
  5. FilipeRuivo

    FilipeRuivo Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    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';
     
    Last edited: Dec 18, 2011
    FilipeRuivo, Dec 18, 2011 IP