
I just don't see it as a disabled mod in the ACP -> Customise -> Manage Extensions. It's strange, I've tried adding other unofficial mods and none of them will show as a disabled mod. I don't get what I'm doing wrong? All of the official ones appear instantly but I've had no success with anything else.moviehive wrote:Is there an admin interface or is it just the new BBcodes it's added?
That's not what I meant. The problem is, I'm not seeing the option to enable the mod - as in it doesn't appear as disabled in the first place. It's not an issue with the mod though I doubt, as it's happening with all other unofficial mods. That's the part that makes no sense though, I'll probably make a topic in the support forum... I don't know.moviehive wrote:I see there is a new setting in the BBcode page. Click one of the BBcodes in the admin panel BBcode page and click edit. You'll see an option where you can select which user groups can use it.
And with the buttons they show up fine in the BBcode editor in new post/new topic full pages.
Read the install instructions in the first post.lukiaensyl wrote:That's not what I meant. The problem is, I'm not seeing the option to enable the mod - as in it doesn't appear as disabled in the first place. It's not an issue with the mod though I doubt, as it's happening with all other unofficial mods. That's the part that makes no sense though, I'll probably make a topic in the support forum... I don't know.moviehive wrote:I see there is a new setting in the BBcode page. Click one of the BBcodes in the admin panel BBcode page and click edit. You'll see an option where you can select which user groups can use it.
And with the buttons they show up fine in the BBcode editor in new post/new topic full pages.
wrong path, it should be phpbb/ext/vse/abbc3lukiaensyl wrote:I'm not seeing it in the ACP once the folder has been placed in the correct location, /ext/phpbb/vse/abbc3? I also tried /ext/phpbb/abbc3 and still nothing. I'm sure it's most likely something little that I've missed. The official extensions have shown up instantly, strange. Any ideas? Thanks in advanced!
[hr]
?[hr][/hr]
You can create your ownM.O.B. wrote:Any quick fix for missing[hr]
?
Maybe a mysql run where we can replace it in the database. I have lots of posts that used that bbcode.
I don't want to get rid of it. Perhaps add a new one in BBcode to like:[hr][/hr]
I still haven't figured out the HTML code for it, but perhaps need help with fixing all of them on my database?
[hr][/hr]
bbcode that just adds <hr />
but no, no fix for the old way because it was wrong in ABBC 3.0, it wasn't a real bbcode (notice it doesn't have a close tag) so it is dead as far as upgrading to 3.1 will be concerned.[hr]
in post_text
.Code: Select all
update phpbb_posts set post_text = replace(post_text, '[hr]', '[hr][/hr]')
Code: Select all
[hr:xrmm7gbv]
Disclaimer: I don't recommend you try to do what you are doing, and hold no responsibility for what happens as a result of what I'm about to say.M.O.B. wrote:I'd like to run a database query will it will find and replace[hr]
inpost_text
.
SQL Query:But I opened one post where it has it. But can't figure out why it has a certain code after it.Code: Select all
update phpbb_posts set post_text = replace(post_text, '[hr]', '[hr][/hr]')
Do you have any suggestions how I can make this work?Code: Select all
[hr:xrmm7gbv]
[hr:xrmm7gbv][/hr:xrmm7gbv]
and then restore the new sql dump file back to the db and see what that does. Make a duplicate of your db and try it out on that first to see if it is successful, before trying it for real. A real text editor will also let you use regex/grep in the find/replace so you don't have to worry about those bbcode id codes, like find \[hr:([^\]]+)\]
and replace with [hr:\1][/hr:\1]
Code: Select all
UPDATE phpbb_posts
SET post_text = REPLACE(
post_text,
CONCAT('[hr:', bbcode_uid, ']'),
CONCAT('[hr:', bbcode_uid, '][/hr:', bbcode_uid, ']')
)
WHERE post_text LIKE '%[hr:%'