Difference between revisions of "X-Cart:Advanced Tools"

From X-Cart 4 Classic
Jump to: navigation, search
m (Clear Templates/X-Cart Cache)
Line 19: Line 19:
 
These tools are available in the '<u>Maintenance</u>' section of your store's Admin area, which can be accessed via the '<u>Tools</u>' menu.
 
These tools are available in the '<u>Maintenance</u>' section of your store's Admin area, which can be accessed via the '<u>Tools</u>' menu.
  
{{Note|In the older versions of X-Cart, these tools are available via the '<u>Summary/Tools</u>' section of your store's Admin area, which can be accessed by clicking  <u>Summary</u> and then clicking '<u>Tools</u>' in your store's Admin area.}}
+
{{Note|In the older versions of X-Cart, these tools are available via the '<u>Summary/Tools</u>' section of you as login' authentication mode after using the ''''Email''' as login' authentication mode for some time, your store's existing users whose profiles were set up while user names were not required will still be able to log in using their emails.}}
  
{{Note1|'''Important''': To avoid loss of important data, make sure you clearly understand what you are doing before you use any of X-Cart's advanced tools.}}
+
==Optimize Tables==
  
==Generate Clean URL Values==
+
This tool allows you to optimize the structure of data stored in your MySQL database by realues}}
 
 
{{X-Cart:Generate Clean URL Values}}
 
  
 
==Remove Credit Card Information==
 
==Remove Credit Card Information==
Line 36: Line 34:
  
 
Note that the option "Remove from customers' profiles" has been removed since X-Cart version 4.5.0; the option "Save the last 4 digits of credit card numbers in order details" is to be removed in X-Cart 4.5.x.
 
Note that the option "Remove from customers' profiles" has been removed since X-Cart version 4.5.0; the option "Save the last 4 digits of credit card numbers in order details" is to be removed in X-Cart 4.5.x.
+
 
 
Be careful when removing credit card information as this operation is irreversible.
 
Be careful when removing credit card information as this operation is irreversible.
  
Line 64: Line 62:
  
 
This functionality is most useful after an import procedure, or after the store administrator has modified the database or some files manually, or you suspect that some data may have been calculated incorrectly due to an interrupted procedure.
 
This functionality is most useful after an import procedure, or after the store administrator has modified the database or some files manually, or you suspect that some data may have been calculated incorrectly due to an interrupted procedure.
 +
 +
==Rebuild category indexes==
 +
 +
This tool allows you to re-build category indexes, e.g. when you manually make any adjustments to categories on a MySQL level, using the utility outside the X-Cart back-end (e.g mysql terminal, or 3rd party data feed etc).
  
 
==Clear Statistics==
 
==Clear Statistics==

Revision as of 15:14, 15 January 2013

Overview

X-Cart provides tools that allow you to perform a variety of advanced tasks:

  • Generate clean URL values for the object that do not have clean URL values defined.
  • Remove credit card information from processed and completed orders.
  • Optimize database tables to increase your store's overall performance.
  • Check database integrity.
  • Force (re)generation of cache files and quick tables.
  • Clear statistics.
  • Clear templates/X-Cart cache.
  • Remove temporary files.
  • Re-generate cache for resized images.
  • Re-generate Blowfish encryption key.
  • Remove unnecessary store data.
X-Cart 4.4or above

These tools are available in the 'Maintenance' section of your store's Admin area, which can be accessed via the 'Tools' menu.

Note: In the older versions of X-Cart, these tools are available via the 'Summary/Tools' section of you as login' authentication mode after using the 'Email as login' authentication mode for some time, your store's existing users whose profiles were set up while user names were not required will still be able to log in using their emails.

Optimize Tables

This tool allows you to optimize the structure of data stored in your MySQL database by realues}}

Remove Credit Card Information

This tool is intended for the removal of credit card information from the store's database. Note that since version 4.5.0 X-Cart does not store credit card information to enable PCI-DSS compliance. In X-Cart versions 4.5.0 and later the 'Remove credit card information' tool is preserved to enable those X-Cart store owners who upgraded from earlier X-Cart versions that used to keep CC data in order details (xcart_orders table => details field) to strip out all credit card info from their database in order to meet PCI-DSS requirements.

To use the 'Remove credit card information' tool, select the necessary options and click the Apply button:

Tools1.gif

Note that the option "Remove from customers' profiles" has been removed since X-Cart version 4.5.0; the option "Save the last 4 digits of credit card numbers in order details" is to be removed in X-Cart 4.5.x.

Be careful when removing credit card information as this operation is irreversible.

Note: If you remove credit card information from orders, you will not be able to perform Capture or Void transactions for Pre-Authorized orders created using NetRegistry or LinkPoint payment modules.

Change user authentication mode

X-Cart 4.4or above

This tool allows you to switch your store's authentication mode. Two authentication modes are available:

  • 'Email as login': In this mode, registered users log in using the email address specified at the time of registration of their user profile.
  • 'Username as login': In this mode, registered users log in using a unique user name that differs from their email address. The user name is defined during user profile registration and, depending on the 'Allow users to change their usernames' setting in 'General settings/General', may or may not be changed by the user at a later time.
Note: If you choose to switch to the 'Username as login' authentication mode after using the 'Email as login' authentication mode for some time, your store's existing users whose profiles were set up while user names were not required will still be able to log in using their emails.

