Quote:
Originally Posted by mc2w
http://wiflba.com/forum/showthread.php?t=11
For some threads it doesn't happen, but it's happening in this one (which you can see if you try to quote it) (I'll unlock the post so you can try if you'd like)
Edit: Here's an update on the problem: The problem only occurs if there's a link that cannot be parsed (e.g. one in a code tag or one with embedding disabled)
|
I can't duplicate this, can you provide screen shots or a test account for your site?
Quote:
Originally Posted by popular
ive tried reinstalling , taking out youtube before i added it again so it isn't duplicate but same thing happens heres the full code i get whenever i try to post youtube it just pastes this in my post instead, any idea why? i just checked it and happens with other sites too , is my forum not allowing bbcode or something?
|
I have come across this only once before and it took hours for me to find the problem. If indeed it is the same anomoly It is some kind of variable caching that is causing AME's processes to get mixed up. TO resolve it, try this and let me know (note that you will need to do this for future upgrades unless I can find a way around it)
Both changes are to the includes/ame_bbcode.php file.
Change 1:
around line 45 Find:
PHP Code:
if ($refresh)
{
$inied = false;
}
replace with:
PHP Code:
if ($refresh)
{
$inied = false;
$ameinfo = array();
}
around line 296 find:
PHP Code:
$ameinfo = fetch_full_ameinfo(true);
replace with:
PHP Code:
$ameinfo = fetch_full_ameinfo(true, true);
HTHs