Текущее время: 29 мар 2024, 14:08

работа сайта

Любые сообщения об ошибках и любые Ваши пожелания. Жалобы на работу модераторов или администраторов ресурса.

Модератор: VladPowers

Re: работа сайта

Сообщение KRIONIKA » 24 янв 2017, 19:56

раз 20 уже сегодня при попытке написать сообщение и отправить. от размера сообщения не зависит
An error occurred.

Sorry, the page you are looking for is currently unavailable.
Please try again later.

If you are the system administrator of this resource then you should check the error log for details.

Faithfully yours, nginx.

Announcing NGINX Plus R11
Check out our latest release with easier dynamic module integration, additional TCP/UDP
load-balancing features, enhancements to nginScript, support for GeoIP2, and more. Explore R11
nginx
english
русский

news
about
download
security
documentation
faq
books
support

trac
wiki
twitter
blog
Core functionality
Example Configuration
Directives
accept_mutex
accept_mutex_delay
daemon
debug_connection
debug_points
error_log
env
events
include
load_module
lock_file
master_process
multi_accept
pcre_jit
pid
ssl_engine
thread_pool
timer_resolution
use
user
worker_aio_requests
worker_connections
worker_cpu_affinity
worker_priority
worker_processes
worker_rlimit_core
worker_rlimit_nofile
working_directory
Example Configuration

user www www;
worker_processes 2;

error_log /var/log/nginx-error.log info;

events {
use kqueue;
worker_connections 2048;
}



Directives
Syntax: accept_mutex on | off;
Default:

accept_mutex off;

Context: events

If accept_mutex is enabled, worker processes will accept new connections by turn. Otherwise, all worker processes will be notified about new connections, and if volume of new connections is low, some of the worker processes may just waste system resources.

There is no need to enable accept_mutex on systems that support the EPOLLEXCLUSIVE flag (1.11.3) or when using reuseport.

Prior to version 1.11.3, the default value was on.

Syntax: accept_mutex_delay time;
Default:

accept_mutex_delay 500ms;

Context: events

If accept_mutex is enabled, specifies the maximum time during which a worker process will try to restart accepting new connections if another worker process is currently accepting new connections.
Syntax: daemon on | off;
Default:

daemon on;

Context: main

Determines whether nginx should become a daemon. Mainly used during development.
Syntax: debug_connection address | CIDR | unix:;
Default: —
Context: events

Enables debugging log for selected client connections. Other connections will use logging level set by the error_log directive. Debugged connections are specified by IPv4 or IPv6 (1.3.0, 1.2.1) address or network. A connection may also be specified using a hostname. For connections using UNIX-domain sockets (1.3.0, 1.2.1), debugging log is enabled by the “unix:” parameter.

events {
debug_connection 127.0.0.1;
debug_connection localhost;
debug_connection 192.0.2.0/24;
debug_connection ::1;
debug_connection 2001:0db8::/32;
debug_connection unix:;

}

For this directive to work, nginx needs to be built with --with-debug, see “A debugging log”.

Syntax: debug_points abort | stop;
Default: —
Context: main

This directive is used for debugging.

When internal error is detected, e.g. the leak of sockets on restart of working processes, enabling debug_points leads to a core file creation (abort) or to stopping of a process (stop) for further analysis using a system debugger.
Syntax: error_log file [level];
Default:

error_log logs/error.log error;

Context: main, http, mail, stream, server, location

Configures logging. Several logs can be specified on the same level (1.5.2).

The first parameter defines a file that will store the log. The special value stderr selects the standard error file. Logging to syslog can be configured by specifying the “syslog:” prefix. Logging to a cyclic memory buffer can be configured by specifying the “memory:” prefix and buffer size, and is generally used for debugging (1.7.11).

The second parameter determines the level of logging, and can be one of the following: debug, info, notice, warn, error, crit, alert, or emerg. Log levels above are listed in the order of increasing severity. Setting a certain log level will cause all messages of the specified and more severe log levels to be logged. For example, the default level error will cause error, crit, alert, and emerg messages to be logged. If this parameter is omitted then error is used.

For debug logging to work, nginx needs to be built with --with-debug, see “A debugging log”.

The directive can be specified on the stream level starting from version 1.7.11, and on the mail level starting from version 1.9.0.

Syntax: env variable[=value];
Default:

env TZ;

Context: main

By default, nginx removes all environment variables inherited from its parent process except the TZ variable. This directive allows preserving some of the inherited variables, changing their values, or creating new environment variables. These variables are then:

inherited during a live upgrade of an executable file;
used by the ngx_http_perl_module module;
used by worker processes. One should bear in mind that controlling system libraries in this way is not always possible as it is common for libraries to check variables only during initialization, well before they can be set using this directive. An exception from this is an above mentioned live upgrade of an executable file.

The TZ variable is always inherited and available to the ngx_http_perl_module module, unless it is configured explicitly.

Usage example:

env MALLOC_OPTIONS;
env PERL5LIB=/data/site/modules;
env OPENSSL_ALLOW_PROXY_CERTS=1;

The NGINX environment variable is used internally by nginx and should not be set directly by the user.

Syntax: events { … }
Default: —
Context: main

Provides the configuration file context in which the directives that affect connection processing are specified.
Syntax: include file | mask;
Default: —
Context: any

Includes another file, or files matching the specified mask, into configuration. Included files should consist of syntactically correct directives and blocks.

Usage example:

include mime.types;
include vhosts/*.conf;

Syntax: load_module file;
Default: —
Context: main

This directive appeared in version 1.9.11.

Loads a dynamic module.

Example:

load_module modules/ngx_mail_module.so;

Syntax: lock_file file;
Default:

lock_file logs/nginx.lock;

Context: main

nginx uses the locking mechanism to implement accept_mutex and serialize access to shared memory. On most systems the locks are implemented using atomic operations, and this directive is ignored. On other systems the “lock file” mechanism is used. This directive specifies a prefix for the names of lock files.
Syntax: master_process on | off;
Default:

master_process on;

Context: main

Determines whether worker processes are started. This directive is intended for nginx developers.
Syntax: multi_accept on | off;
Default:

multi_accept off;

Context: events

If multi_accept is disabled, a worker process will accept one new connection at a time. Otherwise, a worker process will accept all new connections at a time.

The directive is ignored if kqueue connection processing method is used, because it reports the number of new connections waiting to be accepted.

Syntax: pcre_jit on | off;
Default:

pcre_jit off;

Context: main

This directive appeared in version 1.1.12.

Enables or disables the use of “just-in-time compilation” (PCRE JIT) for the regular expressions known by the time of configuration parsing.

PCRE JIT can speed up processing of regular expressions significantly.

The JIT is available in PCRE libraries starting from version 8.20 built with the --enable-jit configuration parameter. When the PCRE library is built with nginx (--with-pcre=), the JIT support is enabled via the --with-pcre-jit configuration parameter.

Syntax: pid file;
Default:

pid nginx.pid;

Context: main

Defines a file that will store the process ID of the main process.
Syntax: ssl_engine device;
Default: —
Context: main

Defines the name of the hardware SSL accelerator.
Syntax: thread_pool name threads=number [max_queue=number];
Default:

thread_pool default threads=32 max_queue=65536;

Context: main

This directive appeared in version 1.7.11.

Defines named thread pools used for multi-threaded reading and sending of files without blocking worker processes.

The threads parameter defines the number of threads in the pool.

In the event that all threads in the pool are busy, a new task will wait in the queue. The max_queue parameter limits the number of tasks allowed to be waiting in the queue. By default, up to 65536 tasks can wait in the queue. When the queue overflows, the task is completed with an error.
Syntax: timer_resolution interval;
Default: —
Context: main

Reduces timer resolution in worker processes, thus reducing the number of gettimeofday() system calls made. By default, gettimeofday() is called each time a kernel event is received. With reduced resolution, gettimeofday() is only called once per specified interval.

Example:

timer_resolution 100ms;

Internal implementation of the interval depends on the method used:

the EVFILT_TIMER filter if kqueue is used;
timer_create() if eventport is used;
setitimer() otherwise.

Syntax: use method;
Default: —
Context: events

Specifies the connection processing method to use. There is normally no need to specify it explicitly, because nginx will by default use the most efficient method.
Syntax: user user [group];
Default:

user nobody nobody;

Context: main

Defines user and group credentials used by worker processes. If group is omitted, a group whose name equals that of user is used.
Syntax: worker_aio_requests number;
Default:

worker_aio_requests 32;

Context: events

This directive appeared in versions 1.1.4 and 1.0.7.

When using aio with the epoll connection processing method, sets the maximum number of outstanding asynchronous I/O operations for a single worker process.
Syntax: worker_connections number;
Default:

worker_connections 512;

Context: events

Sets the maximum number of simultaneous connections that can be opened by a worker process.

It should be kept in mind that this number includes all connections (e.g. connections with proxied servers, among others), not only connections with clients. Another consideration is that the actual number of simultaneous connections cannot exceed the current limit on the maximum number of open files, which can be changed by worker_rlimit_nofile.
Syntax: worker_cpu_affinity cpumask …;
worker_cpu_affinity auto [cpumask];
Default: —
Context: main

Binds worker processes to the sets of CPUs. Each CPU set is represented by a bitmask of allowed CPUs. There should be a separate set defined for each of the worker processes. By default, worker processes are not bound to any specific CPUs.

For example,

worker_processes 4;
worker_cpu_affinity 0001 0010 0100 1000;

binds each worker process to a separate CPU, while

worker_processes 2;
worker_cpu_affinity 0101 1010;

binds the first worker process to CPU0/CPU2, and the second worker process to CPU1/CPU3. The second example is suitable for hyper-threading.

The special value auto (1.9.10) allows binding worker processes automatically to available CPUs:

worker_processes auto;
worker_cpu_affinity auto;

The optional mask parameter can be used to limit the CPUs available for automatic binding:

worker_cpu_affinity auto 01010101;

The directive is only available on FreeBSD and Linux.

Syntax: worker_priority number;
Default:

worker_priority 0;

Context: main

Defines the scheduling priority for worker processes like it is done by the nice command: a negative number means higher priority. Allowed range normally varies from -20 to 20.

Example:

worker_priority -10;

Syntax: worker_processes number | auto;
Default:

worker_processes 1;

Context: main

Defines the number of worker processes.

The optimal value depends on many factors including (but not limited to) the number of CPU cores, the number of hard disk drives that store data, and load pattern. When one is in doubt, setting it to the number of available CPU cores would be a good start (the value “auto” will try to autodetect it).

The auto parameter is supported starting from versions 1.3.8 and 1.2.5.

Syntax: worker_rlimit_core size;
Default: —
Context: main

Changes the limit on the largest size of a core file (RLIMIT_CORE) for worker processes. Used to increase the limit without restarting the main process.
Syntax: worker_rlimit_nofile number;
Default: —
Context: main

Changes the limit on the maximum number of open files (RLIMIT_NOFILE) for worker processes. Used to increase the limit without restarting the main process.
Syntax: working_directory directory;
Default: —
Context: main

Defines the current working directory for a worker process. It is primarily used when writing a core-file, in which case a worker process should have write permission for the specified directory.
Я - Легенда!
Ремонт Киа, Хендай в Москве
auto-texcenter.ru

занимаюсь автомобилями КИА с 2000 года, из них 10 лет в Киа Моторс
KRIONIKA
Аватара пользователя
Генерал-лейтенант
Генерал-лейтенант
 
Стаж: 19 лет 2 месяца 30 дней
Сообщения: 10177
Откуда: Moscow
Имя: Stan
Автомобиль: Millennium Falcon
Год выпуска: 5129
Поблагодарили: 768 раз.
Награды: 9
За верность клубу (2) За доброе сердце (1) За активность III степени (1) За гостеприимство (1) Открыватель новых земель (1) Замершее мгновение (1) Золотые руки клуба (1) 7 лет Киа-клубу (1)

Re: работа сайта

Сообщение DIMON1974 » 24 янв 2017, 19:58

KRIONIKA, Попробуй аватарку поменять :z)
DIMON1974
Аватара пользователя
Генерал-полковник
Генерал-полковник
 
Возраст: 49
Стаж: 16 лет 6 месяцев 28 дней
Сообщения: 17795
Откуда: Москва, Московский
Имя: см. ник
Автомобиль: FORD EXPLORER
Год выпуска: 2017
Поблагодарили: 1042 раз.
Награды: 9
Золотая звезда I степени (1) За доброе сердце (3) За мужские качества (1) За флудактивность I степени (1) За активность II степени (1) За гостеприимство (1) Золотые руки клуба (1)

Сообщение Noperapon » 24 янв 2017, 20:16

Да Стас, кому то скидку ты не дал)))

Мы просто пар над супом
Noperapon
Аватара пользователя
Представитель Skype-банды
Представитель Skype-банды
 
Возраст: 48
Стаж: 16 лет 8 месяцев 20 дней
Сообщения: 12922
Откуда: Москва. Юго-Западная
Имя: Андрей
Автомобиль: Rio QB
Поблагодарили: 580 раз.
Награды: 5
За верность клубу (1) За доброе сердце (1) За флудактивность I степени (1) За активность III степени (1) Открыватель новых земель (1)

Re: работа сайта

Сообщение Next-rus » 25 янв 2017, 00:33

KRIONIKA, я когда свой отчет писал, то тоже самое было.
Primum non nocere
Next-rus
Аватара пользователя
Подполковник
Подполковник
 
Возраст: 37
Стаж: 13 лет 10 месяцев 2 дня
Сообщения: 3975
Откуда: Москва, ЗАО
Имя: Костя
Автомобиль: Hyundai Tucson, CRDi 2.0
Год выпуска: 2017
Поблагодарили: 323 раз.
Награды: 2
За доброе сердце (2)

Re: работа сайта

Сообщение YuNarY » 25 янв 2017, 02:09

Стас, молись!
[img]http://s17.
YuNarY
Аватара пользователя
Генералиссимус
Генералиссимус
 
Возраст: 47
Стаж: 17 лет 7 месяцев 10 дней
Сообщения: 30492
Откуда: Москва, Каширская(д) - Динамо(р)
Имя: Юрик
Автомобиль: Volvo XC90 3.2л, Kia Sportage JA DOHC 2л AT
Год выпуска: 2009 и 2000
Поблагодарили: 650 раз.
Награды: 9
Золотая звезда III степени (1) За находчивость (1) За верность клубу (1) За доброе сердце (1) За флудактивность I степени (2) Открыватель новых земель (1) 7 лет Киа-клубу (1) Выездная сессия на 8 лет (1)

Re: работа сайта

Сообщение ОлегRus » 28 янв 2017, 12:05

Не могу создать новую тему.
An error occurred.

Sorry, the page you are looking for is currently unavailable.
Please try again later.

If you are the system administrator of this resource then you should check the error log for details.

Faithfully yours, nginx.

Иногда такое же происходит при ответе в темах, но лечится обновлением страницы.
Я ненавижу свою работу, но она оплачивает мой алкоголь, а мне нужен алкоголь, ведь я ненавижу свою работу.
ОлегRus
Аватара пользователя
Суровый Волговод
 
Возраст: 56
Стаж: 11 лет 11 месяцев 5 дней
Сообщения: 14445
Откуда: Москва, САО
Имя: Олег
Автомобиль: ГАЗ 3102 (406, Ласточка) / Lacetti (1.6, МТ, сарайка) / Action New (2.0, МТ, зажигалка)
Год выпуска: 07/12/13
Поблагодарили: 1360 раз.
Награды: 3
За верность клубу (1) За доброе сердце (1) За мужские качества (1)

Re: работа сайта

Сообщение S4astliff4ik » 28 янв 2017, 13:05

Не могу ответить в ЛС.

An error occurred.

Sorry, the page you are looking for is currently unavailable.
Please try again later.

If you are the system administrator of this resource then you should check the error log for details.

Faithfully yours, nginx.

Добавлено спустя 3 минуты 27 секунд:
Не могу ответить в ЛС.

An error occurred.

Sorry, the page you are looking for is currently unavailable.
Please try again later.

If you are the system administrator of this resource then you should check the error log for details.

Faithfully yours, nginx.
:troll: Имеешь мнение? Ты - тролль !!! :troll:
S4astliff4ik
Аватара пользователя
Подполковник
Подполковник
 
Возраст: 36
Стаж: 12 лет 11 месяцев 8 дней
Сообщения: 3339
Имя: НиКИтА
Автомобиль: КИА
Поблагодарили: 134 раз.
Награды: 6
За верность клубу (1) За доброе сердце (1) За смелость (1) За флудактивность I степени (3)

Re: работа сайта

Сообщение Bellissima » 28 янв 2017, 13:13

S4astliff4ik, посмотри в исходящих, твой ответ уже наверняка ушел несколько раз
Bellissima
Аватара пользователя
Блондинка в законе
Блондинка в законе
 
Стаж: 16 лет 11 месяцев 8 дней
Сообщения: 37012
Откуда: Москва. Новая и не очень.
Имя: Юля
Автомобиль: новый, красивый, полноприводный)))
Поблагодарили: 2368 раз.
Награды: 14
За верность клубу (3) За доброе сердце (3) За гостеприимство (1) Открыватель новых земель (1) Замершее мгновение (1) Золотое перо клуба (1) Новогоднее веселье (1) 7 лет Киа-клубу (1)

Re: работа сайта

Сообщение Миша50 » 28 янв 2017, 13:58

DIMON1974 писал(а):KRIONIKA, Попробуй аватарку поменять :z)


Вообще надо, чтобы на аватарках были фотки авторов.
Ато сидишь и переписываешься с непонятными инеткартинками или с какими-то дикобразами непонятными.
Неужели рожа так крива, что выставить стыдно? :ooi:
Язык у человека мал, но сколько жизней он сломал. Омар Хайям.
Миша50
Аватара пользователя
Подполковник
Подполковник
 
Возраст: 74
Стаж: 8 лет 6 дней
Сообщения: 2788
Откуда: регион 02.
Автомобиль: Sportage1 (JA) Grand 128л/с. (01.2024г пробег141.5 ткм)
Год выпуска: 2006
Поблагодарили: 245 раз.
Награды: 2
За доброе сердце (1) За активность II степени (1)

Re: работа сайта

Сообщение Bellissima » 28 янв 2017, 14:19

Миша50 писал(а):Вообще надо, чтобы на аватарках были фотки авторов.
Ато сидишь и переписываешься с непонятными инеткартинками или с какими-то дикобразами непонятными.

Точно! :z) Также предлагаю в обязательном порядке указывать в профиле семейное и материальное положение. А то сидишь, общаешься, и не знаешь с кем :faceoff: :z)
Bellissima
Аватара пользователя
Блондинка в законе
Блондинка в законе
 
Стаж: 16 лет 11 месяцев 8 дней
Сообщения: 37012
Откуда: Москва. Новая и не очень.
Имя: Юля
Автомобиль: новый, красивый, полноприводный)))
Поблагодарили: 2368 раз.
Награды: 14
За верность клубу (3) За доброе сердце (3) За гостеприимство (1) Открыватель новых земель (1) Замершее мгновение (1) Золотое перо клуба (1) Новогоднее веселье (1) 7 лет Киа-клубу (1)

Re: работа сайта

Сообщение Сват » 28 янв 2017, 15:46

должны быть опубликованы налоговые декларации за всё время нахождения на форуме.
Последний раз редактировалось Сват 28 янв 2017, 19:23, всего редактировалось 1 раз.
Злостный неплательщик взяток...
машина любит ласку, чистоту и смазку
Сват
Аватара пользователя
Старший лейтенант
Старший лейтенант
 
Возраст: 72
Стаж: 16 лет 2 месяца 14 дней
Сообщения: 617
Откуда: Новороссийск
Имя: Геннадий Викторович
Автомобиль: KIA CERATO EX 1.6 AT отдал дочке, Ваз 2105, Лифан Х60
Год выпуска: 2007, 2009,2016
Поблагодарили: 52 раз.

Re: работа сайта

Сообщение KRIONIKA » 28 янв 2017, 15:54

Миша50 писал(а):на аватарках были фотки авторов

там моя фотка 100%
Миша50 писал(а):Ато сидишь и переписываешься с непонятными инеткартинками или с какими-то дикобразами непонятными.

не поверишь, тоже самое хотел тебе предложить :z) :z) :z)

Добавлено спустя 11 минут 27 секунд:
Bellissima писал(а):сидишь, общаешься, и не знаешь с кем :faceoff: :z)


а ты вообще лицом повернись :z) :z) :z)
Я - Легенда!
Ремонт Киа, Хендай в Москве
auto-texcenter.ru

занимаюсь автомобилями КИА с 2000 года, из них 10 лет в Киа Моторс
KRIONIKA
Аватара пользователя
Генерал-лейтенант
Генерал-лейтенант
 
Стаж: 19 лет 2 месяца 30 дней
Сообщения: 10177
Откуда: Moscow
Имя: Stan
Автомобиль: Millennium Falcon
Год выпуска: 5129
Поблагодарили: 768 раз.
Награды: 9
За верность клубу (2) За доброе сердце (1) За активность III степени (1) За гостеприимство (1) Открыватель новых земель (1) Замершее мгновение (1) Золотые руки клуба (1) 7 лет Киа-клубу (1)

Re: работа сайта

Сообщение ОлегRus » 28 янв 2017, 16:48

ОлегRus писал(а):Не могу создать новую тему.
Проблема исчезла.
Я ненавижу свою работу, но она оплачивает мой алкоголь, а мне нужен алкоголь, ведь я ненавижу свою работу.
ОлегRus
Аватара пользователя
Суровый Волговод
 
Возраст: 56
Стаж: 11 лет 11 месяцев 5 дней
Сообщения: 14445
Откуда: Москва, САО
Имя: Олег
Автомобиль: ГАЗ 3102 (406, Ласточка) / Lacetti (1.6, МТ, сарайка) / Action New (2.0, МТ, зажигалка)
Год выпуска: 07/12/13
Поблагодарили: 1360 раз.
Награды: 3
За верность клубу (1) За доброе сердце (1) За мужские качества (1)

Re: работа сайта

Сообщение URRI » 28 янв 2017, 18:00

Миша50 писал(а):
DIMON1974 писал(а):KRIONIKA, Попробуй аватарку поменять :z)


Вообще надо, чтобы на аватарках были фотки авторов.
Ато сидишь и переписываешься с непонятными инеткартинками или с какими-то дикобразами непонятными.
Неужели рожа так крива, что выставить стыдно? :ooi:


Ну зачем-же всех в один строй ,гораздо интересней ЧТО человек хочет сказать
Аватарка ,как интим — личное…
Вот профиль — да ,хотелось-бы чтоб пополнее
- Имя ,Сестра ! — Имя !!! … :D
Изображение
URRI
Аватара пользователя
Подполковник
Подполковник
 
Возраст: 68
Стаж: 10 лет 10 месяцев 29 дней
Сообщения: 4964
Откуда: г.Самара
Статьи: 1
Имя: Юрий
Автомобиль: KIA SPORTAGE 2 бенз 4WD 2.0L МТ кореец
Год выпуска: 2005
Поблагодарили: 780 раз.
Награды: 2
За доброе сердце (1) За активность II степени (1)

Re: работа сайта

Сообщение YuNarY » 29 янв 2017, 00:04

S4astliff4ik писал(а):Не могу ответить в ЛС.
Получил все 4ре одинаковых сообщения ;)
Bellissima писал(а):посмотри в исходящих, твой ответ уже наверняка ушел несколько раз

Точно!
Миша50 писал(а):или с какими-то дикобразами непонятными
Это — дракон! :vip: :z) :oops:

Добавлено спустя 1 минуту 11 секунд:
Bellissima писал(а):указывать в профиле семейное и материальное положение
"А может тебе ещё и ключ от квартиры где деньги лежать?" (с)
[img]http://s17.
YuNarY
Аватара пользователя
Генералиссимус
Генералиссимус
 
Возраст: 47
Стаж: 17 лет 7 месяцев 10 дней
Сообщения: 30492
Откуда: Москва, Каширская(д) - Динамо(р)
Имя: Юрик
Автомобиль: Volvo XC90 3.2л, Kia Sportage JA DOHC 2л AT
Год выпуска: 2009 и 2000
Поблагодарили: 650 раз.
Награды: 9
Золотая звезда III степени (1) За находчивость (1) За верность клубу (1) За доброе сердце (1) За флудактивность I степени (2) Открыватель новых земель (1) 7 лет Киа-клубу (1) Выездная сессия на 8 лет (1)

Re: работа сайта

Сообщение KRIONIKA » 05 май 2017, 14:50

при нажатии на ссылку в ЛС на тему внутри клуба, тема есть, сообщение есть)

Not Found

The requested URL /var/html/forum.kia-club.ru/public_html/viewtopic.php was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Я - Легенда!
Ремонт Киа, Хендай в Москве
auto-texcenter.ru

занимаюсь автомобилями КИА с 2000 года, из них 10 лет в Киа Моторс
KRIONIKA
Аватара пользователя
Генерал-лейтенант
Генерал-лейтенант
 
Стаж: 19 лет 2 месяца 30 дней
Сообщения: 10177
Откуда: Moscow
Имя: Stan
Автомобиль: Millennium Falcon
Год выпуска: 5129
Поблагодарили: 768 раз.
Награды: 9
За верность клубу (2) За доброе сердце (1) За активность III степени (1) За гостеприимство (1) Открыватель новых земель (1) Замершее мгновение (1) Золотые руки клуба (1) 7 лет Киа-клубу (1)

Re: работа сайта

Сообщение Klerk » 04 июн 2018, 13:49

За последний месяц пришлось авторизоваться на форуме чуть не десять раз… Буквально каждые несколько дней (а иногда и каждый день) приходится вводить логин/пароль. Потом несколько дней всё нормально, а потом опять "Введите логин и пароль". Раньше такого не наблюдалось так часто.

Сначала думал что на форуме какие-то работы, но судя по отсутствию подобных вопросов, дело не в этом.

С чем может быть связано?
Klerk
Майор
Майор
 
Стаж: 14 лет 9 месяцев 7 дней
Сообщения: 1613
Статьи: 2
Автомобиль: Rio (2003-2005)
Поблагодарили: 70 раз.
Награды: 1
Золотая звезда I степени (1)

Re: работа сайта

Сообщение Vadim-chik » 04 июн 2018, 14:02

Klerk, куки автоматом в браузере не удаляются при закрытии оного?
Изображение Изображение
Не говорите, что мне делать, и я не скажу, куда вам идти...
Vadim-chik
Аватара пользователя
Генерал-лейтенант
Генерал-лейтенант
 
Возраст: 61
Стаж: 14 лет 11 месяцев 12 дней
Сообщения: 13808
Откуда: г. Сарапул, Удмуртия, 18 регион
Имя: Вадим
Автомобиль: SPORTAGE QLeFL Edition Plus, 4WD, 2,0 бензин, АКПП. SPORTAGE KM 2009, SL 2013 были...
Год выпуска: 2019
Поблагодарили: 1214 раз.
Награды: 2
За верность клубу (1) За доброе сердце (1)

Re: работа сайта

Сообщение Koldunja » 04 июн 2018, 14:45

Klerk писал(а):За последний месяц пришлось авторизоваться на форуме чуть не десять раз…

На телефона тоже периодически слетает авторизация! :oops:

Правовой центр "ЛОЕРС"
Квалифицированная Юридическая помощь
Одноклубникам скидки!
При заключении договора первичная консультация БЕСПЛАТНО


Наш новый адрес: м. Коломенская,
Нагатинская улица, д. 22, корп. 1, 2 этаж
Тел.:+7 (916) 826-50-00

https://ipkl.ru/
Koldunja
Аватара пользователя
Волшебница
Волшебница
 
Возраст: 44
Стаж: 17 лет 7 месяцев 3 дня
Сообщения: 14868
Откуда: Волшебный мир
Автомобиль: Колдовская метла
Поблагодарили: 1511 раз.
Награды: 15
За верность клубу (4) За доброе сердце (3) За смелость (1) За активность I степени (2) За гостеприимство (1) Открыватель новых земель (1) Мудрость клуба (1) 7 лет Киа-клубу (1)

Re: работа сайта

Сообщение Klerk » 04 июн 2018, 16:39

Vadim-chik писал(а):Klerk, куки автоматом в браузере не удаляются при закрытии оного?
Думаю, нет. На других форумах авторизация не слетает.
Ради эксперимента сейчас закрыл/открыл браузер и всё нормально.


Koldunja писал(а):
Klerk писал(а):За последний месяц пришлось авторизоваться на форуме чуть не десять раз…

На телефона тоже периодически слетает авторизация! :oops:
Возможно, в мобильных браузерах есть периодическое очищение устаревших данных?
Но у меня проблема на компе…
Klerk
Майор
Майор
 
Стаж: 14 лет 9 месяцев 7 дней
Сообщения: 1613
Статьи: 2
Автомобиль: Rio (2003-2005)
Поблагодарили: 70 раз.
Награды: 1
Золотая звезда I степени (1)

Пред.След.

Вернуться в Все вопросы о работе форума KIA-CLUB.RU

Кто сейчас на конференции

Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 3