so here's my problem: I'm trying to enable the FEDERATED storage engine in mysql on MAC (Lion). In phpmyadmin I have this message:
This MySQL server does not support the FEDERATED storage engine. There is no detailed status information available for this storage engine.
So I've googled a lot and I found out this solution: adding the variable "federated" in the my.cnf file under the [mysqld], which I did through the terminal (logging in as root etc...). I restarted the server but nothing happened.
If I open the my.cnf file I'm seeing
[mysqld]
#skip-networking
skip-innodb
user = mysql
pid-file = __PREFIX/var/run/mysqld/mysqld.pid
socket = __PREFIX/var/run/mysqld/mysqld.sock
port = 3306
log = __PREFIX/var/log/mysql/mysql.log
basedir = __PREFIX
datadir = __PREFIX/var/db/mysql
tmpdir = /tmp
language = __PREFIX/share/mysql/english
skip-locking
set-variable = key_buffer=16M
set-variable = max_allowed_packet=1M
set-variable = thread_stack=128K
federated
I'm sure I'm missing something here...