Jump to content

chongshengdz

Member
  • Posts

    34
  • Joined

  • Last visited

Posts posted by chongshengdz

  1. if big site,for example,1 million products.

    before moving,you need to make sure if you are using InnoDB or MyISAM storage.

    for InnoDB,use XtraBackup to backup your site.

    for MyISAM,use "tar czf" to copy and paste between the two servers.

    for small site,just log in to your database using phpmyadmin and do the backup and then import to the new server's database.

  2. 1 hour ago, bsmither said:

    I understand you have a need to have trailing dashes.

    This edit may work. To prevent CubeCart from "trimming" leading and trailing dashes, then in /classes/seo.class.php:

    
    Near the end of the file, find:
    
    private static function _safeUrl($url) {
    
    Then, seven lines later, find:
    
    return trim($url,'-');
    
    Change this line to:
    
    return $url; // trim($url,'-');

     

    thanks,it woks great.

    the problem has been resolved.

  3. my manually entered product Custom SEO URL Path is different from the breadcrumbs and alternate tags (<link rel="alternate") on the product detail page.

    for example.

    i manually entered

    category/product-detail-

    it will only show on breadcrumbs and alternate tags (<link rel="alternate") on the product detail page as below:

    category/product-detail

    and the product will become not found when you click on breadcrumbs or change languages.

    how to fix this?

    please help.

     

  4. upgrade is easy.

    backup your files and database (rename directory name).

    log in to your phpmyadmin,rename the old tables.

    install new cubecart version and then log in to your phpmyadmin,compare the differences between the new tables and old tables.

    if the same,delete the new table and rename the old one.

    if different,use the example SQL like below:

    INSERT INTO CubeCart_inventory (product_id,status,product_code,...) SELECT product_id,status,product_code,... FROM oldCubeCart_inventory;

    after above actions,install your extensions.

    you may need to copy back the product images from the old files.

    done

  5. That of course entirely depends on your definition of not too expensive !  There is also the question as to whether you will be providing your own instance on Sphinx or expecting that to be provided as a service as well - I will PM you

    Ian

    all you need to do is to integrated with cubecart.

×
×
  • Create New...