Jump to content

convict

Member
  • Posts

    1,302
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by convict

  1. Hi,

    My client wants to run two stores off of one database. The stores will have all the same products but will have different domain names. At this time I am not sure if they will be on the same server. Is this possible? If so, do I need anything special to do it?

    Perhaps it is possible to load a different skin depending on where the user is coming from?

    Thanks,

    sk

    If both of 'domains' are hosted on the same server there is no problem, i have used it for some clients. It could be used for one physical copy of CubeCart with different skin results too.

    If different servers, you need the remote DB access right to do it or do replications but not recomended.

  2. Well, great explanation Bill, addtional points Brivtech :w00t: Attention at computer viruses world too.

    BIG majority of regular users NEVER do change passwords, do use EASY (family names, isp name, site name and so on....) and the same password for everything. Do some 'change action' when something occurs sometime is almost useless. IT WORKS and we'll do when occurs something - this is the result of human nature. :D

    It was, it is and it will always be - thats my experiences in IT World since 1981. :)

    I think this topic should read regular user daily as the Holy Bible.

  3. You use nested <CENTER> html tag in your SESSION box. ] is out of nested block thats the reason ] comes to the next row.

    You use standard styles but own graphic in template. Box title images are in boxTitleLeft, boxTitleRight style class div block but block height is limited to 15px (styles) and your images height is 35px. FF uses the 15px as defined but IE is silly. Try to remove height: 15px from style definition.

    FF is mutch more CSS compliant as IE :w00t:

  4. You use MySQL version 5.

    You have to change the taxes table column specification like ...

    ALTER TABLE `CubeCart_taxes` CHANGE `percent` `percent` DECIMAL( 6, 4 ) NOT NULL DEFAULT '0.0000'

    Originale one is DECIMAL( 5, 4 )

  5. I thought I was sure that the link wasn't sent until the status changed!
    Well, you are right. Download links email is sent once order status is changed to processing

    - automated (payment processor sucessfull payment)

    - manualy (you have to click on a link to sent this email).

    HOWEVER my point of view was just another - You may put to the download link field whatever this is not dependet to order status, not dependet to any payment gateway setting. If you put there mistake, link to mistake is sent via email. If you put there nothing, link to nothing is sent.

  6. Does anyone can comment on X-Cart ? It seems many people here were using it and switched to CC. I wonder why.

    1) Commercial - pay and go :D

    2) Expensive to price/power

    3) Expensive made add-ons like additional features & skins

    4) Too much expensive mods on demand

    5) As vrakas says - to much in there to configure and most are useless LOL

    Typical day. Monday - Helpdesk all day. Rest of the week - Helpdesk until midday development there after whilst keep in an eye on the helpdesk.

    That gives four afternoons a week for development.

    Typical week job performance for any freelancer related to briliant cart - cubecart. :w00t: :whistle:
  7. I cant see any sence to do the redirection to the account page after login however here you are...

    includes/content/login.inc.php

    SEARCH FOR

    		// redirect
    
    		//"login","reg","unsubscribe","forgotPass"
    
    
    ADD BEFORE
    
    			header("Location: ".$GLOBALS['rootRel']."index.php?act=account");
    
    			exit();

  8. Do you use the cat sorting by name? Default CubeCart code doesnt show the categories by name in Shop by category box.

    You have to use SQL condition ORDER BY cat_name.

    includes/boxes/category.inc.php

    SEARCH FOR

    $results = $db->select("SELECT cat_name, cat_id FROM ".$glob['dbprefix']."CubeCart_category WHERE cat_father_id = 0");
    
    
    
    
    REPLACE WITH
    
    
    
    $results = $db->select("SELECT cat_name, cat_id FROM ".$glob['dbprefix']."CubeCart_category WHERE cat_father_id = 0 ORDER BY cat_name");

  9. Also, where you refer to alter this inital file type:

    skins/{your skin}/styleTemplates/global/index.php

    Yes, this is a typo. I have changed the php to tpl which is right in my primary topic post.

    I added in your coding to redirect the user to the homepage once they have purchased an item.
    Dont forget you have to inform customer payment was sucessful or not.

    If you want to redirect customer to homepage in case payment was sucessful, you have to do it in includes/content/confirmed.inc.php

    Be ware there is a affiliate module code, if you dont use affiliate module you may redirect the customer sucesfully paid with following code:

    Open file i have mentioned above

    Search for

    		$basket = $cart->unsetVar("shipMethod");

    ADD AFTER

    header("Location: index.php");

    exit();

×
×
  • Create New...