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 didn't include that because it's very specific to forums, and I'm trying to avoid that kind of thing in this version. Ultimately, I plan to extend those same forum settings to all content types, in which case setting where it's available from the prefix isn't very feasible anymore. Nice prefix setup. I like that.
  2. I'm told the problem is you're trying to install a new app, instead of upgrade the existing 3.x one. Below the installed apps should be a section, 'out of date apps', and each one has an upgrade button. Use that. If you uninstall it, you're probably going to lose all of the data. This is standard functionality of the core IPS app installer and setup process, nothing to do with anything I've created. It would be the same for every other application upgraded from 3.x. How is that an app support issue? Support your customers. They're paying for it.
  3. Please try contacting IPS support about that one. I don't know all of the details of the app installer.
  4. I've considered it, sure. I intend to do something about it in time, same as for expanding it to other apps. Been putting some plans together. Haven't started anything yet though.
  5. What's New in Version 3.0.8Fixed global moderator check for the 'exclude from required prefix' setting.Fixed an empty tag if no defaults set and none entered.Fixed the default prefix setting not working as expected.Fixed a possible SQL error on some combinations of settings with the mass-add tool.Changed the mass-add tool search term field to optional.Changed the tag manager tool to only delete exact matches.
  6. You can use any HTML for formatting. So yes, you may use font icons or svg if you so choose, as long as it fits within the character limit.
  7. Yeah, permanent thing. I can't feel good about demanding renewal forever. No telling what the future will hold. That's a retroactive change.
  8. I have an update ready that should fix those issues. I'll post it when the Marketplace is fixed. The 'updatecheck task failed' issue should be resolved now, too--no update needed for that.
  9. I'll have to look into those. Really not sure why 1, 3, and 4 would be the case, but I'll see what I can figure out. #2 is unavoidable. Hmm. I'll see about making that not a required field. Yes, you can delete all tags by dumping the core_tags table, and then running the 'rebuild tag cache' tool in the app -- or you could delete them from the tag manager in the ACP.
  10. Oh, that figures. Validation check. You could also delete them directly from the DB in core_tags if you know what you're doing, then run the tag recache tool.
  11. Yeah. Got it, thanks. Here: applications/advancedtagsprefixes/hooks/addPrefixToForm.php Find: $tags = explode( ',', $container->default_tags ); Change to: $tags = array_filter( explode( ',', $container->default_tags ) ); Save, be happy. That won't fix existing ones, but you could do that easily enough from the tag manager.
  12. Ryan H.

    Easy Pages

    Interesting. The directory index would be because you created a folder corresponding to the request URL, and htaccess says 'only rewrite files/folders that don't exist' (!-d), and your server evidently has directory indexes enabled (usually a bad idea). Regardless, I'm guessing you're using a relative include path, something like include('placeAd.php'). I wouldn't expect PHP/IPS to look in the request "folder" in that case, but it sounds like that's what is happening. Try using an absolute path instead: include( \IPS\ROOT_PATH . '\placeAd.php' ) would tell it to look for placeAd.php in your site's base folder. Alternatively, you could point the form to a new Easy Pages page just for handling the form data, rather than using the include.
  13. Sorry, come again? If this is what you're asking: Yes, only prefixes can be limited by group. Tags are always available to everyone who can tag. (Note you can disable tags/prefixes per group, though.)
  14. Ryan H.

    Easy Pages

    I just uploaded a new version that should fix both of these issues. Thanks for the report. What's New in Version 2.0.2Fixed error on mod permissions page.Fixed page cache not clearing on save.Fixed attachment URLs not being processed correctly in some cases.
  15. Enter all eight on that forum (your one-offs, plus the defaults). Worked the same way on 3.x, AFAIK.
  16. Ryan H.

    Easy Pages

    Then you changed something else in the process... okay, well, if you PM me your site URL and FTP access, I'll see about fixing the error.
  17. Ryan H.

    Easy Pages

    You can fix that with a little file edit, if you care to. I'll include this with the next update. Edit: applications/easypages/sources/Page/Page.php Right near the top, after: public static $databaseTable = 'easypages_pages'; public static $databasePrefix = 'page_'; public static $databaseColumnId = 'id'; public static $includeInSitemap = FALSE;Add: public static $firstCommentRequired = FALSE;Then save. That'll fix it. Hmm. I'll have to look into that. Most likely I'm missing something to parse that when outputting. I'll figure it out and get back to you in a few days.
  18. Oh, okay. I thought you did have them on topics as tags, and wanted to turn them into prefixes. If not, you have three options: Use the mass-add tool using search terms (you said probably won't work) Use forum saved actions (formerly multimods) such that mods/admins can check topics to apply the prefix to, then use the saved action to fix all at once. Edit each one-by-one to set the prefix.
  19. Hmm. If it's all instances of a given tag, you could change them all to prefixes pretty easily in the database. See table 'core_tags', there's a column there 'prefix' or such, 0 or 1. You could change those, then run the rebuild tags cache tool.
  20. urg. Okay. Can you give any more info? Are prefixes enabled there? Any selected? Are tags enabled there? Open or closed mode?
  21. As promised: Minor maintenance release for issues since July 3rd. This covers everything I'm aware of. What's New in Version 3.0.7Fixed RSS import errors with prefix.Fixed prefix disappearing on edit in some circumstances.Fixed potential cases with duplicate or empty tags.
  22. They show up fine on VNC for me. http://i.imgur.com/sPtInHq.png I lost my work while trying to fix my dev environment (doh!), so I had to redo all of the changes since the last update. That's done, so I'll try to test and release within a few days. Minor patch to address RSS, duplicate/empty tags, and broken prefix edit.
  23. Somebody else reported that a while back. I have a fix for it, will be included with the next update. Thanks.
×
×
  • Create New...