Mysql ошибка 1226

  • 17.02.2006

На некоторых хостингах администраторы устанавливают ограничение на максимальное количество запросов к базе данных в час. При превышении этого значения выдается сообщение об ошибке вида: User ‘имя_пользователя’ has exceeded the ‘max_questions’ resource (current value: 72000), где 72000 это и есть максимальное количество запросов. Превышение ограничения может происходить по разным причинам: хостер выставил маленькое значение, высокая посещаемость сайта, установлены «тяжелые» компоненты (статистика, нестандартные реализации SEF) и т.д. Недавно, на официальном форуме Joomla, я нашел интересное решение этой проблемы.

Решение этой проблемы основывается на том, что ограничение выставляется для конкретного пользователя базы данных. Поэтому, если создать несколько пользователей с одинаковыми правами и автоматически переключать их в конфигурационном файле Joomla, то можно побороть это ограничение.

Итак, приступим:

  1. Идем в панель управления хостингом (CPanel, DirectAdmin, vDeck и т.д.). И создаем 2-5 пользователей для вашей базы данных с теми же правами и паролем, что и у основного пользователя базы данных вашего сайта. После создания пользователей обязательно дайте им привелегии для доступа к базе данных вашего сайта — они должны быть полными копиями основного пользователя. Допустим мы создали 3-х дополнительных пользователей: myjoomla_user1, myjoomla_user2 и myjoomla_user3.
  2. Открываем в любом редакторе конфигурационный файл configuration.php и находим в нем переменные с логином пользователя базы данных:
    $mosConfig_user = 'myjoomla_user';
    
  3. Заменяем эту строчку на следующий код:
    $mosConfig_users = array("myjoomla_user", "myjoomla_user1", "myjoomla_user2", "myjoomla_user3");
    $mosConfig_user = $mosConfig_users[array_rand($mosConfig_users)];
    
  4. Сохраняем изменения в файле configuration.php.

Как это будет работать? Очень просто: при обращении к сайту переменной $mosConfig_user автоматически будет случайным образом присваиваться один из 4 имеющихся пользователей. Таким образом общее количество запросов к сайту будет поделено на количество пользователей.

Примечание: при изменении в административной панели Joomla параметров глобальной конфигурации, файл configuration.php полностью перезаписывается. Поэтому, если вы решили воспользоватся приведенным выше способом решения проблемы превышения количества запросов, не забывайте, после каждого изменения конфигурации в административной панели, вносить модификации в файл configuration.php.

There’s no problem with the database, the problem is in how you handle database connections from your software.

The way your script is set up is that every connection to your web server also opens a connection towards MySQL. That’s not the scenario you want.

Raising the limit won’t fix the issue, it will just delay yet another error. What you should do is use persistent connections.

One of the reasons why using php-fpm instead of server API’s such as mod_php is preferred is because a set number of PHP processes is booted and a pool of connections to services is created.

The flow would be the following:

  • use php-fpm. Apache and nginx can use FCGI interface to speak to php-fpm processes
  • raise a relatively low amount of child processes for php-fpm. This shouldn’t be overly large, default config usually works out, I’ll make a guess that you don’t run a hexacore system so 4-6 child processes should be fine
  • use persistent MySQL connections

What does this do? Your server accepts the request and sends it to php-fpm, which processes it when it becomes free. Each process uses 1 connection to MySQL. This means you can never hit some sort of hard limit like you have.

If your server is busy, the server should queue up the requests until PHP is capable of handling them. Be it Apache or nginx that you use, this approach will work well.

If your site is busy, it’s likely that web server is working faster to accept connections and serve static content that PHP is to process dynamic content. In this case you have an option of adding another physical machine (or more) that runs php-fpm. Instructing your web server to round-robin between machines that serve PHP is trivial, for both of mentioned web servers.

Bottom line is that you want to utilize your resources in an optimal way. Opening and closing MySQL connections on every request isn’t optimal. Pooling connections is.

I’m using mariadb and have error

ERROR 1226 (42000): User ‘root’ has exceeded the ‘max_user_connections’ resource (current value: -1)

I’m set max_connection to 1000 and not set max_user_connections in Global and user table.

How can I fix that.

RolandoMySQLDBA's user avatar

asked Jan 8, 2015 at 22:09

haulpd's user avatar

1

The quick and dirty fix is FLUSH USER_RESOURCES

USER_RESOURCES

Resets all per-hour user resources to zero. This enables clients that have reached their hourly connection, query, or update limits to resume activity immediately. FLUSH USER_RESOURCES does not apply to the limit on maximum simultaneous connections. See Section 6.3.4, “Setting Account Resource Limits”.

Since you did not set any user recsource limits, I would suspect a misalignment of columns in the mysql.user table, especially if you performed mysql_upgrade with fixing the grant tables.

To check this run this query

select ordinal_position from information_schema.columns
where table_schema='mysql' and table_name='user' and column_name='max_user_connections';

I get 40 in MySQL 5.6.

If I upgraded MySQL 5.6 and I don’t get 40 from this query, I would just run

mysql_upgrade --upgrade-system-tables

There is a 6-month-old bug on a similar issue : MySQL Forums :: Newbie :: ERROR 1226 (42000) at line 1129: User ‘root’ has exceeded the ‘max_updates’ resource (current value: 100)

answered Jan 8, 2015 at 22:19

RolandoMySQLDBA's user avatar

RolandoMySQLDBARolandoMySQLDBA

181k33 gold badges313 silver badges514 bronze badges

Econ

Добавлено: 07.08.2023 21:13

49.9

Добавлено: 07.08.2023 21:14

Bett

Добавлено: 07.08.2023 21:15

Bett

Добавлено: 07.08.2023 21:16

Pros

Добавлено: 07.08.2023 21:17

Quel

Добавлено: 07.08.2023 21:18

Laru

Добавлено: 07.08.2023 21:20

Stan

Добавлено: 07.08.2023 21:21

Mary

Добавлено: 07.08.2023 21:22

ARIS

Добавлено: 07.08.2023 21:23

Your

Добавлено: 07.08.2023 21:26

Prov

Добавлено: 07.08.2023 21:27

Comp

Добавлено: 07.08.2023 21:28

Micr

Добавлено: 07.08.2023 21:29

Magi

Добавлено: 07.08.2023 21:30

Fait

Добавлено: 07.08.2023 21:31

Atla

Добавлено: 07.08.2023 21:32

Bras

Добавлено: 07.08.2023 21:33

Fisk

Добавлено: 07.08.2023 21:35

Mike

Добавлено: 07.08.2023 21:36

Park

Добавлено: 07.08.2023 21:37

Play

Добавлено: 07.08.2023 21:38

Dima

Добавлено: 07.08.2023 21:39

SPOR

Добавлено: 07.08.2023 21:40

LUDW

Добавлено: 07.08.2023 21:41

Nigh

Добавлено: 07.08.2023 21:44

Deko

Добавлено: 07.08.2023 21:45

Comf

Добавлено: 07.08.2023 21:48

Darr

Добавлено: 07.08.2023 21:49

Sedu

Добавлено: 07.08.2023 21:50

Kasp

Добавлено: 07.08.2023 21:51

Jori

Добавлено: 07.08.2023 21:52

Mois

Добавлено: 07.08.2023 21:53

John

Добавлено: 07.08.2023 21:54

Hans

Добавлено: 07.08.2023 21:55

Swam

Добавлено: 07.08.2023 21:57

Sens

Добавлено: 07.08.2023 21:59

Doct

Добавлено: 07.08.2023 22:00

Dean

Добавлено: 07.08.2023 22:03

Publ

Добавлено: 07.08.2023 22:04

Fiel

Добавлено: 07.08.2023 22:05

Grea

Добавлено: 07.08.2023 22:06

Herd

Добавлено: 07.08.2023 22:07

Nint

Добавлено: 07.08.2023 22:08

Kreo

Добавлено: 07.08.2023 22:11

Patr

Добавлено: 07.08.2023 22:12

Creo

Добавлено: 07.08.2023 22:17

