Jump to content

Ryan H.

Members
  • Posts

    4,489
  • Joined

  • Last visited

  • Days Won

    9

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by Ryan H.

  1. I've published version 3.1.10 with the installer fix I've sent a few others previously, and some additional unreleased fixes to the mass-add tool.
  2. Is that a question or a statement? I'm not aware of any compatibility issues with 4.3.2. If there are definite issues, certainly bring them up, I don't know about them unless they're raised. Are you sure that error is related to AT&P? The SQL query that is failing does not appear to have any connection. Maybe there's some side effect causing the duplicate key though. Does saving that club work fine with AT&P disabled, and throw the error with it enabled? I don't know what to make of that error. I'm assuming you didn't just upgrade the app from IPB 3.x? There hasn't been any "topic_prefixes" table as long as 4.x has been around, that I can remember, and that's what it's looking for. If you're saying you ran the IPB upgrade after an earlier failed app install, your system probably broke because it was starting from an invalid state--I'm not sure why it let you upgrade in the first place if it was just going to break. That's not strictly a 4.3 compatibility problem. Semantics though. I appreciate the words -- respectfully, I don't know what part is 'not compatible'. I upgraded to 4.3.1 a couple weeks ago, and then to 4.3.2 just now, I haven't seen any obvious issues. I do still need to publish the installation fix that affects some people (MySQL 5.7 I think), that's on me.
  3. Thanks Jujuwar! ^ That's as much confirmation as you're going to get for the moment. Just got back from a conference.
  4. Should there be? Minor updates generally don't affect the app. Major ones sometimes do. You would have to use CSS in your theme, either to override and remove the styling in those two places or only apply it in the other ones. I believe it does, has to be configured from the admin for each one though. No guarantees, I haven't spent much/any time investigating that aspect.
  5. Sent a new install package by PM, should work. I assume you're running the latest version. I'll look into it at some point, that's all I can say.
  6. Okay, I think that would come down to how IPS handles sidebar widgets. Not likely to change but I'll keep it in consideration. Tags and prefixes are not language-capable in core or this app.
  7. It shows tags on forum view (default behavior). If set to no, they'll only display within a topic. I don't understand what you're asking for. I believe they're sorted according to the order they're entered in the predefined tags field. I may be mistaken on that.
  8. I'll look into the issues when I can, but I've never seen any such problems myself and I don't know that I'll be able to reproduce.
  9. If you go to the app list, does it say it's installed? If installation still isn't working, please open an IPS support ticket.
  10. Upgrade should work seamlessly. After upgrading the app will be listed but not installed--there should be a button to upload/upgrade to new version, which will walk you through the process. Data should all go through. If there are any catches, they're not coming to mind--it's been quite a while. I don't know what to make of that error or what you're trying to do that's causing it. I haven't seen any such issue. I haven't seen that error either, but have you tried doing what it says? Just a thought.
  11. No, I'm afraid the app won't help with that. Prefixes can be styled/replaced and show up next to title, but normal tags cannot. You also can't have more than one prefix per topic. If there's only one per topic you could use prefixes to do what you have in mind, but not if there's more than one.
  12. Not at this time. I'm not sure what functions you're talking about.
  13. See the fix here for the mass-add issue: https://invisioncommunity.com/forums/topic/416840-advanced-tags-prefixes-ips-4x/?page=40&tab=comments#comment-2721234 As for removing the tags, the tag manager should work for that, make sure you're running the latest version of the app. That's all I've got. e: I see you found that. Good. Those settings aren't related to topics created by the database. Can't say I've ever seen that.
  14. I don't know how the app works; not something I can speak to.
  15. No, that's not something the app will help with.
  16. I don't know what to tell you then -- that solution resolved that exact problem perfectly for me.
  17. Here's a patch for that. Only affects spaces or other special chars in prefix name on the mass-add tool. Open: applications/advancedtagsprefixes/modules/admin/manage/tools.php Find: (line 733-736 if( $key == 'atp_addTags' or $key == 'atp_searchForums' ) { $values[ $key ] = array_filter( explode( ',', urldecode( $values[ $key ] ) ) ); } Add after: elseif( $key == 'atp_addPrefix' ) { $values[ $key ] = urldecode( $values[ $key ] ); } Save. Re-run tool, chosen prefix should overwrite all the bad ones you've got now.
  18. Thanks for all the details. I'll have to investigate.
  19. Hmm. That would be a side-effect of the change. Yes, that's okay. hmm ... not sure the exact cause here, but try this: applications/advancedtagsprefixes/modules/admin/manage/tools.php Line 401 array( 'index_tag=?', $k ), to array( 'index_tag=?', (string)$k ),
  20. I don't have the SQL settings in place to test it, but you can try this: Open applications/advancedtagsprefixes/modules/admin/manage/tools.php Find: (line 275) $keys = \IPS\DB::i()->select( array( 'tag_aai_lookup', 'tag_meta_app', 'tag_meta_area', 'tag_meta_id', 'tag_id' ), 'core_tags', NULL, '`tag_id` ASC', array( $start, $perCycle ), 'tag_meta_id' ); Change to: $keys = \IPS\DB::i()->select( array( 'tag_aai_lookup', 'tag_meta_app', 'tag_meta_area', 'tag_meta_id', 'tag_id' ), 'core_tags', NULL, '`tag_id` ASC', array( $start, $perCycle ) ); Save, retry. It will be slower (running based on tag instead of topic), but I think that will be the only side effect.
  21. I don't know of any way that issue (setting change) could be caused by my plugin. I don't know why they would push it on me except by association to the tag system. Have you tried upgrading without AT&P (either removing it before or not installing it after)? Does that have any impact on the setting changing? Set up a mod mass action (or whatever they're called these days). You can create one to remove prefix, and apply that to any topic from any forum.
  22. Yeah, that'll happen. I think someone else mentioned that recently; something I'll see if I can handle in the code. I'm not aware of any way my app could have caused that. If they have something to support that claim, please have them explain/contact me. If the data was changed, there's no way to just undo it. You'll need to change the setting back and then correct any data manually.
  23. It's showing as a prefix, which means it's a prefix. If it's not formatting, that's because it does not match an AT&P prefix to format. Check the AT&P Prefixes section, if it's still there then there must be some difference in capitalization or exact characters or something. I'm not much help when extended character sets are involved.
×
×
  • Create New...