Recent content by stromb0li

  1. S

    Authorized applications formatting in Admin CP

    There's a minor formatting error if there are no applications associated with a user on the "Extra" tab in the Admin CP.
  2. S

    XF 2.3 Payment Providers - Refunds

    Super generic ask - but is it possible to trigger a refund from XenForo? We'd like to be able to actually issue a refund via an add-on we are working on vs having to go to PayPal to initiate the request. I see the paypal provider, for example, handles inbound requests for refunds from paypal...
  3. S

    Happy Birthday Emails

    There isn't a way to selectively opt-out for just birthday emails currently, but I plan on adding that. To set expectation, it probably won't be a month or two, unless someone wants to submit a PR to add this in and you want me to review. I'm heavily focused on developing some other items...
  4. S

    XF 2.3 Preload background image

    I was running a lighthouse test and noticed a couple images are flagged for performance issues since I'm not preloading them. A few of them are background images I use on about 80% of page views. Given it doesn't cause a layout shift, should I still preload them? If so, is there a best...
  5. S

    XF 2.3 How do I listen to data-step events?

    I have the following input: <xf:numberboxrow id="number" label="Number" min="0" data-step="any" step="any" /> How do I hook into the +/- buttons so they reflect an incremented value? Currently, I add an event listener to the input field, but that only catches changes made when I type into the...
  6. S

    RM 2.3 Allow HTML to be posted for certain groups

    Is there a way to allow HTML to be embedded into a resource description without an add-on? If not, does anyone know of an add-on that enables this functionality? To clarify, I don't want to embed the HTML as a code snippet, I want to actually have it rendered by the browser. Yes, I understand...
  7. S

    XF 2.3 JS for dropdown

    I am currently using a # symbol for parent navigation links to always force show the menu item dropdown. However, the tricky thing is when you click on the link, it tries to navigate to #, which most people would assume would trigger the dropdown instead. Is there a quick way to extend the...
  8. S

    Downgrade expired user upgrades failing

    I've recently started to see the following in server error logs when the Downgrade expired user upgrades cron job runs. It prevents the job from successfully completing altogether. TypeError: XF\Service\User\DowngradeService::__construct(): Argument #3 ($user) must be of type XF\Entity\User...
  9. S

    Assets are not copied from style archive when using symlinks

    Can confirm this is still relevant in 2.3.6. Modifying /src/XF/Util/File.php and changing the return statement in public static function getTempDir() to return realpath($path) ?: $path; worked perfect! Thank you @Kirby!
  10. S

    XF 2.3 PHP 8.4 and style import

    I wouldn't have ever been able to come to the conclusion that was the root cause! Thank you!
  11. S

    XF 2.3 PHP 8.4 and style import

    For anyone that is running XenForo 2.3.x with PHP 8.4; can you try the import style option from Admin CP and see if it initializes the /data/styles folder? This page -> admin.php?styles/ I see the style get created, but I don't see any of the style's assets get moved to the /data/styles folder...
  12. S

    chmod recommendations

    Right now I've set owner to the directory to www-data. So as long as it's the same as the service, then 755 is sufficient? For non-public directories, can those be less than 755? Here's the commands run to get a sense of the current config, however I still don't see some operations made...
  13. S

    chmod recommendations

    Per docs, it looks like internal_data and data both need to be 777. I'm not sure generically that will work across the board. https://xenforo.com/docs/xf2/install/#xenforo-cloud
  14. S

    chmod recommendations

    My search fu is failing me. Is there a list of published recommendations for chmod permissions on each directory in xenforo?
Back
Top Bottom