Elfr

Добавлено: 07.08.2023 22:18

Imma

Добавлено: 07.08.2023 22:19

Conn

Добавлено: 07.08.2023 22:20

Depe

Добавлено: 07.08.2023 22:22

LEGO

Добавлено: 07.08.2023 22:23

Davi

Добавлено: 07.08.2023 22:24

opus

Добавлено: 07.08.2023 22:25

Wind

Добавлено: 07.08.2023 22:26

Wind

Добавлено: 07.08.2023 22:27

Eleg

Добавлено: 07.08.2023 22:28

Mari

Добавлено: 07.08.2023 22:29

Robe

Добавлено: 07.08.2023 22:30

Hono

Добавлено: 07.08.2023 22:32

Hild

Добавлено: 07.08.2023 22:33

Dolb

Добавлено: 07.08.2023 22:34

Isaa

Добавлено: 07.08.2023 22:35

Marc

Добавлено: 07.08.2023 22:36

cred

Добавлено: 07.08.2023 22:37

Thom

Добавлено: 07.08.2023 22:38

Grim

Добавлено: 07.08.2023 22:39

Bern

Добавлено: 07.08.2023 22:40

Etni

Добавлено: 07.08.2023 22:43

Dyna

Добавлено: 07.08.2023 22:44

Cali

Добавлено: 07.08.2023 22:45

Sims

Добавлено: 07.08.2023 22:46

Fish

Добавлено: 07.08.2023 22:47

Drea

Добавлено: 07.08.2023 22:49

Hans

Добавлено: 07.08.2023 22:50

Wind

Добавлено: 07.08.2023 22:51

Rola

Добавлено: 07.08.2023 22:52

Wind

Добавлено: 07.08.2023 22:53

Pete

Добавлено: 07.08.2023 22:54

Ridl

Добавлено: 07.08.2023 22:55

Hard

Добавлено: 07.08.2023 22:56

Alon

Добавлено: 07.08.2023 22:57

Doug

Добавлено: 07.08.2023 23:02

Magi

Добавлено: 07.08.2023 23:03

Krin

Добавлено: 07.08.2023 23:05

Dark

Добавлено: 07.08.2023 23:06

Imre

Добавлено: 07.08.2023 23:10

Tatt

Добавлено: 07.08.2023 23:11

Bonu

Добавлено: 07.08.2023 23:12

Pedr

Добавлено: 07.08.2023 23:13

Shab

Добавлено: 07.08.2023 23:15

City

Добавлено: 07.08.2023 23:16

Arts

Добавлено: 07.08.2023 23:17

Half

Добавлено: 07.08.2023 23:20

RHZN

Добавлено: 07.08.2023 23:21

Agat

Добавлено: 07.08.2023 23:22

Hein

Добавлено: 07.08.2023 23:23

Noki

Добавлено: 07.08.2023 23:24

Brot

Добавлено: 07.08.2023 23:25

Wind

Добавлено: 07.08.2023 23:27

Ashu

Добавлено: 07.08.2023 23:28

Svag

Добавлено: 07.08.2023 23:29

Wolf

Добавлено: 07.08.2023 23:30

Noki

Добавлено: 07.08.2023 23:32

Crag

Добавлено: 07.08.2023 23:33

Okam

Добавлено: 07.08.2023 23:34

Bren

Добавлено: 07.08.2023 23:35

John

Добавлено: 07.08.2023 23:36

Conn

Добавлено: 07.08.2023 23:37

Dawn

Добавлено: 07.08.2023 23:38

Davi

Добавлено: 07.08.2023 23:39

Boom

Добавлено: 07.08.2023 23:41

Tama

Добавлено: 07.08.2023 23:42

Duke

Добавлено: 07.08.2023 23:44

Flex

Добавлено: 07.08.2023 23:45

Fiat

Добавлено: 07.08.2023 23:46

Sony

Добавлено: 07.08.2023 23:50

Swis

Добавлено: 07.08.2023 23:51

Clim

Добавлено: 07.08.2023 23:52

Miel

Добавлено: 07.08.2023 23:55

Movi

Добавлено: 07.08.2023 23:56

Star

Добавлено: 08.08.2023 00:00

Lase

Добавлено: 08.08.2023 00:01

Hall

Добавлено: 08.08.2023 00:02

Jard

Добавлено: 08.08.2023 00:03

Part

Добавлено: 08.08.2023 00:06

Grea

Добавлено: 08.08.2023 00:07

Rock

Добавлено: 08.08.2023 00:08

Jean

Добавлено: 08.08.2023 00:10

BELL

Добавлено: 08.08.2023 00:11

Blau

Добавлено: 08.08.2023 00:12

Svat

Добавлено: 08.08.2023 00:13

Epip

Добавлено: 08.08.2023 00:14

funk

Добавлено: 08.08.2023 00:15

Vali

Добавлено: 08.08.2023 00:16

Twis

Добавлено: 08.08.2023 00:17

Danc

Добавлено: 08.08.2023 00:18

Ricc

Добавлено: 08.08.2023 00:20

Lege

Добавлено: 08.08.2023 00:21

Baby

Добавлено: 08.08.2023 00:22

Wind

Добавлено: 08.08.2023 00:23

Wind

Добавлено: 08.08.2023 00:24

Mari

Добавлено: 08.08.2023 00:25

Bork

Добавлено: 08.08.2023 00:26

LEGO

Добавлено: 08.08.2023 00:27

Redm

Добавлено: 08.08.2023 00:28

Chou

Добавлено: 08.08.2023 00:30

Fran

Добавлено: 08.08.2023 00:31

Pedi

Добавлено: 08.08.2023 00:35

Hand

Добавлено: 08.08.2023 00:36

Nell

Добавлено: 08.08.2023 00:37

Norb

Добавлено: 08.08.2023 00:38

wwwn

Добавлено: 08.08.2023 00:39

Goin

Добавлено: 08.08.2023 00:40

Trum

Добавлено: 08.08.2023 00:41

Chil

Добавлено: 08.08.2023 00:42

domo

Добавлено: 08.08.2023 00:43

Java

Добавлено: 08.08.2023 00:45

VIII

Добавлено: 08.08.2023 00:46

Arti

Добавлено: 08.08.2023 00:48

Vill

Добавлено: 08.08.2023 00:49

CISC

Добавлено: 08.08.2023 00:50

Joha

Добавлено: 08.08.2023 00:53

ACAD

Добавлено: 08.08.2023 00:55

Even

Добавлено: 08.08.2023 00:56

Inte

Добавлено: 08.08.2023 00:58

Dolb

Добавлено: 08.08.2023 00:59

Twel

Добавлено: 08.08.2023 01:00

Intr

Добавлено: 08.08.2023 01:01

Dolb

Добавлено: 08.08.2023 01:02

Exce

Добавлено: 08.08.2023 01:03

Mikh

Добавлено: 08.08.2023 01:04

Dani

Добавлено: 08.08.2023 01:05

Davi

Добавлено: 08.08.2023 01:06

Dani

Добавлено: 08.08.2023 01:08

geni

Добавлено: 08.08.2023 01:10

Move

Добавлено: 08.08.2023 01:12

Rajn

Добавлено: 08.08.2023 01:13

Whyb

Добавлено: 08.08.2023 01:14

Chri

Добавлено: 08.08.2023 01:15

Juli

Добавлено: 08.08.2023 01:16

Goff

Добавлено: 08.08.2023 01:20

Quee

Добавлено: 08.08.2023 01:21

Lenk

Добавлено: 08.08.2023 01:22

Sims

Добавлено: 08.08.2023 01:23

Bian

Добавлено: 08.08.2023 01:24

Robe

Добавлено: 08.08.2023 01:25

Frid

Добавлено: 08.08.2023 01:26

Raym

Добавлено: 08.08.2023 01:27

Want

Добавлено: 08.08.2023 01:29

Disn

Добавлено: 08.08.2023 01:30

Grow

Добавлено: 08.08.2023 01:31

Char

Добавлено: 08.08.2023 01:32

DMBB

