Please also see the following stack over flow issue.
it is related to them
Now here is solution :
Remove the files of the bad theme and clear the cache. After clearing the cache you will be able to login again.
Ana zorluk oturum açmanız olmadan önbelleğini temizlemek zorunda olduğunu
Try one of the methods for clearing the cache described in
Clearing Drupal's cache
O zaman bu bir deneyin değil IF:
Eğer drush varsa, türüne komut olacaktır
drush vset theme_default garland
Komut satırında veya bir yönetim arabirimi üzerinden (örn: phpMyAdmin) aşağıdaki sorguyu girin
UPDATE system SET status=1 WHERE name = 'garland';
Sonra da:
UPDATE variable SET value='s:7:"garland"' WHERE name = 'theme_default';
TRUNCATE cache;
TRUNCATE cache_bootstrap;
TRUNCATE cache_block;
Note that 's:7' refers to the length of the following string. Modify as needed. This is database surgery, tricky stuff.
OR
If you are using per-user themes, and you've just messed it up for yourself as admin, try
UPDATE users SET theme='garland' WHERE uid = '1';
Sadece kötü olarak yanlış dalaşamaz şeyleri bu satırların ya kalkarken gibi, dikkatli olun.
Şerefe!
Mudassar Ali