Jump to content

Patrick

Members
  • Posts

    243
  • Joined

  • Last visited

  • Days Won

    20

Posts posted by Patrick

  1. Hello,

    the database if it's not exist inside your db

     

    
    CREATE TABLE `clic_marketplace_file_informations` (
      `id` int(11) NOT NULL,
      `file_id` int(11) NOT NULL,
      `file_name` varchar(255) DEFAULT NULL,
      `date_created` date DEFAULT NULL,
      `date_updated` date DEFAULT NULL,
      `file_version` varchar(255) DEFAULT NULL,
      `file_downloads` int(11) NOT NULL,
      `file_rating` int(11) NOT NULL,
      `file_prices` decimal(15,4) DEFAULT NULL,
      `file_date_added` date DEFAULT NULL,
      `file_url_screenshot` text DEFAULT NULL,
      `file_url_download` text DEFAULT NULL,
      `is_installed` tinyint(4) NOT NULL
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
    
    --
    -- Index pour les tables déchargées
    --
    
    --
    -- Index pour la table `clic_marketplace_file_informations`
    --
    ALTER TABLE `clic_marketplace_file_informations`
      ADD PRIMARY KEY (`id`),
      ADD KEY `index_file_id` (`file_id`);
    
    --
    -- AUTO_INCREMENT pour les tables déchargées
    --
    
    --
    -- AUTO_INCREMENT pour la table `clic_marketplace_file_informations`
    --
    ALTER TABLE `clic_marketplace_file_informations`
      MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

     

  2. Hello,

     

    First, do not change anything inside the Default template directory.

    Create another directory, copy all css inside this directory

    Now you can just copy the file you want to change.

    For example

    Default

        header.php

    Mytemplate

       css

       header.php

     

    The header will be overrided

     

    Like that if you want to update the solution, it will be better for the maintenance and you can do all that you want inside this files. Sames approach for the module and files directory (respect the structure)

     

    About your question

    I do not understand what you want to do. Inside the admin you can select where you want to display a module.

    The module page manager is only created to display the content information.

     

    The best approach if want to do something is to create your own module and work inside.

    Look the bm_shopping_cart inside the the boxes directory, you will have all the information you must need.

     

     

     

     

     

     

     

     

  3. Hello,

    I thik you try to secure the application.
    Look this blog  you will have some information.

    https://www.clicshopping.org/forum/blogs/entry/4-clicshopping-installation-process/


     

    - /includes/ClicShopping/Sites/Shop/site_conf.php : store configuration file (catalog)
    
    - /includes/ClicShopping/Sites/ClicShoppingAdmin/site_conf.php : store configuration file (administration) ===> this one to change ClicShoppingAdmin By MyAdmin
    
    - /includes/ClicShopping/Conf : database access

     

  4. Hello @drack,

    You can make an update one by one, in manual . It's possible one is not again updated but works fine with php8, it's better to not touch ?

    go to your root chop and : composer update mylibraries
    You can also remove the librairies and reinstall it. But I recommend to do that on test website : comnposer remove mylibraries

    +

    • Like 1
    • Thanks 3
  5. Hello @Carole,
    The major point about boostrap is it's a major release, B4 and B5 are very different.
    Jquery is not used anymore for example.
    About ClicShopping, Bootstrap 5 icon is now including inside the application, fontAwesome has been removed. For some people are developed app with font awesome by default, must update that or use the old hook in the ClicShopping v2.x
    Also some jquery script has been removed but Jquery is always inside the application, I think this framework will disappear in the futur.

    In all case, a big work has been done, and congratulation

    • Thanks 3
  6. Hello,

     

    Inside sources/template/modules/modules_header et modules_footer you will have the information

    For the header I recommend in first to copy and rename the file, Like that you can change inside the administration the template you to use.

    After you can modify everything.

    Another way is to create a new template name and copy the css and the modules inside. In this case you must to change the template name inside you administration.

     

    Let me know if you want more information.

     

    • Like 1
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use