Добавлено: 08.08.2023 01:33

Mika

Добавлено: 08.08.2023 01:38

Adob

Добавлено: 08.08.2023 01:39

Lume

Добавлено: 08.08.2023 01:40

Macr

Добавлено: 08.08.2023 01:42

Sony

Добавлено: 08.08.2023 01:44

Sony

Добавлено: 08.08.2023 01:45

Sony

Добавлено: 08.08.2023 01:46

Wind

Добавлено: 08.08.2023 01:47

Bonb

Добавлено: 08.08.2023 01:49

Love

Добавлено: 08.08.2023 01:50

Comp

Добавлено: 08.08.2023 01:51

Woma

Добавлено: 08.08.2023 01:53

Draf

Добавлено: 08.08.2023 01:54

Caff

Добавлено: 08.08.2023 01:58

Free

Добавлено: 08.08.2023 02:02

Mone

Добавлено: 08.08.2023 02:03

MPEG

Добавлено: 08.08.2023 02:05

tuchkas

Добавлено: 08.08.2023 02:06

Came

Добавлено: 08.08.2023 02:09

Sand

User avatar

maverick25

Joomla! Intern
Joomla! Intern
Posts: 79
Joined: Thu Aug 18, 2005 12:38 pm
Location: Marikina City, Philippines
Contact:

FAQ: How to fix DB function failed with error number 1226?

FOR SHARED ENVIRONMENTS ONLY

If your site crashed due to this error:

Code: Select all

DB function failed with error number 1226
User 'your_user_name_here' has exceeded the 'max_questions' resource (current value: 50000) SQL=SELECT session_id FROM mos_session WHERE session_id=MD5('1aa637c8e7d13c9be419d455cd6db64c')
SQL =

SELECT session_id FROM mos_session WHERE session_id=MD5('1aa637c8e7d13c9be419d455cd6db64c')

and you are currently hosted on a shared environment (i.e., you are not allowed to edit configuration files for PHP and MySQL or your host provider doesn’t want to increase the max_questions value), here is a quick fix:

  • Go to your account’s control panel (e.g., CPanel, DirectAdmin, vDeck, etc.). Access the MySQL feature and create 2-5 database users with the same password as your db user for Mambo/Joomla. Assign them to the database where your Mambo/Joomla site is.

    Example:
    DB name for Mambo/Joomla — myjoomla_cms
    DB user for Mambo/Joomla — myjoomla_user

    Create additional users for the database:
    2nd DB user for Mambo/Joomla — myjoomla_user1
    3rd DB user for Mambo/Joomla — myjoomla_user2

    Don’t forget to give them the same database privileges as your first Joomla DB user.

  • Then download your configuration.php from the server and open it in any HTML/PHP editor to modify it.

    Look for this line:

Code: Select all

$mosConfig_user = 'myjoomla_user';

Comment out the line above and add these lines below it:

Code: Select all

$mosConfig_users = array("myjoomla_user", "myjoomla_user1", "myjoomla_user2");
$mosConfig_user = $mosConfig_users[array_rand($mosConfig_users)];
  • Explanation: The first line defines the users that can access your database. The second line randomly selects a user from the list on the first line.

    Save the changes and re-upload the file to your server.


User avatar

Websmurf

Joomla! Hero
Joomla! Hero
Posts: 2230
Joined: Fri Aug 19, 2005 2:23 pm
Location: The Netherlands
Contact:

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by Websmurf » Wed Oct 12, 2005 10:23 am

Please keep in mind, that making a change to your site configuration through the mambo backend and saving it, will overwrite the configuration.php file and will force you to do the change again..


User avatar

maverick25

Joomla! Intern
Joomla! Intern
Posts: 79
Joined: Thu Aug 18, 2005 12:38 pm
Location: Marikina City, Philippines
Contact:

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by maverick25 » Thu Oct 13, 2005 3:19 am

What Websmurf said is true, so unless you know what you are doing and you think that your current site’s configuration is what you really want, then you can make your configuration.php unwritable to keep the changes you manually entered saved.


danilop

Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Sun Aug 06, 2006 3:16 am

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by danilop » Sun Aug 06, 2006 3:22 am

hi!, sorry my bad english, i speak spanish.
Your explanation solve me the problem for some weeks, but i have the same problem again  :-[ , i think that maybe the problem is (in my case) in the 404 sef, i don’t know why this component create every day a lot of 404 error pages  :'( any suggestion? thanks!!


thomas_ttech

Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Fri Sep 15, 2006 6:56 pm

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by thomas_ttech » Fri Sep 15, 2006 7:09 pm

Has anyone found the root of the problem ?

Has anyone found a solution besides adding users to the database ? (not an option with some hosting packages such as mine  :( )

I know someone was hosting with servage, have they found a solution ???

Thanks in advance !!!


User avatar

Websmurf

Joomla! Hero
Joomla! Hero
Posts: 2230
Joined: Fri Aug 19, 2005 2:23 pm
Location: The Netherlands
Contact:

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by Websmurf » Sat Sep 16, 2006 8:16 pm

No, the only way to get around this error, is to use multiple users or to ask your hosting provider to upgrade the limit


maniactive

Joomla! Apprentice
Joomla! Apprentice
Posts: 13
Joined: Thu Dec 08, 2005 8:31 pm

How to fix DB function failed with error number 1226?

Post

by maniactive » Tue Dec 05, 2006 9:15 pm

This «array» tip worked like a charm for me. It also worked at an osCommerce installation. So thank you v. much!

One other thing I noticed: I did not get the 1226 error until I installed WordPress on the same shared server space as Joomla!

This happened twice on two different shared server solutions with the 50,000 question limit:

my solution in each case was to 1) do the array AND 2) get rid of any trace of WordPress.

It doesn’t appear that WordPress and Joomla play nice with each other on the same shared server space.

But I’d love it if someone could prove me wrong!


chanman

Joomla! Apprentice
Joomla! Apprentice
Posts: 15
Joined: Sat Oct 07, 2006 8:18 pm

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by chanman » Mon Dec 25, 2006 8:09 am

It doesn’t work! Is there any way to find the SOURCE of this problem?

I only get 15-20 unique users a day…and this happens very frequently.


chanman

Joomla! Apprentice
Joomla! Apprentice
Posts: 15
Joined: Sat Oct 07, 2006 8:18 pm

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by chanman » Thu Dec 28, 2006 7:23 pm

problem solved.

disable all stats, joomlastats, config stats option
make like 30-40 user names, not only 2-5…
and make the array humongous


chanman

Joomla! Apprentice
Joomla! Apprentice
Posts: 15
Joined: Sat Oct 07, 2006 8:18 pm

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by chanman » Tue Jan 16, 2007 6:01 am

EDIT!

problem was NOT solved by the above.

I HAVE FOUND THE SOURCE OF THIS PROBLEM.

When I disable Joomla Core SEF, everything works perfectly. PERFECTLY.


Patsbrady

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 156
Joined: Sun Aug 28, 2005 9:14 am

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by Patsbrady » Wed Jan 17, 2007 6:04 pm

I HAVE FOUND THE SOURCE OF THIS PROBLEM.

When I disable Joomla Core SEF, everything works perfectly. PERFECTLY.

How do you disable the Joomla core SEF??


chanman

Joomla! Apprentice
Joomla! Apprentice
Posts: 15
Joined: Sat Oct 07, 2006 8:18 pm

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by chanman » Wed Jan 24, 2007 2:15 am

u dont’ need to actually

replace the .htaccess with original one.


heltsonika

Joomla! Apprentice
Joomla! Apprentice
Posts: 33
Joined: Sat Oct 01, 2005 7:11 pm

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by heltsonika » Mon Feb 12, 2007 9:00 pm

chanman wrote:
EDIT!

problem was NOT solved by the above.

I HAVE FOUND THE SOURCE OF THIS PROBLEM.

When I disable Joomla Core SEF, everything works perfectly. PERFECTLY.

That doesn’t work for me…

Does anyone know the cause of this problem yet?


User avatar

