Jump to content

TDBF

Clients
  • Posts

    815
  • Joined

  • Days Won

    3

Reputation Activity

  1. Like
    TDBF reacted to Sonya* in Notifications are lagging   
    We have an issue with notifications (bell on the site) are lagging. There is a new message in the topic, the topic is highlighted in bold. The user already read it, but the notification to the list comes later. 
    I do not know how and whether it is related to our email notifications issue. But users have started to complain around the time we have started to get timeout error in email logs.
    I am trying to understand who is “responsible” for this:
    our server that is too slow to deliver notifications any settings in IPS I have made or overseen that can throttle notifications IPS not able to handle large number of notifications at once  slow AWS SMTP connection (if related to another issue)  Any idea? Thank you!
  2. Like
    TDBF reacted to Sonya* in Trying to find plugin 'Website Footer by Catzwolf'   
    @TDBF, if you like, you can upload your free files to invisionify.com. Reach out to me, if this is an option for you. 😉
  3. Like
    TDBF reacted to ekforum in Trying to find plugin 'Website Footer by Catzwolf'   
    Oh awesome, absolute legend @TDBF, many thanks for sharing that!
    Oh it is a tar file not an xml? The previous one was an xml plugin.

    With this v2, can I migrate the data from the previous plugin to this application somehow just by installing this app?
  4. Like
    TDBF reacted to Meris4x4 in Trying to find plugin 'Website Footer by Catzwolf'   
    If you don't mind then please post them. People will get them whenever they start looking for upgrades :)
  5. Thanks
    TDBF got a reaction from bel303 in Trying to find plugin 'Website Footer by Catzwolf'   
    Website Footer v2 2.0.2.tar
    Sorry, I had to close down the site due to issues with the software which I was using. Sadly, I cannot use my own forum for downloads.
  6. Like
    TDBF got a reaction from DawPi in Trying to find plugin 'Website Footer by Catzwolf'   
    If anyone wants my other apps, just let me know and I will post them here.
  7. Like
    TDBF got a reaction from SeNioR- in Trying to find plugin 'Website Footer by Catzwolf'   
    If anyone wants my other apps, just let me know and I will post them here.
  8. Like
    TDBF got a reaction from SeNioR- in Trying to find plugin 'Website Footer by Catzwolf'   
    Website Footer v2 2.0.2.tar
    Sorry, I had to close down the site due to issues with the software which I was using. Sadly, I cannot use my own forum for downloads.
  9. Thanks
    TDBF got a reaction from ekforum in Trying to find plugin 'Website Footer by Catzwolf'   
    Website Footer v2 2.0.2.tar
    Sorry, I had to close down the site due to issues with the software which I was using. Sadly, I cannot use my own forum for downloads.
  10. Thanks
    TDBF got a reaction from Meris4x4 in Trying to find plugin 'Website Footer by Catzwolf'   
    Website Footer v2 2.0.2.tar
    Sorry, I had to close down the site due to issues with the software which I was using. Sadly, I cannot use my own forum for downloads.
  11. Thanks
    TDBF got a reaction from Sonya* in Trying to find plugin 'Website Footer by Catzwolf'   
    Website Footer v2 2.0.2.tar
    Sorry, I had to close down the site due to issues with the software which I was using. Sadly, I cannot use my own forum for downloads.
  12. Like
    TDBF got a reaction from Sonya* in Trying to find plugin 'Website Footer by Catzwolf'   
    If anyone wants my other apps, just let me know and I will post them here.
  13. Like
    TDBF got a reaction from WP V0RT3X in Trying to find plugin 'Website Footer by Catzwolf'   
    Website Footer v2 2.0.2.tar
    Sorry, I had to close down the site due to issues with the software which I was using. Sadly, I cannot use my own forum for downloads.
  14. Like
    TDBF got a reaction from SeNioR- in No Caps Topic Titles   
    New version waiting for approval in the marketplace.
  15. Like
    TDBF reacted to Marc Stridgen in Passkeys instead of passwords   
    Fair 😄 
  16. Haha
    TDBF got a reaction from Marc Stridgen in Passkeys instead of passwords   
    Sorry Marc, my comment was a little tongue in cheek. 🙂 
    However, Google also uses Passkey now.
  17. Like
    TDBF got a reaction from SeNioR- in Passkeys instead of passwords   
    Sorry Marc, my comment was a little tongue in cheek. 🙂 
    However, Google also uses Passkey now.
  18. Like
    TDBF got a reaction from SeNioR- in BULK_MAILS_PER_CYCLE Not working as expected.   
    I have set the constant BULK_MAILS_PER_CYCLE to 100, however bulk emails are still being sent out at 400 a time.
    \define( 'BULK_MAILS_PER_CYCLE', 100 );
    Thus my emails are getting temporarily deferred due to unexpected volume.
    Is this correct or am I missing something here? 🙂
  19. Haha
    TDBF got a reaction from Adriano Faria in Hook Error Extending ipsContentController   
    Thanks for reminding me that I have a short memory!! 🤣
  20. Like
    TDBF reacted to Runar in Call to undefined method ReflectionUnionType::getName()   
    I’m having the same issue, and I’ve traced it to this function on line 4353 in system/Content/Controller.php:
    protected function sendModerationAlert( array $values, \IPS\Content\Item|\IPS\Content\Comment $content ) : \IPS\core\Alerts\Alert { } More specifically, the second argument, the union types, causes issues for the editForm function in system/Plugin/Hook.php. On line 370, the editForm function loops through parameters and tries to get their types and names:
    $parameters[] = ( $parameter->getType() ? ( ( ( $parameter->allowsNull() ) ? '?' : '' ). '\\' . $parameter->getType()->getName() . ' ' ) : '' ) . ( $parameter->isPassedByReference() ? '&' : '' ) . '$' . $parameter->name . ( $parameter->isOptional() ? ( '=' . var_export( $parameter->getDefaultValue(), TRUE ) ) : '' ); This works with single types, but not with union types.
    A single type returns a ReflectionNamedType, while union types return ReflectionUnionType, and trying to call getName() on a ReflectionUnionType will not work. I assume a simple check for ReflectionUnionType inside the try block would solve the issue.
    As far as I can tell, this issue affects all hooks to \IPS\Content\Controller and every class extending that class.
    For the record, I’m using PHP 8.1.16.
  21. Like
    TDBF reacted to DawPi in Hook Error Extending ipsContentController   
    Me. 🙂
  22. Haha
  23. Like
    TDBF got a reaction from DawPi in Hook Error Extending ipsContentController   
    Hi,

    I'm not sure that this is an issue on my end or not.
    I have created a hook which extends class \IPS\Content\Controller, however when I try to edit the hook I get the following error.
    Anyone else getting this?
    Error: Call to undefined method ReflectionUnionType::getName() (0) #0 C:\wamp64\www\#\applications\core\modules\admin\applications\developer.php(3577): IPS\Plugin\_Hook->editForm() #1 C:\wamp64\www\#\system\Dispatcher\Controller.php(107): IPS\core\modules\admin\applications\_developer->editHook() #2 C:\wamp64\www\#\applications\core\modules\admin\applications\developer.php(69): IPS\Dispatcher\_Controller->execute() #3 C:\wamp64\www\#\system\Dispatcher\Dispatcher.php(153): IPS\core\modules\admin\applications\_developer->execute() #4 C:\wamp64\www\#\admin\index.php(13): IPS\_Dispatcher->run() #5 {main}  
  24. Like
    TDBF got a reaction from SeNioR- in Hook Error Extending ipsContentController   
    Hi,

    I'm not sure that this is an issue on my end or not.
    I have created a hook which extends class \IPS\Content\Controller, however when I try to edit the hook I get the following error.
    Anyone else getting this?
    Error: Call to undefined method ReflectionUnionType::getName() (0) #0 C:\wamp64\www\#\applications\core\modules\admin\applications\developer.php(3577): IPS\Plugin\_Hook->editForm() #1 C:\wamp64\www\#\system\Dispatcher\Controller.php(107): IPS\core\modules\admin\applications\_developer->editHook() #2 C:\wamp64\www\#\applications\core\modules\admin\applications\developer.php(69): IPS\Dispatcher\_Controller->execute() #3 C:\wamp64\www\#\system\Dispatcher\Dispatcher.php(153): IPS\core\modules\admin\applications\_developer->execute() #4 C:\wamp64\www\#\admin\index.php(13): IPS\_Dispatcher->run() #5 {main}  
  25. Agree
    TDBF reacted to Sonya* in Show anonymous signed-in in the Recently browsing widget   
    Since the upgrade to 4.7 we have lost the ability to see anonymous users in Recently browsing list. Before upgrade (4.5), we could see them in the list marked with crossed eye like this:

    After the upgrade, we cannot see anonymous logged users at all. I am logged in as administrator (anonymous login required). My moderators are logged as anonymous if they like. The most of them like. 😉 Now, I can see myself on the list without crossed eye and non-anonymous users. My moderators cannot see me. I cannot see my moderators.
    We have used this feature to see if there is a moderator online in the “critical” topics that are going to escalate. 
    Has the feature been removed? Or are there any settings that I miss? 
×
×
  • Create New...