Jump to content

bfarber

Clients
  • Posts

    163,911
  • Joined

  • Days Won

    346

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Release Notes v5

Invision Community 5 Bug Tracker

Forums

Events

Store

Gallery

Everything posted by bfarber

  1. There is no option to add profile photos via URL in the latest release I'm afraid.
  2. The error will be logged to the email error logs, but we will not automatically try to resend. You can attempt to manually resend individual failed emails from the email error logs.
  3. I've not seen this occurring or reported previously. I could only recommend submitting a ticket for support.
  4. Thanks, we'll take a look
  5. Typically a patch is exposed when running the support tool in the AdminCP if it has not been installed. New releases will show update available notifications. Patches are generally only released to address specific issues not affecting all users, and thus notifications are not sent out to all users.
  6. I've opened a report internally to check on this. Thanks.
  7. If you're trying to call a third party REST API, you would just use the built in HTTP libraries we leverage. When I test connecting to our own built in REST API locally I use a test script like so typically <?php $apiKey = 'my-api-key'; require 'init.php'; \IPS\Dispatcher\External::i(); $response = \IPS\Http\Url::external( \IPS\Settings::i()->base_url . '/api/core/members/1' ) ->request() ->login( $apiKey, '' ) ->get() ->decodeJson(); var_dump($response); exit;
  8. You generally won't be able to include a third party library like that in a plugin, because you can't easily include extra files like that in a plugin. You would need to use an application instead to include a third party library. The only way to "share" the library would be to have one application that contains the shared library and each of your other applications that uses the library just makes sure the shared application is installed. if( !\IPS\Application::appIsEnabled('shared_application') ) { die( "Sorry you need this other application installed first" ); }
  9. I believe your ticket was escalated and resolved today if I'm not mistaken.
  10. We recommend Cloudfront from Amazon rather than Cloudflare. It behaves similarly and can improve performance (it is leveraged automatically for all of our Community In The Cloud accounts). Redis can improve performance for many users, but it's not a guarantee. It depends on various factors, however generally speaking if you are looking to improve performance I would definitely recommend trying it out if it's an option in your hosting environment.
  11. The constant controls how many emails are sent per cycle but the software will still try to process as many cycles as it can in one go. The constant, in other words, is not going to work how you want it to. It's not intended to control the number of emails sent each time the task runs, it's meant to help control how many emails are sent each time we try to push the emails to the server - if your SMTP server is particularly slow, for instance, it may be able to handle 30 at a time but not 50.
  12. If an option is a constant in init.php we likely don't intend to expose it to all users en-masse. Some things are a bit more technical, experimental, or work at a much lower level in the software and thus we don't necessarily want users playing with those options "willy nilly" or without understanding the ramifications. I'm not commenting on this specific setting, but just speaking in general. Sometimes we need to make an option for something but don't necessarily want all users trying to toggle it on and off.
  13. I have no idea why you'd be seeing an issue like you're describing and would have to recommend if you haven't submitted a ticket to do so.
  14. When you go check afterwards, does the guest group actually have permission to post? Or are you just seeing guest posts showing up even though they don't have permission?
  15. No explicit ordering is used but generally it will be the first 4 from the topic.
  16. This is a known bug that is fixed in the next release.
  17. Topics and Pages databases are two different things. It would be akin to installing our Blog software and expecting topics to show up in the blogs - that's just not what the software does exactly. As I said, you can move topics to databases, you can use RSS imports to pull topics into database and so forth, but they won't just automatically show up in the Pages database.
  18. We disable all customizations going from 4.4 -> 4.5 because they are generally not immediately compatible. We do not automatically disable customizations normally during upgrades (i.e. they won't be disabled during point releases in 4.5).
  19. We work with authors all the time - if he's reached out I'm sure someone will respond accordingly.
  20. Does your host have any more information on what caused the server crash/out of memory? Those suggestions can certainly help with performance (and pretty significantly), but if there's any reason to believe something happened at the software level we'd also be interested in getting some more information.
  21. There's no (built in) way to sort by those fields, no.
  22. You're probably going to need some sort of customization
  23. That area shows if you have the field option enabled:
  24. I would recommend submitting a ticket so we can take a look.
  25. Yeah this sounds like something specific that happened to your install.
×
×
  • Create New...