lcdude

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 178
Joined: Thu Aug 10, 2006 4:27 pm
Location: USA

Re: FAQ:Could this be moved please I posted in the wrong place — thankx

Post

by lcdude » Tue May 01, 2007 12:45 am

Has anyone come up with the REAL cause of this error 1226. I have tried the work arounds and our site stays up about a month and then 1226 again.

I do not want to shut off my SEO core. I am using Artio SEF component — could it be the cause. I am now in a bad situation with 4 joomla sites 2 that are going down daily.

I empty the JOS_SESION table daily in fact I just did it and the site went down in less than 10 mins.

I am a NEWBIE only using joomla a few months. These work arounds are difficult to do. Our HOST is of NO HELP and tells us «Joomla is poorly written software so what do we expect». The fact that it running on millions of site seems to be lost on them.

I could and would surely appreciate some help! :P

ThankxBTW I would be happy to PM you and grant you admin access as this could also be something WE are doing. I just did a search for «error 1226» and we are the first 3. However I did also  note there are a lot of people who can’t login to there «ADMIN» and get no admins setup. This is a common message when the error 1226 is happening. One other intersting note our site will come back online by itself in 15 mins or so. BUT if you do not flush the tables it goes down again.

Also read up on MYSQL and have learned how to to a CHECK and REAPAIR and OPTIMIZE all of which appear to be fine. It says the tables are AOL and uptodate.

One more question please Does 1.5 have this problem?

Update May 1 2007

I just realized that I posted in the wrong area this FAQ not General questions — Sorry! When I searched error 1226 the FAQ post was under mine so I thought I was in the right place. Could this be moved to Greneral Questions?
The reason is the person who answered my questions was CORRECT Artio SEF was the cause. I deleted it and now have LOST all my SEF urls in all the search engines and everyone comin to the site now gets a 404. I need to know how to fix all this (the site no longer crashes error 1226). However as Vanesa Fox of google says /com/view/123/156 or session=id12 url is not going to cut in a sitemap.xml file.

I know I can’t recover whats lost is lost and whats done is done. However other joomla sites have nice friedly urls, so hows it done. I do not want to loose 6 months worth of work. I need some help and some good advice…thankx

Last edited by lcdude on Tue May 01, 2007 10:26 pm, edited 1 time in total.

Lcdude


chanman

Joomla! Apprentice
Joomla! Apprentice
Posts: 15
Joined: Sat Oct 07, 2006 8:18 pm

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by chanman » Tue May 01, 2007 12:48 am

Artio SEF does have a problem .  (I had it, and i had the problem)

solutions:

1. disable Joomla Core SEF
2. uninstall ARTIO SEF
3. replace .htaccess with new one.
4. enable joomla core sef
see if that works

if that doesn’t, then disable your stats.

1226 problem occurs when too many calls to the database are made (and this usually happens with SEF)


User avatar

lcdude

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 178
Joined: Thu Aug 10, 2006 4:27 pm
Location: USA

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by lcdude » Tue May 01, 2007 1:18 am

Ok thanks I give it a shot. BTW I already have stats core off. But we do have the bsqstats component should I delete that one off too. ???

Is there any othe componet or whatever to solve the SEF’s problem. Google is always complaining about session id#’s and joomla is used as there example. I have spent almost all my time trieng to SEO the sites we have. We come up in hte first 10 of google and I like to keep it that way.

Does anyone know if 1.5 has the problem

Once again Joomla Support proves to be FAST and on target!

Update as of 10pm (note how fast support is for Joomla)

This is NOT a great solution our links in Google are now all «page not found».
I tried shuting it down (Artio SEF) and we lose our links. So untill I can find another way to SEF the site I will keep flushing the session table.

Sugestions and Comments are welcome…this is becoming a full time job. The site owner does not want to change host as I just read in another post this seems to be also a problem with «Ipowerweb».

Last edited by lcdude on Tue May 01, 2007 1:58 am, edited 1 time in total.

Lcdude


User avatar

lcdude

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 178
Joined: Thu Aug 10, 2006 4:27 pm
Location: USA

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by lcdude » Tue May 01, 2007 11:21 pm

Chanman

Thank you! You were correct Artio Sef was at fault.

I still need help and requested this be moved to general questions

Thankx

Lcdude


ssimxp

Joomla! Fledgling
Joomla! Fledgling
Posts: 4
Joined: Wed May 23, 2007 12:29 pm

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by ssimxp » Wed May 23, 2007 12:40 pm

i undestand ….how disable? Joomla Core SEF


User avatar

lcdude

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 178
Joined: Thu Aug 10, 2006 4:27 pm
Location: USA

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by lcdude » Wed May 23, 2007 4:14 pm

To disable the CORE SEO login as admin to the backend. On the top menu all the way to the left choose «SITE». When it comes up SEO is on your far right click there to disable. You should also disable stats if your having this problem.

Do a Search for «error 1226» and follow the threads there are some good tips for solving this problem.

What I did was enable debug (Same pace UNDER SITE) and found I had WAY to many inquires to the data base and most of them were Artio SEF. I was advised to switch to OPENSEF which I did.

You should also trim down your site and get rid of any modules, Components, Mambots etc that your not using or could live witout. We had over 250 inquires and now are down to 63. We no longer get the «ERROR 1226».

Also check the JOOMLA Performance section of the forum for advice.

This was an difficult task for us and two well over a week to fix. Take your time and listen the ones who know…joomla.

Good Luck

Lcdude


User avatar

Hils

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 182
Joined: Mon Aug 22, 2005 3:31 pm
Location: Norfolk, UK
Contact:

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by Hils » Fri May 25, 2007 12:04 pm

With reference to the first post in this thread — a quick workaround with no changes to the config file is, in cpanel, vdeck etc, delete the current user and immediately redo it with the same name and same password and set permissions as thought it was a new user. Only takes a couple of seconds.



France

Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Tue Oct 09, 2007 6:34 pm

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by France » Tue Oct 09, 2007 8:51 pm

heltsonika wrote:

chanman wrote:
EDIT!

problem was NOT solved by the above.

I HAVE FOUND THE SOURCE OF THIS PROBLEM.

When I disable Joomla Core SEF, everything works perfectly. PERFECTLY.

That doesn’t work for me…

Does anyone know the cause of this problem yet?

Indeed the cause of the problem is the SEF and the .htaccess file.
I experienced this error after installing ARTIO, and later also with OpenSEF.
I could not even access my admin interface!
By chance I have uploaded the right .htaccess file with the RewriteBase turned off :
  # RewriteBase /

And suddendly I got my site and admin back again!
I think the problem here is the settings of your htaccess file.


khampster

Joomla! Apprentice
Joomla! Apprentice
Posts: 38
Joined: Fri Feb 10, 2006 8:59 pm

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by khampster » Wed Dec 19, 2007 6:48 pm

i have this issue and i have tried to fix my configuration.php file.. my forum works fine now.. its now joomla that is not working.. it tells me that it cannot connect to the database. i tried to log in to the admin page but it wont allow me to do it.. what seems to be the problem now?


poseidon

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 142
Joined: Fri Nov 24, 2006 5:39 pm

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by poseidon » Fri Feb 08, 2008 11:12 am

lcdude wrote:
To disable the CORE SEO login as admin to the backend. On the top menu all the way to the left choose «SITE». When it comes up SEO is on your far right click there to disable. You should also disable stats if your having this problem.

Do a Search for «error 1226» and follow the threads there are some good tips for solving this problem.

What I did was enable debug (Same pace UNDER SITE) and found I had WAY to many inquires to the data base and most of them were Artio SEF. I was advised to switch to OPENSEF which I did.

You should also trim down your site and get rid of any modules, Components, Mambots etc that your not using or could live witout. We had over 250 inquires and now are down to 63. We no longer get the «ERROR 1226».

Also check the JOOMLA Performance section of the forum for advice.

This was an difficult task for us and two well over a week to fix. Take your time and listen the ones who know…joomla.

Good Luck

i don’t serach where is CORE SEO


