Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Re: [plugin] [ORPHAN] peg_nested_comments
Sorry, I have forgotten about jQuery, it works now, please test.
Offline
#77 2015-10-07 21:44:25
- alivato
- Member

- Registered: 2011-03-31
- Posts: 152
Re: [plugin] [ORPHAN] peg_nested_comments
Wow, I deleted the reference to jQuery accident a few days ago.
Good)
————-
Rating ip?
Time(days) is not counted?
Offline
Offline
#79 2015-10-07 22:12:50
- alivato
- Member

- Registered: 2011-03-31
- Posts: 152
Re: [plugin] [ORPHAN] peg_nested_comments
After refresh the site, I can once again vote for the same article…
Offline
Offline
#81 2017-04-07 07:29:08
- BernieO
- New Member
- Registered: 2017-04-07
- Posts: 1
Re: [plugin] [ORPHAN] peg_nested_comments
Is this plugin compatible with textpattern 4.6.2? I did install it, but couldn’t get it to work with the installation instructions provided on github.com/bloatware/peg_nested_comments
Any help is really appreciated.
Best wishes, BernieO
Offline
Offline
Re: [plugin] [ORPHAN] peg_nested_comments
I am trying to uninstall ver 0.2.5 from Textpattern 4.5.7. This is the message I get upon deleting from Plugin tab:
Fatal error: Class ‘Txp’ not found in /home/mhd-01/www.mindfulnessbergamo.net/htdocs/textpattern/lib/txplib_misc.php(615) : eval()’d code on line 1
How can I complete uninstall?
Thanks.
Offline
Re: [plugin] [ORPHAN] peg_nested_comments
gilibaus wrote #305782:
How can I complete uninstall?
I can’t reproduce on 4.6 so there could be something wrong anywhere else but If the plugin is still there on a fresh plugins page and you want to force the deletion, you should do it via the db (usually with phpMyAdmin); after removing the plugin row in the txp_plugin table, you’ll also need to remove the peg_children column in the txp_discuss table.
Offline
Re: [plugin] [ORPHAN] peg_nested_comments
NicolasGraph wrote #305785:
you should do it via the db (usually with phpMyAdmin); after removing the plugin row in the
txp_plugintable, you’ll also need to remove thepeg_childrencolumn in thetxp_discusstable.
Thank you. The same error had appeared upon install. That’s probably why I could not find a peg_children column in the txp_discuss table. My guess is that the installation process had probably aborted before writing that database table.
Offline
Re: [plugin] [ORPHAN] peg_nested_comments
gilibaus wrote #305786:
My guess is that the installation process had probably aborted before writing that database table.
Probably.
I think the error comes from the tags registering; it was added in the last compiled file and it calls a class which does not exist before Txp 4.6. without testing it.
You can wrap the related code like so to test if the class does exist:
+ if (class_exists('\Textpattern\Tag\Registry')) {
Txp::get('\Textpattern\Tag\Registry')->register('peg_comments')
->register('peg_reply_to')
->register('peg_reply_link');
+ }
…or you can remove this code but it should be updated if you use 4.6+ in the future.
I’m not sure if there are any other differences between peg_nested_comments 0.2.4 and 0.2.5.
Offline