Recent content by tofia

  1. tofia

    XF 2.2 Send alert without entity

    I am trying to send an alert based on an action that is not associated with an entity. The alert should also not be manageable by the alert_handler to be displayed in the preferences etc. The alert should be sent after the successful execution of a job. What is the best way to send an alert...
  2. tofia

    XF 2.2 Job status message in Pub controller?

    Hello everyone, is it possible to display the status message of enqueueUnique on a pub controller and redirect on complete(), just like the status messages of jobs in an admin controller?
  3. tofia

    Custom Member URLs [Paid]

    Yes, that will work! I had a quick look, they don't get in each other's way.
  4. tofia

    Custom Member URLs [Paid]

    tofia updated Custom Member URLs with a new update entry: Update 1.2.1 Read the rest of this update entry...
  5. tofia

    Custom Member URLs - Update 1.2.1

    Fix for incorrectly built URLs due to interfering Addons
  6. tofia

    Custom Member URLs [Paid]

    Is there an error in the server error log? Did you set the custom URL via the ACP or via the account details page? After you have set the URL you should exit the profile once. The URL should then be updated.
  7. tofia

    Custom Member URLs [Paid]

    Unfortunately there was a problem with outgoing emails, I have solved the problem and validated your account directly.
  8. tofia

    Custom Member URLs [Paid]

    Hi @Ruh! Of course! Setting a custom URL is linked to the XenForo permission system. This means that you can link the permission to set a custom URL to a user group of a user upgrade that can be purchased. If you need help with the setup, I will be happy to help you.
  9. tofia

    XF 2.1 Help with upload form

    If you don't want to use an extra success page you can also just return a message. return $this->message('Success');
  10. tofia

    XF 2.2 Applying default permissions in Setup.php file

    Well, this seems much easier...
  11. tofia

    XF 2.2 Applying default permissions in Setup.php file

    Something quick (didn't test tho): public function installStep1337() { $permission = \XF::em()->create('XF:PermissionEntry'); $permission->set('user_group_id', 3); // 3 for admin $permission->set('permission_group_id', 'asppbfoo'); $permission->set('permission_id', 'manageFoo')...
  12. tofia

    XF 2.2 Applying default permissions in Setup.php file

    As far as I know this is not possible by permission definitions. You could add the permission through the entity manager in your installation class and then rebuild the permissions using the UpdatePermissions service.
  13. tofia

    XF 2.2 External login

    You can open content as an overlay by adding the data-xf-click attribute to your HTML tag: <a href="{{ link('login') }}" data-xf-click="overlay">Log In</a>
  14. tofia

    Slots 1.0.1

    Restrict user upgrades to a maximum number of concurrent active upgrades (slots). When a user upgrade reaches the maximum number of users, it can no longer be purchased. Permissions can be used to exclude user groups from the slots, so that purchases can be made at the permission level even if...
  15. tofia

    Slots [Paid]

    tofia submitted a new resource: Slots - Restrict user upgrades to a maximum number of concurrent active upgrades. Read more about this resource...
Top Bottom