poseidon

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 142
Joined: Fri Nov 24, 2006 5:39 pm

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by poseidon » Sat Feb 09, 2008 8:35 pm

maverick25 wrote:
FOR SHARED ENVIRONMENTS ONLY

If your site crashed due to this error:

Code: Select all

DB function failed with error number 1226
User 'your_user_name_here' has exceeded the 'max_questions' resource (current value: 50000) SQL=SELECT session_id FROM mos_session WHERE session_id=MD5('1aa637c8e7d13c9be419d455cd6db64c')
SQL =

SELECT session_id FROM mos_session WHERE session_id=MD5('1aa637c8e7d13c9be419d455cd6db64c')

and you are currently hosted on a shared environment (i.e., you are not allowed to edit configuration files for PHP and MySQL or your host provider doesn’t want to increase the max_questions value), here is a quick fix:

  • Go to your account’s control panel (e.g., CPanel, DirectAdmin, vDeck, etc.). Access the MySQL feature and create 2-5 database users with the same password as your db user for Mambo/Joomla. Assign them to the database where your Mambo/Joomla site is.

    Example:
    DB name for Mambo/Joomla — myjoomla_cms
    DB user for Mambo/Joomla — myjoomla_user

    Create additional users for the database:
    2nd DB user for Mambo/Joomla — myjoomla_user1
    3rd DB user for Mambo/Joomla — myjoomla_user2

    Don’t forget to give them the same database privileges as your first Joomla DB user.

  • Then download your configuration.php from the server and open it in any HTML/PHP editor to modify it.

    Look for this line:

Code: Select all

$mosConfig_user = 'myjoomla_user';

Comment out the line above and add these lines below it:

Code: Select all

$mosConfig_users = array("myjoomla_user", "myjoomla_user1", "myjoomla_user2");
$mosConfig_user = $mosConfig_users[array_rand($mosConfig_users)];
  • Explanation: The first line defines the users that can access your database. The second line randomly selects a user from the list on the first line.

    Save the changes and re-upload the file to your server.

but need too config the DB in the configuration.php file


User avatar

mcoblentz

Joomla! Apprentice
Joomla! Apprentice
Posts: 9
Joined: Sun Mar 09, 2008 1:04 am
Location: Bay Area, California
Contact:

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by mcoblentz » Fri Mar 28, 2008 2:03 am

Hello,
I had this problem also. I was able to get this going with the instructions in the thread to modify the configuration.php; thanks.

However, I added the users as suggested in the thread but when I go to the jos_users table, the new administrator users do not appear. What is the issue there? I’m able to log in now and the site works, but it concerns me that the new users are not in the table.

Matt

I’ll try anything once; twice if I like it.


User avatar

mcoblentz

Joomla! Apprentice
Joomla! Apprentice
Posts: 9
Joined: Sun Mar 09, 2008 1:04 am
Location: Bay Area, California
Contact:

Re: FAQ: How to fix DB function failed with error number 1226?

Post

by mcoblentz » Fri Mar 28, 2008 2:04 am

oh, another question: where are these SEO items that the thread refers to? I don’t see anything quite like that in the global configuration screens.

Matt

I’ll try anything once; twice if I like it.



Return to “Submit Your Suggested Tips & Tricks to Docs.joomla.org now please.”


