Using the latest CVS version.
Trying to access RSS/atom feeds throws a 404 error.
/skins/_rss2/ & /skins/_atom/ exist and are readable.
Tried to access via
/index.php?blog=6&tempskin=_rss2
/xmslsrv/rss2.php?blog=6
/noticias/?tempskin=_rss2
Enable debug mode in /conf/_advanced.php and get the following:
MySQL error!
Variable 'sql_mode' can't be set to the value of 'TRADITIONAL'(Errno=1231)
Your query:
SET sql_mode = "TRADITIONAL"
Let's see what MySQL says:
mysql> select @@version;
+----------------------+
| @@version |
+---------------------+
| 4.1.22-standard |
+----------------------+
1 row in set (0.00 sec)
mysql> select @@sql_mode;
+------------+
| @@sql_mode |
+------------+
| |
+------------+
1 row in set (0.00 sec)
i.e. sql_mode is empty.
Anything else you want to know?
Other than that, everything seems to be working fine.
This should cure your mysql error and hopefully let you see what's causing your feed error
¥