Installer un addon dans mon CPanel

WRInaute impliqué
Bonjour,

j'ai télécharger un dossier.zip que je dois installer sur mon serveur (comme un grand) dans mon CPanel.

En lisant le fichier Read-me, je me rend compte que ce n'est pas dans mes compétences. Mais il est possible que ce soit de la rigolade pour ceux qui savent faire ça.

Je demande au hasard si quelqu'un peut faire ça pour moi en lui donnant les identifiants d'accès à mon CPanel et en lui envoyant le fichier.zip a installé ?

Qui ne demande rien n'a rien.

Peut-être Spout?

J'ai copié le fichier Read-me. Voyez-vous-même. :D

"
################
# Instructions #
################

1. Always backup data before making changes to your store.

2. Upload the contents of the folder public_html/* to the corresponding path of your LiteCart installation.

3. Run the following MySQL Query in your favourite database manager i.e. phpMyAdmin:

CREATE TABLE IF NOT EXISTS `lc_products_files` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`file` varchar(64) NOT NULL,
`filename` varchar(64) NOT NULL,
`mime` varchar(128) NOT NULL,
`priority` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM;

4. Proceed with the modification instructions below.

5. Please note if you have renamed the admin folder you must edit the paths in vqmod/xml/product_file_attachments.xml

#############################
# Modification Instructions #
#############################

## 1.1. In ~/includes/config.inc.php

**On line ~31, find**

define('WS_DIR_TEMPLATES', WS_DIR_INCLUDES . 'templates/');

**After that, add**

// BOF: Product File Attachments
define('WS_DIR_DATA_FILES', WS_DIR_DATA . 'files/');
// EOF: Product File Attachments

------------------------------------------------------------------------

**On line ~80, find**

define('DB_TABLE_PRODUCTS_CAMPAIGNS', '`'. DB_DATABASE .'`.`'. DB_TABLE_PREFIX . 'products_campaigns`');

** After that, add**

// BOF: Product File Attachments
define('DB_TABLE_PRODUCTS_FILES', '`'. DB_DATABASE .'`.`'. DB_TABLE_PREFIX . 'products_files`');
// EOF: Product File Attachments"
 
Discussions similaires
Haut