Jump to

  • Joomla! Announcements
  • ↳   Announcements
  • ↳   Announcements Discussions
  • Joomla! 4.x — Ask Support Questions Here
  • ↳   General Questions/New to Joomla! 4.x
  • ↳   Installation Joomla! 4.x
  • ↳   Administration Joomla! 4.x
  • ↳   Migrating and Upgrading to Joomla! 4.x
  • ↳   Extensions for Joomla! 4.x
  • ↳   Security in Joomla! 4.x
  • ↳   Templates for Joomla! 4.x
  • ↳   Search Engine Optimization (Joomla! SEO) in Joomla! 4.x
  • ↳   Language — Joomla! 4.x
  • ↳   Performance — Joomla! 4.x
  • ↳   Joomla! 4.x Coding
  • Joomla! Versions which are End of Life
  • ↳   Joomla! 3.x — End of Life 17 Aug 2023
  • ↳   General Questions/New to Joomla! 3.x
  • ↳   Installation Joomla! 3.x
  • ↳   Joomla! 3.x on IIS webserver
  • ↳   Administration Joomla! 3.x
  • ↳   Access Control List (ACL) in Joomla! 3.x
  • ↳   Migrating and Upgrading to Joomla! 3.x
  • ↳   Security in Joomla! 3.x
  • ↳   Extensions for Joomla! 3.x
  • ↳   Templates for Joomla! 3.x
  • ↳   Search Engine Optimization (Joomla! SEO) in Joomla! 3.x
  • ↳   Language — Joomla! 3.x
  • ↳   Performance — Joomla! 3.x
  • ↳   Joomla! 3.x Coding
  • ↳   Joomla! 2.5 — End of Life 31 Dec 2014
  • ↳   General Questions/New to Joomla! 2.5
  • ↳   Installation Joomla! 2.5
  • ↳   Joomla! 2.5 on IIS webserver
  • ↳   Administration Joomla! 2.5
  • ↳   Access Control List (ACL) in Joomla! 2.5
  • ↳   Migrating and Upgrading to Joomla! 2.5
  • ↳   Security in Joomla! 2.5
  • ↳   Extensions for Joomla! 2.5
  • ↳   Templates for Joomla! 2.5
  • ↳   Search Engine Optimization (Joomla! SEO) in Joomla! 2.5
  • ↳   Language — Joomla! 2.5
  • ↳   Performance — Joomla! 2.5
  • ↳   Joomla! 1.5 — End of Life Sep 2012
  • ↳   General Questions/New to Joomla! 1.5
  • ↳   Installation 1.5
  • ↳   Joomla! 1.5 on IIS webserver
  • ↳   Administration 1.5
  • ↳   Migrating and Upgrading to Joomla! 1.5
  • ↳   Security in Joomla! 1.5
  • ↳   Extensions for Joomla! 1.5
  • ↳   Templates for Joomla! 1.5
  • ↳   Search Engine Optimization (Joomla! SEO) in Joomla! 1.5
  • ↳   Language — Joomla! 1.5
  • ↳   Performance — Joomla! 1.5
  • ↳   Joomla! 1.0 — End of Life 22 July 2009
  • ↳   Installation — 1.0.x
  • ↳   Upgrading — 1.0.x
  • ↳   Security — 1.0.x
  • ↳   3rd Party/Non Joomla! Security Issues
  • ↳   Administration — 1.0.x
  • ↳   Extensions — 1.0.x
  • ↳   Components
  • ↳   Modules
  • ↳   Plugins/Mambots
  • ↳   WYSIWYG Editors — 1.0.x
  • ↳   Integration & Bridges — 1.0.x
  • ↳   phpbb — Joomla! Integration
  • ↳   Templates & CSS — 1.0.x
  • ↳   Language — 1.0.x
  • ↳   Joom!Fish and Multilingual Sites
  • ↳   Performance — 1.0.x
  • ↳   General Questions — 1.0.x
  • Joomla! International Language Support
  • ↳   International Zone
  • ↳   Arabic Forum
  • ↳   تنبيهات هامة
  • ↳   الدروس
  • ↳   4.x جوملا!
  • ↳   جوملا! 1.6/1.7
  • ↳   الأسئلة الشائعة
  • ↳   التثبيت و الترقية
  • ↳   الحماية — و تحسين السرعة والأداء
  • ↳   لوحة التحكم
  • ↳   الإضافات البرمجية
  • ↳   تعريب جوملا! و الإضافات البرمجية
  • ↳   القوالب و التصميم
  • ↳   صداقة محركات البحث
  • ↳   القسم العام
  • ↳   1.5 !جوملا
  • ↳   الأسئلة الشائعة
  • ↳   التثبيت و الترقية
  • ↳   الحماية — و تحسين السرعة والأداء
  • ↳   لوحة التحكم
  • ↳   الإضافات البرمجية
  • ↳   تعريب جوملا! و الإضافات البرمجية
  • ↳   القوالب و التصميم
  • ↳   صداقة محركات البحث
  • ↳   القسم العام
  • ↳   جوملا! 1.0
  • ↳   الأسئلة الشائـعة
  • ↳   التثبيت
  • ↳   لوحة التحكم
  • ↳   الإضافات البرمجية
  • ↳   الإضافات المعرّبة
  • ↳   القوالب و التصميم
  • ↳   الحماية — تحسين السرعة والأداء — صداقة محركات البحث
  • ↳   القسم العام
  • ↳   القسم العام
  • ↳   !عرض موقعك بجوملا
  • ↳   الأرشيف
  • ↳   Bengali Forum
  • ↳   Bosnian Forum
  • ↳   Joomla! 1.5
  • ↳   Instalacija i prvi koraci
  • ↳   Ekstenzije
  • ↳   Templejti
  • ↳   Moduli
  • ↳   Prevodi i dokumentacija
  • ↳   Joomla! 1.7 / Joomla! 1.6
  • ↳   Catalan Forum
  • ↳   Notícies
  • ↳   Temes sobre l’administració
  • ↳   Temes sobre la traducció
  • ↳   Components, mòduls i joombots
  • ↳   Temes de disseny
  • ↳   Webs realitzades amb Joomla!
  • ↳   Offtopics
  • ↳   Chinese Forum
  • ↳   Croatian Forum
  • ↳   Danish Forum
  • ↳   Meddelelser
  • ↳   Joomla! 4.x
  • ↳   Joomla! 3.x (Anbefalet til nye installationer. Nyeste funktionalitet)
  • ↳   Installation, backup, opdatering og flytning — Godt igang
  • ↳   Administration — Generel brug
  • ↳   Komponenter, Moduler og Plugins
  • ↳   Template, CSS og Design
  • ↳   Nethandel, betaling m.m.
  • ↳   Ældre versioner (disse vedligeholdes ikke længere fra officiel side)
  • ↳   Joomla! 2.5 (Supporteres indtil 31. dec. 2014)
  • ↳   Installation, backup, opdatering og flytning — Godt igang
  • ↳   Administration — Generel brug
  • ↳   Komponenter, Moduler og Plugins
  • ↳   Template, CSS og Design
  • ↳   Nethandel, betaling m.m.
  • ↳   Joomla 1.5 (Tidligere langtidssupporteret version indtil sep. 2012)
  • ↳   Installation, backup, opdatering og flytning — Godt igang
  • ↳   Administration — Generel brug
  • ↳   Komponenter, Moduler og Plugins
  • ↳   Template, CSS og Design
  • ↳   Nethandel, betaling m.m.
  • ↳   Joomla 1.0 (Udgået version, der blev afløst af 1.5 i 2008)
  • ↳   Installation, backup, opdatering og flytning — Godt igang
  • ↳   Administration — Generel brug
  • ↳   Komponenter, Moduler og Mambots
  • ↳   Template, CSS og Design
  • ↳   Nethandel, betaling m.m.
  • ↳   Oversættelser (lokalisering)
  • ↳   Joomla brugergrupper i Danmark
  • ↳   JUG Kolding
  • ↳   JUG København
  • ↳   JUG Odense
  • ↳   JUG Århus
  • ↳   JUG Sorø
  • ↳   Kommerciel (betalt) hjælp ønskes
  • ↳   SEO
  • ↳   FAQ — Dokumentation og vejledninger
  • ↳   Vis dit websted
  • ↳   Afviste ‘Vis dit websted’ indlæg
  • ↳   Diverse (Off topic)
  • ↳   Dutch Forum
  • ↳   Aankondigingen
  • ↳   Algemene vragen
  • ↳   Joomla! 4.x
  • ↳   Joomla! 3.x
  • ↳   Installatie 3.x
  • ↳   Extensies 3.x
  • ↳   Templates 3.x
  • ↳   Joomla! 2.5
  • ↳   Installatie 2.5
  • ↳   Componenten 2.5
  • ↳   Modules 2.5
  • ↳   Plugins 2.5
  • ↳   Templates 2.5
  • ↳   Joomla! 1.5
  • ↳   Installatie
  • ↳   Componenten
  • ↳   Modules
  • ↳   Plugins
  • ↳   Templates
  • ↳   Joomla! 1.0
  • ↳   Installatie 1.0.x
  • ↳   Componenten 1.0.x
  • ↳   Modules 1.0.x
  • ↳   Mambots 1.0.x
  • ↳   Templates 1.0.x
  • ↳   Vertalingen
  • ↳   Offtopic
  • ↳   Show jouw website
  • ↳   Filipino Forum
  • ↳   International Support Center
  • ↳   Pinoy General Discussion & Archives
  • ↳   Site Showcase
  • ↳   Events
  • ↳   Design Tips and Tricks
  • ↳   Tsismis Zone
  • ↳   Pinoy Translation Zone
  • ↳   Pinoy Forum Archives
  • ↳   Joomla! Philippines Local Forum www.joomla.org.ph
  • ↳   Finnish Forum
  • ↳   French Forum
  • ↳   Les annonces!
  • ↳   Le bistrot!
  • ↳   L’expo!
  • ↳   J! 4.x — L’atelier!
  • ↳   J! 3.x — L’atelier!
  • ↳   3.x — Questions générales, nouvel utilisateur
  • ↳   3.x — Installation, migration et mise à jour
  • ↳   3.x — Sécurité et performances
  • ↳   3.x — Extensions tierce partie
  • ↳   3.x — Templates et design
  • ↳   3.x — Développement
  • ↳   3.x — Ressources
  • ↳   J! 2.5.x — L’atelier!
  • ↳   2.5 — Questions générales
  • ↳   2.5 — Installation, migration et mise à jour
  • ↳   2.5 — Sécurité et performances
  • ↳   2.5 — Extensions tierce partie
  • ↳   2.5 — Templates et design
  • ↳   2.5 — Développement
  • ↳   2.5 — Ressources
  • ↳   J! 1.5.x — L’atelier!
  • ↳   1.5 — Questions générales
  • ↳   1.5 — Installation, migration et mise à jour
  • ↳   1.5 — Sécurité et performances
  • ↳   1.5 — Extensions tierce partie
  • ↳   1.5 — Templates et design
  • ↳   1.5 — Développement
  • ↳   1.5 — Ressources
  • ↳   J! 1.0.x — L’atelier!
  • ↳   1.0 — Questions générales
  • ↳   1.0 — Installation et mise à jour
  • ↳   1.0 — Sécurité
  • ↳   1.0 — Extensions tierce partie
  • ↳   1.0 — Templates et design
  • ↳   1.0 — Développement
  • ↳   1.0 — Ressources
  • ↳   Besoin d’un professionel ?
  • ↳   Extensions Open Source pour Joomla!
  • ↳   German Forum
  • ↳   Ankündigungen
  • ↳   Joomla! 4.x
  • ↳   Joomla! 3.x
  • ↳   Allgemeine Fragen
  • ↳   Installation und erste Schritte
  • ↳   Komponenten, Module, Plugins
  • ↳   Template, CSS und Designfragen
  • ↳   Entwicklerforum
  • ↳   Zeige Deine Webseite
  • ↳   Joomla! 2.5
  • ↳   Allgemeine Fragen
  • ↳   Installation und erste Schritte
  • ↳   Komponenten, Module, Plugins
  • ↳   Template, CSS und Designfragen
  • ↳   Entwicklerforum
  • ↳   Zeige Deine Webseite
  • ↳   Joomla! 1.5
  • ↳   Allgemeine Fragen
  • ↳   Installation und erste Schritte
  • ↳   Komponenten, Module, Plugins
  • ↳   Template, CSS und Designfragen
  • ↳   Entwicklerforum
  • ↳   Zeige Deine Webseite
  • ↳   Professioneller Service
  • ↳   Sonstiges (Offtopic)
  • ↳   Archiv
  • ↳   Joomla! 1.0
  • ↳   Allgemeine Fragen 1.0.x
  • ↳   Installation und erste Schritte 1.0.x
  • ↳   Komponenten, Module, Mambots 1.0.x
  • ↳   Template, CSS und Designfragen 1.0.x
  • ↳   Entwicklerforum 1.0.x
  • ↳   Zeige Deine Webseite 1.0.x
  • ↳   Greek Forum
  • ↳   Joomla! 4.x
  • ↳   Joomla! 3.x
  • ↳   Joomla! 2.5.x
  • ↳   Joomla! 1.5.x
  • ↳   Joomla! 1.0.x
  • ↳   Hebrew Forum
  • ↳   Indic Languages Forum
  • ↳   Indonesian Forum
  • ↳   FAQ
  • ↳   Bantuan
  • ↳   Komponen
  • ↳   Modul
  • ↳   Template
  • ↳   Diskusi
  • ↳   Italian Forum
  • ↳   Guide
  • ↳   Traduzioni
  • ↳   Componenti — Moduli — Plugins
  • ↳   Template — Grafica
  • ↳   Notizie
  • ↳   Prodotti Open Source per Joomla!
  • ↳   Richieste professionali
  • ↳   Joomla! 4.x
  • ↳   Joomla! 3.x
  • ↳   Joomla! 2.5.x
  • ↳   Joomla! 1.x
  • ↳   Latvian Forum
  • ↳   Lithuanian Forum
  • ↳   Joomla! 4.x
  • ↳   Joomla! 1.5
  • ↳   Joomla! 1.7 / Joomla! 1.6
  • ↳   Joomla! 1.0
  • ↳   Vertimai ir Kalba
  • ↳   Malaysian Forum
  • ↳   Solved
  • ↳   Norwegian Forum
  • ↳   Informasjon
  • ↳   Arkiverte annonseringer
  • ↳   FAQ — Ofte spurte spørsmål
  • ↳   Arkiv
  • ↳   Joomla! 4.x
  • ↳   Joomla! 3.x
  • ↳   Administrasjon/installasjon
  • ↳   Migrering/Oppdatering
  • ↳   Template, CSS og design
  • ↳   Komponenter/moduler/programutvidelser
  • ↳   Sikkerhet
  • ↳   Generelt
  • ↳   Netthandel, betaling m.m.
  • ↳   VirtueMart
  • ↳   Andre nettbutikkløsninger
  • ↳   Generelt
  • ↳   Oversettelser
  • ↳   Fremvisning av sider (Show off)
  • ↳   Avviste fremvisninger
  • ↳   Diverse (off topic)
  • ↳   Kommersiell hjelp ønskes
  • ↳   Eldre versjoner av Joomla!
  • ↳   Joomla! 1.0
  • ↳   Administrasjon/installasjon
  • ↳   Template, CSS og design
  • ↳   Komponenter/moduler/mambots
  • ↳   Sikkerhet
  • ↳   Generelt
  • ↳   Joomla! 1.5
  • ↳   Administrasjon/installasjon
  • ↳   Migrering/Oppdatering
  • ↳   Template, CSS og design
  • ↳   Komponenter/moduler/programutvidelser
  • ↳   Sikkerhet
  • ↳   Generelt
  • ↳   Joomla! 2.5
  • ↳   Administrasjon/installasjon
  • ↳   Migrering/Oppdatering
  • ↳   Template, CSS og design
  • ↳   Komponenter/moduler/programutvidelser
  • ↳   Sikkerhet
  • ↳   Generelt
  • ↳   Persian Forum
  • ↳   قالب ها
  • ↳   مدیریت
  • ↳   سوالهای عمومی
  • ↳   نصب
  • ↳   مامبوت ها
  • ↳   ماژولها
  • ↳   کامپوننت ها
  • ↳   Polish Forum
  • ↳   Instalacja i aktualizacja
  • ↳   Administracja
  • ↳   Komponenty, moduły, wtyczki
  • ↳   Szablony
  • ↳   Paczta i Podziwiajta
  • ↳   Modyfikacje i własne rozwiązania
  • ↳   Tłumaczenia
  • ↳   FAQ
  • ↳   Tips&Tricks
  • ↳   Dokumentacja
  • ↳   Profesjonalne usługi
  • ↳   Portuguese Forum
  • ↳   Componentes, módulos e mambots
  • ↳   Programação e desenvolvimento
  • ↳   Segurança
  • ↳   Sites dos usuários
  • ↳   Off-topic
  • ↳   Tradução
  • ↳   Templates
  • ↳   Romanian Forum
  • ↳   Traduceri
  • ↳   Russian Forum
  • ↳   Объявления по Joomla!
  • ↳   Безопасность Joomla!
  • ↳   Joomla 4.x — Задайте здесь свой вопрос по поддержке
  • ↳   Joomla 3.x — Задайте здесь свой вопрос по поддержке
  • ↳   Общие вопросы/Новичок в Joomla! 3.x
  • ↳   Установка Joomla! 3.x
  • ↳   Миграция и переход на Joomla! 3.x
  • ↳   Расширения для Joomla! 3.x
  • ↳   Многоязычные веб-сайты на Joomla 3.x
  • ↳   Joomla 2.5 — Задайте здесь свой вопрос по поддержке
  • ↳   Общие вопросы/Новичок в Joomla! 2.5
  • ↳   Установка Joomla! 2.5
  • ↳   Расширения для Joomla! 2.5
  • ↳   Русский язык Joomla! 2.5
  • ↳   Serbian/Montenegrin Forum
  • ↳   Tehnička pitanja
  • ↳   Instalacija i početnička pitanja
  • ↳   Šabloni
  • ↳   Prevod i dokumentacija
  • ↳   Ćaskanje
  • ↳   Bezbednost
  • ↳   Joomla! dodaci
  • ↳   Pravna pitanja
  • ↳   Arhiva
  • ↳   Joomla! Događaji i Zajednica
  • ↳   Izlog (spisak) sajtova radjenih u Joomla! CMS-u
  • ↳   Profesionalne usluge
  • ↳   Slovak Forum
  • ↳   Spanish Forum
  • ↳   Joomla! 4.x
  • ↳   Joomla! 3.x
  • ↳   Migración y actualización a Joomla 3.x
  • ↳   Versiones de Joomla! obsoletas
  • ↳   Joomla! 2.5
  • ↳   Joomla! 1.5
  • ↳   Extensiones
  • ↳   Plantillas (templates) y diseño
  • ↳   Idioma y traducciones
  • ↳   SEO para Joomla!
  • ↳   Seguridad y rendimiento
  • ↳   Productos de Código Abierto para Joomla!
  • ↳   Servicios profesionales
  • ↳   Salón de la comunidad Ñ
  • ↳   Swedish Forum
  • ↳   Meddelanden
  • ↳   Forum Joomla! 4.x
  • ↳   Forum Joomla! 3.x
  • ↳   Allmänna frågor
  • ↳   Användning och administration
  • ↳   Installation, backup och säkerhet
  • ↳   Komponenter, moduler och plugin
  • ↳   Mallar (templates) och design
  • ↳   Äldre versioner
  • ↳   Forum Joomla! 1.0
  • ↳   Allmänna frågor
  • ↳   Användning och administration
  • ↳   Installation, backup och säkerhet
  • ↳   Komponenter, moduler och Mambots
  • ↳   Mallar (templates) och design
  • ↳   Forum Joomla! 1.7 / Joomla! 1.6
  • ↳   Allmänna frågor
  • ↳   Användning och administration
  • ↳   Installation, backup och säkerhet
  • ↳   Komponenter, moduler och plugin
  • ↳   Mallar (templates) och design
  • ↳   Forum Joomla! 1.5
  • ↳   Allmänna frågor
  • ↳   Användning och administration
  • ↳   Installation, backup och säkerhet
  • ↳   Komponenter, moduler och plugin
  • ↳   Mallar (templates) och design
  • ↳   Forum Joomla! 2.5
  • ↳   Allmänna frågor
  • ↳   Användning och administration
  • ↳   Installation, backup och säkerhet
  • ↳   Komponenter, moduler och plugin
  • ↳   Mallar (templates) och design
  • ↳   Översättning
  • ↳   Webbplatser gjorda i Joomla
  • ↳   Webbplatser J! 3.x
  • ↳   Webbplatser J! 2.5
  • ↳   Webbplatser Joomla! 1.7 / Joomla! 1.6
  • ↳   Webbplatser J! 1.5
  • ↳   Webbplatser J! 1.0
  • ↳   Kommersiell hjälp önskas
  • ↳   Diverse (off topic)
  • ↳   Tamil Forum
  • ↳   Thai Forum
  • ↳   โชว์เว็บไซต์ของคุณที่สร้างด้วยจูมล่า
  • ↳   เคล็ดลับการใช้งานส่วนต่างๆ เกี่ยวกับจ&#
  • ↳   คอมโพเน้นท์ โมดูล ปลักอิน ต่างๆ ที่ติดตั
  • ↳   อับเดดข่าวสารเกี่ยวกับจูมล่าลายไทย
  • ↳   Turkish Forum
  • ↳   Duyurular
  • ↳   Dersler
  • ↳   Genel Sorular
  • ↳   Bileşen, Modül, Bot
  • ↳   Eklenti Haberleri
  • ↳   Temalar
  • ↳   Vietnamese Forum
  • ↳   Gặp gỡ và giao lưu
  • ↳   Joomla Tiếng Việt
  • ↳   Cài đặt — Cấu hình
  • ↳   Thành phần mở rộng cho Joomla!
  • ↳   Hỏi đáp Joomla! 3.x
  • ↳   Hỏi đáp Joomla! 2.5
  • ↳   Hỗ trợ kỹ thuật
  • ↳   Bài viết cũ
  • ↳   Thiết kế Template
  • ↳   Joomla! 1.5
  • ↳   Hỏi đáp Joomla! 4.x
  • ↳   Welsh Forum
  • Other Forums
  • ↳   Open Source Products for Joomla!
  • ↳   The Lounge
  • ↳   Forum Post Assistant (FPA)
  • Joomla! Development Forums
  • Joomla! Official Sites & Infrastructure
  • ↳   docs.joomla.org — Feedback/Information
  • ↳   extensions.joomla.org — Feedback/Information
  • ↳   joomla.com — Feedback/Information
  • ↳   Sites & Infrastructure — Feedback/Information
  • ↳   Archived Boards — All boards closed
  • ↳   Design and Accessibility — Archived
  • ↳   Quality and Testing — Locked and Archived
  • ↳   Joomla! 1.0.x_Q&T
  • ↳   Q&T 1.0.x Resolved
  • ↳   Known Issues
  • ↳   Superseded Issues
  • ↳   Archive
  • ↳   Q&T 1.0.x Resolved — Archived
  • ↳   Known Issues — Archive
  • ↳   Superseded Issues — Archive
  • ↳   Joomla! 3.x Bug Reporting
  • ↳   Third Party Testing for Joomla! 1.5
  • ↳   Q&T 1.5.x Resolved
  • ↳   Joomla! 1.5 BETA
  • ↳   Joomla! 1.5 BETA 2
  • ↳   Reaction to the ‘Letter to the community’
  • ↳   Reaction to New Project Name
  • ↳   Logo Competition
  • ↳   Humor, Fun and Games
  • ↳   Libraries
  • ↳   patTemplate
  • ↳   com_connector — Multi Joomla Bridge
  • ↳   CiviCRM Support
  • ↳   CiviCRM Installation Issues
  • ↳   FAQ Archive
  • ↳   FAQ Discussion Board
  • ↳   3rd Party Extensions FAQ
  • ↳   FAQs not moved
  • ↳   3rd Party/Non Joomla! Security FAQ
  • ↳   Joomla! Coding 101
  • ↳   Joombie Tools of the Trade
  • ↳   Joombie Coding Q/A
  • ↳   Joombie Think Tank
  • ↳   Joombie Developer Lab
  • ↳   Joomla Forge — Archived
  • ↳   Non-Profit Organizations and Joomla!
  • ↳   Schools and Universities
  • ↳   Bangsamoro Forum
  • ↳   Joomla! 1.5 Template Contest
  • ↳   SMF — Simplemachines.org Forum
  • ↳   GPL Discussion
  • ↳   Security Announcements — Old
  • ↳   Tips & Tricks — Moving
  • ↳   Submit Your Suggested Tips & Tricks to Docs.joomla.org now please.
  • ↳   Google Summer of Code and GHOP
  • ↳   Google Summer of Code 2008
  • ↳   Proposed projects
  • ↳   Student area
  • ↳   Past Google Summer of Code Editions
  • ↳   Google’s Highly Open Participation Contest
  • ↳   Documentation
  • ↳   Suggestions, Modifications, and Corrections
  • ↳   Archive
  • ↳   1.5 Archive
  • ↳   Suggestions, Modifications & Corrections
  • ↳   Submit
  • ↳   Feedback and Suggestions
  • ↳   Applications for participation in the Development Workgroup
  • ↳   Development
  • ↳   1.5 Site Showcase — Archived
  • ↳   1.0 x Site Showcase — Archived.
  • ↳   Feature Requests — White Papers — Archived
  • ↳   Under Review — Archived
  • ↳   Accepted — Archived
  • ↳   Not Accepted — Archived
  • ↳   Wishlists and Feature Requests — Archive
  • ↳   Wishlist Archives — Archived
  • ↳   Spanish Forum — Archive
  • ↳   Papelera
  • ↳   Tutoriales
  • ↳   General
  • ↳   Salón de la Joomlaesfera hispanohablante
  • ↳   Danish Forum — Archive
  • ↳   Diskussion af Meddelelser + Sikkerhedsmeddelelser + FAQ
  • ↳   Shop.Joomla.org
  • ↳   Joomla! 1.6 RC Support [closed]
  • ↳   Joomla! 1.0 Coding
  • ↳   Core Hacks and Patches
  • ↳   Joomla! 2.5 Beta Support
  • ↳   People.joomla.org — Feedback/Information
  • ↳   Joomla! 1.5 Bug Reporting
  • ↳   Joomla! 1.5 Coding
  • ↳   Joomla! 3 Beta Support
  • ↳   Trending Topics
  • ↳   Help wanted in the community
  • ↳   templates.joomla.org — Feedback/Information
  • ↳   Certification
  • ↳   Albanian Forum
  • ↳   Azeri Forum
  • ↳   Urdu Forum
  • ↳   Basque Forum
  • ↳   Itzulpenaren inguruan
  • ↳   Laguntza teknikoa
  • ↳   Belarusian Forum
  • ↳   Maltese Forum
  • ↳   Hungarian Forum
  • ↳   Slovenian Forum
  • ↳   Japanese Forum
  • ↳   Khmer Forum
  • ↳   ពិពណ៌​ស្ថាន​បណ្ដាញ​ជុំឡា
  • ↳   ជុំឡា​ខ្មែរ​មូលដ្ឋានីយកម្ម
  • ↳   Community Blog Discussions
  • ↳   JoomlaCode.org
  • ↳   Joomla! Marketing and PR Team
  • ↳   resources.joomla.org — Feedback/Information
  • ↳   Training.Joomla.org
  • ↳   OpenSourceMatters.org
  • ↳   magazine.joomla.org — Feedback/Information
  • ↳   Site Showcase
  • ↳   Joomla! 4 Related
  • ↳   Joomla! Events
  • ↳   Joomla! Ideas Forum
  • ↳   Registered Joomla! User Groups
  • ↳   Joomla! 2.5 Coding
  • ↳   Joomla! 2.5 Bug Reporting
  • ↳   User eXperience (UX)
  • ↳   Joomla! Working Groups
  • ↳   Translations

Понравилась статья? Поделить с друзьями:
  • Mysql ошибка 121
  • Mysql ошибка 1146 как исправить
  • Mtco handling ивеко стралис ошибка
  • Mysql ошибка 1101
  • Mysql ошибка 1067 процесс был неожиданно завершен