Recent content by Jeremy P

  1. Jeremy P

    re: XenForo & Add-ons 2.3.0 Release Candidate 3 Released (Unsupported)

    I understand it can be a matter of preference, but using a service locator to fetch an object from the container shouldn't be too unfamiliar to developers. It's a common concept in modern frameworks. Dependency injection is usually preferable of course, but wiring up the container manually is a...
  2. Jeremy P

    MG 2.2 Thumbnails not showing at all or Updating

    XF 2.3 should address that more elegantly by performing resizing client-side before the image is sent to the server. https://xenforo.com/community/threads/image-optimization-enhanced-image-resizing-and-more.217014/
  3. Jeremy P

    Fixed Redis Cache Eror

    It might help to work around the issue in the meantime, but I think we might have to make some changes here. Our cache library (Symfony) may need us to URL-encode special characters in the configuration (due to their awful DSN concept).
  4. Jeremy P

    XF 2.2 How to properly install the update for version v2.2.13?

    Yeah. There are a few other minor changes but nothing that would impact their cross-compatibility.
  5. Jeremy P

    Fixed Redis Cache Eror

    Hmm, does your password have special characters (ie. non-ASCII)?
  6. Jeremy P

    Not a bug SSL operation failed with code 1. OpenSSL Error messages: error:1408F10B:SSL routines:ssl3_get_record:wrong version number src/vendor/symfony/mailer/T

    Are you using port 465? If your mail server doesn't support SSL/TLS, try a different port (like 587) and ensure you don't have SSL/TLS enabled in your mail settings.
  7. Jeremy P

    XF 2.3 Trending content

    They are both global options. You could search for them in the control panel if we didn't break that horribly in RC 3 :) Both options are in the "Logging options" group in the control panel.
  8. Jeremy P

    re: XenForo & Add-ons 2.3.0 Release Candidate 3 Released (Unsupported)

    I mean importing the classes. The classes in your example are fully qualified. To import them without conflicting, you’d have to use aliasing: use XF\Entity\User; use XF\Repository\User as UserRepository; $user = User::instance(); $userRepo = UserRepository::instance(); Adding a factory method...
  9. Jeremy P

    Awaiting feedback Notifications delay

    No worries, I apologize if I'm making things complicated. I am trying to differentiate your issue from what @Num7 had reported, but the difference is subtle. As I understand it, you are reporting that it doesn't show up when the page first loads (unexpected), while they are reporting that it...
  10. Jeremy P

    re: XenForo & Add-ons 2.3.0 Release Candidate 3 Released (Unsupported)

    The only thing which has changed are the possible arguments. The available methods are the same. \XF::repository and \XF\App::repository (among other short-hands available) all ultimately delegate to the canonical \XF\Mvc\Entity\Manager::getRepository method in both XF 2.2 and 2.3. We just went...
  11. Jeremy P

    Awaiting feedback Notifications delay

    As I understand it, the issue being reported is that a fresh page load after receiving an alert or conversation is not showing fresh right counter values, emphasis on fresh and after. Let me know if I'm misunderstanding. Also, does this only happen here or have you experienced it on your own...
  12. Jeremy P

    Duplicate Test outbound email broken + SMTP mail option not working/sending emails

    Closing this out as a duplicate, but if you still have issues after double checking your mail settings (particularly with a port other than 465 if your mail server does not support SSL/TLS) then feel free to open a new report...
  13. Jeremy P

    [OzzModz] Hide Thread From Guests

    That should be fixed in the next XF release without requiring changes to the add-on.
  14. Jeremy P

    AntiSpam by CleanTalk

    That should be fixed in the next XF release without requiring changes to the add-on.
  15. Jeremy P

    [OzzModz] Sequential Stickies

    That should be fixed in the next XF release without requiring changes to the add-on.
Back
Top Bottom