B
B
barries2019-06-06 18:07:43
CMS
barries, 2019-06-06 18:07:43

How to make an online store of spare parts for vacuum cleaners?

There is an online store of spare parts for vacuum cleaners with a quantity of goods ~ 1-1.5k. Suggest a good price / quality solution. Interested in the engine with installation on your hosting, without clouds, etc.

Answer the question

In order to leave comments, you need to log in

7 answer(s)
S
Sanes, 2019-06-06
@Sanes

Any that can adequately work with your data source. I would choose between CS-Cart and Bitrix.

N
NeuroPastor, 2019-06-06
@NeuroPastor

I believe that the engine that you understand at the level of correcting or reading the code in the core is best suited for tasks.
If you can't, teach. If you can’t teach, then it’s better to leave the sphere altogether.
For example in design :)

E
Eugene, 2019-06-07
@Eugeny1987

Check out HostCMS

O
Oleg Frolov, 2019-06-07
@Digiport

The choice of engine is purely your personal decision, depending on your previous experience, accumulated knowledge and preferences. By and large, all engines solve the same problems, offering different ways and interfaces for solving these problems. Which way you choose is up to you.

D
Daniil Basmanov, 2017-07-07
@BasmanovDaniil

Either use Array.Resize :

int oldLength = words.Length;
Array.Resize(ref words, oldLength + newWords.Length);
for (int i = 0; i < newWords.Length; i++)
{
    words[i + oldLength] = newWords[i];
}

Or take a List instead of an array :
foreach (var newWord in newWords)
{
    words.Add(newWord);
}
// Или так
words.AddRange(newWords);

A
Anton Vertov, 2017-07-07
@1Frosty

I'm trying to use sheets, please help. I skip the procedure:

wordList = new List<object>(words); // Создаём лист
        // Проверяем какие категории отмечены
        if (toggleSports.isOn == true) {
            for (int w = 0; w < LangSystem.lng.sports.Length; w++) words[w].word = LangSystem.lng.sports[w]; // ПРОХОЖУ ПО РАЗМЕРУ МАССИВА и добавляю туда фразы из lng.sports
            wordListSports = new List<object>(words); // Создаю новый лист
            wordList.AddRange(wordListSports); // Соединяю его с основным
        }
        if (toggleGeo.isOn == true)
        {
            for (int w = 0; w < LangSystem.lng.geo.Length; w++) words[w].word = LangSystem.lng.geo[w];
            wordListGeo = new List<object>(words);
            wordList.AddRange(wordListGeo); // Добавляю фразы в основной лист
        }

It turns out that in wordList there are only elements from wordListGeo, and wordListSports simply does not, but I add them like this:
wordListSports = new List<object>(words); // Создаю новый лист
 wordList.AddRange(wordListSports); // Соединяю его с основным

What am I doing wrong? Tell me please. Thank you very much in advance.

D
Denis Fedorets, 2017-07-08
@fedorez

Why do you need an array? Use the list, it's more convenient. If you then need to interact with code that needs an array, there is always ToArray.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question