I wonder if there is a simple way to check if user is logged in without have to load entire wp core.
I'm working on a flash aplication that give some extra options to users who are logged in on my wordpress blog. To check that, the flash send POST and get a XML which says if user is logged in or not.
I'd like to load this XML fastest as possible. But to load entire wp core takes several seconds.
I found out that the constant SHORTINIT is suppose to load only the main core, but setting it to true I can't use get_currentuserinfo() anymore.
I'm wondering if someone has even tried to check the user credentials without have to load the core.