Jump to content

TDBF

Clients
  • Posts

    815
  • Joined

  • Days Won

    3

Reputation Activity

  1. Like
    TDBF reacted to Nathan Explosion in Task run times   
    Here's what I would do based on the currently available functionality.
    Set the task to run every minute In your execute(), check if the time is 5pm If it is then proceed with the rest of the code If not, then do nothing.  
  2. Like
    TDBF reacted to opentype in Twitter's Mid-Life Crisis and the IPS Promotions Feature   
    Users would need to use the Forgot Password function to set a password and would need to know the email address they used with the linked login method. So you could or should explain that somewhere and inform your users before making the switch. 
  3. Like
    TDBF reacted to opentype in Twitter's Mid-Life Crisis and the IPS Promotions Feature   
    Been doing that for quite a while across all my communities. 
  4. Thanks
    TDBF reacted to Adriano Faria in Quizzes   
    Hello,
    If I remember well, you should be able to edit questions and answers but not delete them, as people already played.
    Isn't the EDIT link showing up?
     
    ----------------------
    EDIT: Just tested and it doesn't show. I'll update the file with a fix.
  5. Thanks
    TDBF reacted to Marc Stridgen in BUG: Widgets and Whoops Issue.   
    Thank you for bringing this issue to our attention! I can confirm this should be further reviewed and I have logged an internal bug report for our development team to investigate and address as necessary, in a future maintenance release.
     
  6. Agree
    TDBF got a reaction from teraßyte in BUG: Widgets and Whoops Issue.   
    Invision: 4.7.10
    PHP 8.0
    While in development mode and with Whoops enabled, any error from a widget will result in a loop while writing the error to the database, and cause the server to time out and crash.
    For example: (This is an example just to trigger an error and not a real world example)
    /** * Render a widget * * @return string */ public function render() { $lastFixture = NULL; $$nextFixture = NULL; return $this->output( $lastFixture, $nextFixture ); }
    From the error log:
    🙂
  7. Like
    TDBF got a reaction from Dreadknux in v5 news coming soon...   
    Full in-depth developer documentation with proper real-life full working examples on how to implement framework features.
  8. Like
    TDBF got a reaction from Manuel Monroy in v5 news coming soon...   
    Full in-depth developer documentation with proper real-life full working examples on how to implement framework features.
  9. Like
    TDBF got a reaction from Clover13 in v5 news coming soon...   
    Full in-depth developer documentation with proper real-life full working examples on how to implement framework features.
  10. Like
    TDBF got a reaction from SeNioR- in v5 news coming soon...   
    Full in-depth developer documentation with proper real-life full working examples on how to implement framework features.
  11. Agree
    TDBF got a reaction from Richard Arch in v5 news coming soon...   
    Full in-depth developer documentation with proper real-life full working examples on how to implement framework features.
  12. Like
    TDBF got a reaction from NoSpy in MySQL: How change type MyISAM to InnoDB when are mixed ?   
    You have to do this yourself, and it is quite easy to do once you use the right tools.
    If you don't want to use SHH and MySQL commands, then I would suggest a tool like HeidiSQL. You can easily convert your database tables from MyISAM to InnoDB using the 'Bulk Table Editor' within the Table Tools.
    If you do not want to download more software, you can use phpMyAdmin (You will most likely find this in your CPANEL account or something similar) and run an alter command like this:  'ALTER TABLE table_name ENGINE=InnoDB;'
     
    Hope this helps?! 🙂
  13. Like
    TDBF reacted to CaptJeff in New members go straight to Choose Subscription   
    Never mind,  It has been so long I do not remember how this stuff works so I am just stumbling around.  Disregard my rants.  Understanding all this stuff was read difficult before my stroke, now trying to comprehend what the instructions are trying to explain is even harder.  Even simple things for other are difficult for me to understand.
  14. Like
    TDBF got a reaction from Manuel Monroy in Widgets Extensions (Support)   
    I will have a look into this for you.
    For the time being, if you need any JS, just add this in the theme header or footer options.
    I will add this ability in a future version.
  15. Like
    TDBF reacted to Marc Stridgen in The license key is not valid. Please contact account assistance.   
    If you are still having this issue, please do the following, which should now correct the problem
     
    Admin CP > License Key > Resync License Data
  16. Like
    TDBF reacted to Gabriel Torres in TypeError: flock(): Argument #1 ($stream) must be of type resource, bool given.   
    @Jim M I was facing the same issue (we had literally thousands of those errors in our logs), and your advice to disable the template disk caching solved the issue for me. I only wonder if this is something more serious that must be addressed.
    For those looking for this option: Advanced Configuration > Server Environment > Performance > Enable template disk caching?
  17. Like
    TDBF got a reaction from AlexWebsites in Widgets Extensions (Support)   
    I will have a look into this for you.
    For the time being, if you need any JS, just add this in the theme header or footer options.
    I will add this ability in a future version.
  18. Like
    TDBF reacted to teraßyte in MySQL: How change type MyISAM to InnoDB when are mixed ?   
    I mentioned the issue in my reply above, you need to manually specify the ROW_FORMAT value in the ALTER TABLE query to avoid using the COMPACT format set by default by your hosting.
     
    In your example above you're still skipping that part:
    ALTER TABLE downloads_ccontent ENGINE=InnoDB; instead of:
    ALTER TABLE downloads_ccontent ENGINE=InnoDB ROW_FORMAT=DYNAMIC;
  19. Like
    TDBF got a reaction from Marius in MySQL: How change type MyISAM to InnoDB when are mixed ?   
    You have to do this yourself, and it is quite easy to do once you use the right tools.
    If you don't want to use SHH and MySQL commands, then I would suggest a tool like HeidiSQL. You can easily convert your database tables from MyISAM to InnoDB using the 'Bulk Table Editor' within the Table Tools.
    If you do not want to download more software, you can use phpMyAdmin (You will most likely find this in your CPANEL account or something similar) and run an alter command like this:  'ALTER TABLE table_name ENGINE=InnoDB;'
     
    Hope this helps?! 🙂
  20. Like
    TDBF reacted to nodle in MySQL: How change type MyISAM to InnoDB when are mixed ?   
    I'm not trying to plug my own site, but I made this post awhile back so I could always remember how to do it. This has always worked for me. 
    Converting MYISAM database tables to INNODB - Tech Zone - Fluxoid
  21. Like
    TDBF got a reaction from Marc Stridgen in MySQL: How change type MyISAM to InnoDB when are mixed ?   
    You have to do this yourself, and it is quite easy to do once you use the right tools.
    If you don't want to use SHH and MySQL commands, then I would suggest a tool like HeidiSQL. You can easily convert your database tables from MyISAM to InnoDB using the 'Bulk Table Editor' within the Table Tools.
    If you do not want to download more software, you can use phpMyAdmin (You will most likely find this in your CPANEL account or something similar) and run an alter command like this:  'ALTER TABLE table_name ENGINE=InnoDB;'
     
    Hope this helps?! 🙂
  22. Like
    TDBF reacted to teraßyte in MySQL: How change type MyISAM to InnoDB when are mixed ?   
    Try using this kind of query which sets the table to use the DYNAMIC row format by default instead:
    ALTER TABLE nexus_licensekeys ENGINE=InnoDB ROW_FORMAT=DYNAMIC;  
    That is, as long as your host has it enabled. I've seen plenty of hosting with only the COMPACT option available, unfortunately.
  23. Agree
    TDBF reacted to Vakarian96 in Cookie problems   
    Since the latest patch I have problems with setting cookies, it's a disaster!
    e.g. I have a Dark/Light Mode Switcher which saves the setting as a cookie in the browser. Doesn't work anymore with the latest update, as well as pretty much all non-standard cookies that don't come from IPS.
    Is there any way to change this?
  24. Like
  25. Like
    TDBF got a reaction from Marc Stridgen in Bug: Text Form Issue   
    @Marc Stridgen Thank-you for fixing this issue! 👍
×
×
  • Create New...