Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#46 2016-10-03 15:50:40
- uli
- Moderator

- From: Cologne
- Registered: 2006-08-15
- Posts: 4,316
Re: Plugins broken in 4.6
In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links
Offline
#47 2016-10-04 11:14:56
- ENB
- New Member
- Registered: 2016-10-04
- Posts: 5
Re: Plugins broken in 4.6
tru_tags is broken at 4.6v (mysqli)
Offline
#48 2016-12-02 19:16:34
- uli
- Moderator

- From: Cologne
- Registered: 2006-08-15
- Posts: 4,316
Re: Plugins broken in 4.6
I’ve just harvested the forums for those postings offering schematic solutions for fixing misbehaving/broken plugins in 4.6+ and set up a small link list. Did I overlook anything?
In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links
Offline
Re: Plugins broken in 4.6
ENB wrote #301946:
tru_tags is broken at 4.6v (mysqli)
A couple of fixes have been made to this since and incorporated by nathan, the plugin author: see the github repo.
uli wrote #303132:
schematic solutions for fixing misbehaving/broken plugins in 4.6+: small link list.
Good idea. Thank you!
TXP Builders – finely-crafted code, design and txp
Offline
Re: Plugins broken in 4.6
cbe_frontauth 0.97 gave me a unregistered_tag error in debug mode on a site just updated to 4.6.2.
The error goes away first by adding the following at the top of the plugin code:
if (class_exists('\Textpattern\Tag\Registry')) {
Txp::get('\Textpattern\Tag\Registry')
->register('cbe_frontauth')
->register('cbe_frontauth_backend')
->register('cbe_frontauth_box')
->register ('cbe_frontauth_if_connected')
->register('cbe_frontauth_invite')
->register('cbe_frontauth_edit_article')
->register('cbe_frontauth_label')
->register('cbe_frontauth_link')
->register('cbe_frontauth_if_logged')
->register('cbe_frontauth_login')
->register('cbe_frontauth_loginwith')
->register('cbe_frontauth_logname')
->register('cbe_frontauth_logout')
->register('cbe_frontauth_password')
->register('cbe_frontauth_protect')
->register('cbe_frontauth_redirect')
->register('cbe_frontauth_reset')
->register('cbe_frontauth_stay')
->register('cbe_frontauth_submit')
->register('cbe_frontauth_whois')
;
}
EDIT: However, it takes a while until that EDIT box appears, although i am logged in. Upon trying to edit that article i get multiple popups saying
User_Error "'' is not an integer". twice
then
User_Error "Incorrect parameter count in the call to native function 'FROM_UNIXTIME'".
then the whole round again.
Apparently somehow the article ID doesn’t seem to make it into the link and i end up with an empty article write window in the backend.
Hmmm. I’m gonna copy this post into the cbe_frontauth plugin thread…
Last edited by jayrope (2017-11-02 00:49:58)
A hole turned upside down is a dome, when there’s also gravity.
Offline