Optimize Tables

This tool allows you to optimize the structure of data stored in your MySQL database by reindexing the database tables. It is the right tool to use after any UPDATE, INSERT or DELETE activity performed bypassing X-Cart interface which you think might cause your indexes to become less well organized. Data and indexes becoming fragmented not only result in inefficient use of space, but cause SELECT queries used for data retrieval take longer to complete, which considerably slows down your shopping cart application. Table optimization should help you improve the overall performance of your store.

Check Database Integrity

This tool allows you to improve the consistency and quality of data structures in your store's MySQL database. The database used by your store is designed in such a way that your data is stored there in multiple tables. The way X-Cart shopping cart application works requires that in some cases the data from two or more tables should be combined. In such cases MySQL binds the data together across tables. For example, product titles are stored in one table, product prices - in another one; as each product in the store is supposed to have a price, MySQL associates each of the product title fields in the former table with a price field in the latter. If, while making alterations to your database tables, you fail to consistently change all the related data (for example, if you add a new product, but fail to add a price for that product), MySQL will not be able to join the respective tables and perform the selection of data from them properly. Performing a database integrity check with X-Cart's 'Check database integrity' tool allows you to ensure that all the tables required for the store's operation are present in the MySQL database used by the store and helps you to detect any flaws and inconsistencies that may appear as a result of alterations to the database design caused by maintenance or new inclusions to the database structures performed bypassing X-Cart interface.

Force Cache Generation

This tool allows you to force (re)generation of cache files and quick tables. In situations where X-Cart needs the same data set to be retrieved relatively often, you can have this data set cached (saved in a cache file or a quick table) so that X-Cart can receive it from there rather than by having MySQL select the necessary data by running the same queries on the same data set each time. Sparing MySQL the necessity of running through the data over and over, cache files and quick tables considerably reduce the load on your MySQL server.

This functionality is most useful after an import procedure, or after the store administrator has modified the database or some files manually, or you suspect that some data may have been calculated incorrectly due to an interrupted procedure.

Rebuild category indexes

This tool allows you to re-build category indexes, e.g. when you manually make any adjustments to categories on a MySQL level, using the utility outside the X-Cart back-end (e.g mysql terminal, or 3rd party data feed etc).

Clear Statistics

This tool allows you to clear some or all of the types of statistical data gathered by your store since the store installation or the last statistics clearing, whichever is the later. Clearing your store statistics permanently removes the respective data from the database, so please be careful while selecting the type(s) of data to be removed.

Please be careful when clearing statistics, this operation is irreversible.

Clear Templates/X-Cart Cache

This tool allows you to remove precompiled Smarty templates ('var/templates_c' directory) and X-Cart cache ('var/cache' directory) and free some disk space.

To use this tool, click the Clear button.

Alternatively, templates/X-Cart cache can be cleared by running the "cleanup.php" script in your browser. For example:

http://www.yoursite.com/xcart/cleanup.php

Remove Temporary Files

This tool allows you to remove temporary files from the <x-cart>/var/tmp directory and free some disk space.

To use this tool, click the Clear button.

Before cleaning the directory, be sure to temporarily close the store for maintenance. Otherwise, you may hamper the processes initiated by other users, such as uploading files, using HTTPS modules to connect to payment gateways or real-time shipping rate calculators, etc.

Note: The directory may contain export, newsletter and other files created when generating system fingerprints, uploading files via the Admin area, using HTTPS and PGP/GnuPG modules, etc. Make sure the directory contains no necessary information before cleaning it.

Re-generate the Image Cache

This tool allows you to re-generate the cache of resized images (for example, for detailed product images).

To re-generated the image cache, click the Regenerate button.

Re-generate the Blowfish Encryption Key

This tool allows you to generate a new Blowfish key and replace your current Blowfish key with it.

Your current Blowfish key is stored in the file config.php. To enable X-Cart to replace the current Blowfish key with a new one, you must set write permissions on the file config.php. On Unix this can be accomplished by using the following command:

chmod 666 config.php

Before you use this tool, you must back up the config.php file and the database of your store. This is essential, because if the re-generation procedure fails, you will not be able to log in to the store, and a lot of important information will be lost, including customer data and order details.

To use the tool, click the Regenerate button. After you click Regenerate, X-Cart generates a new Blowfish key and starts re-encrypting the data encrypted by the old key using the new key. While X-Cart is performing the re-encryption, you can see the progress on the screen. Please be patient and allow sufficient time for the procedure to complete.

Important: You must ensure that the re-encryption procedure runs uninterrupted up until the moment you see the message indicating its successful completion. If you happen to lose the Internet connection, close the browser window or simply leave the page displaying the re-encryption process before the routine is successfully completed, you will lose all the data that has not been re-encrypted with the new Blowfish key.

It is also highly recommended to have the mcrypt PHP-extention installed on your server. This extension helps to speed up the Blowfish data encryption process, thus ensuring the re-encryption routine runs uninterrupted and completes successfully.

See also:

Remove Data

This tool allows you to empty your store of any content data with which it might have been populated for testing purposes. Clicking the button removes the settings related to products, categories, manufacturers, shipping rates etc. The tool can help you bring your X-Cart installation to a state where the store will get rid of all unnecessary data, retaining the configuration settings defining how it should function.