MyBB Community Forums

Full Version: Some small bugs i think
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Okay here are some small issues maybe not bugs but some thing i think should be done for the next version.

1)

When you have the cache/theme folder chmodded as 755 the forum still wants to get the css from the theme folder and not the database (forum installed using the cache/theme as 777 then changed to 755)

2)

When your forum is using the database css and then go to file css say some thing gos wrong and the files go missing or get delete by going to the forum it stuff the style of the forum i think a easy fix would be to make it remakes the file css if its not found.

3)

Say the table datacache gets corrupted and you lose all the rows with in the tables when going to the forum it only rebuilds some one the rows and not all of them making the hole forum stuff up and you can not manly rebuild them as the bits are missing from the admincp.

a fix maybe have if the datacache rows are not found do

$cache->update_version();
$cache->update_attachtypes();
$cache->update_smilies();
$cache->update_badwords();
$cache->update_usergroups();
$cache->update_forumpermissions();
$cache->update_stats();
$cache->update_moderators();
$cache->update_forums();
$cache->update_usertitles();
$cache->update_reportedposts();
$cache->update_mycode();
$cache->update_posticons();
$cache->update_update_check();
$cache->update_tasks();
$cache->update_spiders();
$cache->update_bannedips();
$cache->update_banned();
$cache->update_birthdays();
$cache->update_most_replied_threads();
$cache->update_most_viewed_threads();


or some thing like that.
These aren't bugs - Moving to suggestions and feedback.