Jump to content

AlwaysSkint

Members
  • Posts

    53
  • Joined

  • Last visited

  • Days Won

    1

AlwaysSkint last won the day on October 31 2020

AlwaysSkint had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

AlwaysSkint's Achievements

Newbie

Newbie (1/14)

  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

5

Reputation

  1. Try to avoid sendmail. To achieve proper email credentials (SPF,DKIM,DMARC) use SMTP. Trust me, you won't regret doing so and (maybe) your hosting provider will be grateful that you do.
  2. Hello @AlwaysSkint,
     

    Could you try this : upload and install the latest commit 

    Include this files inside the good directory ImportDataBase

     

    Step :

    Start on a fresh installation (normal) without data
    remove the French language in language

    Make a migration

     

    Everything seems to be migrated (for me)
    Not work for moment manufacturers_info in comment

    sql error on administration menu description (but the data are imported)  - All administration menu are in english for other language

     

    There is a litle work again.

    Try and tell me.

     

    I will stop for a moment to focus now on my next step.

     

    https://www.clicshopping.org/images/osCmax20.txt 

     

    1. Show previous comments  7 more
    2. AlwaysSkint

      AlwaysSkint

      I remember that one of the missing $data above is in Customers table.

       

      This seemed to work fine - I can try with a different client database:

      //******************************************
      //manufacturers_info
      //******************************************
            $QmanufacturersInfo = $mysqli->query('select *
                                                  from ' . $this->PrefixTable . 'manufacturers_info
                                                ');

            echo '<hr>';
            echo '<div>table_manufacturers_info</div>';
            echo '<div>' . CLICSHOPPING::getDef('text_number_of_item') . ' : ' . $QmanufacturersInfo->num_rows . '</div>';
            echo '<hr>';

            while ($data = $QmanufacturersInfo->fetch_assoc()) {

      // to do
              foreach ($clicshopping_languages as $languages) {
                echo $data['manufacturers_id'] . '<br />';

                $sql_data_array = [
                  'manufacturers_id' => (int)$data['manufacturers_id'],
                  'languages_id' => $languages['languages_id'],
                  'manufacturers_url' => $data['manufacturers_url'],
                  'url_clicked' => (int)$data['url_clicked'],
                  'date_last_click' => $data['date_last_click']
                ];

                $this->db->save('manufacturers_info', $sql_data_array);
              }
      //
            }

       

      Why are you running copyAdministrationMenu ?

       

      The Import/Export Menu item isn't getting created in Admin - remind me of the URL to do this, please.

      Additionally,  receive one error:

      PHP Warning:  file_get_contents(): Filename cannot be empty in /home/clic/public_html/includes/ClicShopping/Apps/Tools/EditLogError/Sites/ClicShoppingAdmin/Pages/Home/templates/edit.php on line 92

       

    3. ClicShopping

      ClicShopping

      Why are you running copyAdministrationMenu ? ==> Because it's inside the BD ot in txt files.
      If inside a txt files do not exist it take the default language
      Inside the db it look the langaue data else it display nothing. ==> Copy the default language

    4. ClicShopping
  3. Arrgh! A frackin' video! What's wrong with text? Guess I'll take a quick look (with the volume down) and see if there's any hidden gems. 10 seconds, then realises a monkey could do that bit.
  4. Hi, I'll open a new thread, specifically on installation issues, hopefully to benefit others. I am liking the look of this software but, Jeez, it's a struggle to get working. Doing a cPanel install just now..
  5. 777 is fine for a 'server' hosted at home but is stupidly bad for any other situation. Trust me, I've been administering servers for over 30 years! When running under suexec/suphp/php-fpm php is run by the account user, whereby u+w is sufficient. So far, I've tried installing under DirectAdmin and repeatedly under CentOSWebpanel (my preferred option for various reasons) but I can also try HestiaCP and WHM/cPanel.
  6. I may be some time. :-/ I've hosted/supported e-commerce software for more than 15 years but this is the most difficult one to get installed and running. There is no clear installation path/instructions and downright dangerous instructions. Permissions of 777 should NEVER, repeat NEVER be used, for example and is in fact impossible to use where suexec/suphp/PHP-FPM comes in to use. Using the master.zip directly extracted on the server, installed to web root and with file/directory permissions set correctly to 644/755. Step 4 of installation present a blank (500 error) screen. On a different server/control panel, I have managed to get something running but the admin is super slow = unusable. BTW: Thanks for the support, guys.
×
×
  • Create New...

Important Information

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