Jump to content

DawPi

Clients
  • Posts

    8,346
  • Joined

  • Last visited

  • Days Won

    19

Reputation Activity

  1. Like
    DawPi got a reaction from media in Error when upgrading IPB   
    Check your prefix in the conf_global.php. I think there is missing "_" after the "ipb". Should be (?) "ipb_"? 🤔
  2. Like
    DawPi got a reaction from Marc Stridgen in Error when upgrading IPB   
    Check your prefix in the conf_global.php. I think there is missing "_" after the "ipb". Should be (?) "ipb_"? 🤔
  3. Like
    DawPi reacted to Dll in Migrating from cloud - fresh install but getting warning about modified files   
    I think this is related to a patch which hadn't been applied on our cloud install. So, can be ignored. 
  4. Thanks
    DawPi got a reaction from Sonya* in Internal "ad" after first post   
    Yes I have. 🙂 I've upgraded that app to the latests IPS4 version and PHP 8.x. Fully working. Send me PM/ticket on mine site if you're interested.
  5. Like
    DawPi reacted to Matt Finger in Support for Better Text Editor- Lexical (Open Source)   
    I can say supporting multiple editor frameworks is not something we're likely to consider. Editors today are not copy/paste bundles, and there is a lot of stuff we built on top of the core frameworks.
    Thousands of lines of code which use the Tiptap and Prosemirror APIs would need to be translated, then all the edge cases would need to be sorted out. After migrating from CKEditor4 to CKEditor5, then from CKEditor5 to Tiptap, I can definitively say from experience that is a lot of work, and there are always differences in how features are actually implemented. And that's not even covering extensions which would be a pain to make compatible.
    This is why sticking to one editor is the way to go to provide you and all our customers top notch features. We won't lose days, or potentially even weeks, going back and forth to double implement and test features as they come out, and can guarantee things will "work".
    As a side note, I actually do remember Lexical from when we initially compared editors. We didn't find it to be a great option because it's very new: they are still only on version 0.15.0.
    Also, not too long before Lexical came out, Facebook first created Draft.js, then abandoned it when it was only a couple years old before version 1 ever came out. In fact, I think a lot of the docs that are now available for Lexical didn't even exist 6 months back.
  6. Like
    DawPi reacted to opentype in Feature suggestion: link back from topic to database   
    Instead of patching these issues, the entire functionality should probably be reimagined. Having this forum posting to begin with comes from old 3.x days where everything was centered around the forums. Having the need to have a separate comment system for Pages comes from the fact that 4.x originally allowed people to just have Pages, but not Forums. With the new licensing system, these legacy options should be consolidated into one comment system without the need for any kind of syncing, cross-posting or any anything like that. 
  7. Like
    DawPi got a reaction from Joel R in Experience On Paid Conversion?   
    Thanks.... 🫣 🫣🫣
    I think I can handle that conversion!
    We can! 😉
    Do it on our/client server. Prepare database and files and you'll be able to import it into your cloud, right? 🧐
  8. Like
    DawPi reacted to PanSevence in Code syntax highlighting in Invision Community 5 support for latest language standards?   
    I mean clicking the button and immediately copying the entire block of code without selecting it.
  9. Like
    DawPi reacted to SeNioR- in "ugc" attribute for outbound links. What do you think about it?   
    Hi, what do you think about the "ugc" attribute for outbound links? From what I see, the parameter is used by Reddit. 
    rel=”ugc” – should appear in user-generated content, i.e. in the comments and forum posts
    🎈 Example:
    <a ref="https://invisioncommunity.com/" rel="noopener nofollow ugc" target="_blank">Invision Community</a> 👉 More here: Qualify your outbound links to Google
    🖊️ EDIT: 5 minutes later
    It is worth adding that Flarum uses this attribute for links and @Daniel F in his SEO Essentials app has included this option in the settings.
  10. Like
    DawPi reacted to Marc Stridgen in Some problems when upgrading since IPB 3.4 to IPB 4.7   
    This is indeed correct. I would suggest having a look through the provider directory to see if there is someone you can perhaps employ to assist with this if you are having issues. 

    https://invisioncommunity.com/third-party/providers-directory/
  11. Agree
    DawPi got a reaction from Egorkin in How to hide /admin to public?   
    Or even protect it via htaccess too: https://www.askapache.com/online-tools/htpasswd-generator/
  12. Thanks
  13. Like
    DawPi got a reaction from sadams101 in Possible Issue After Recent Patch   
    To be honest, it's quite easy to reproduce. See this:

    Someone or something is attempting to "hack" or something on the board. In the code, you may try to find it at applications\calendar\modules\front\calendar\view.php:
    /* Pagination */ $offset = isset( \IPS\Request::i()->offset ) ? min( array( \IPS\Request::i()->offset, \count( $events ) ) ) : 0; As you can see, there is no check to ensure that the offset value is an integer. Please try changing it to:
    /* Pagination */ $offset = isset( \IPS\Request::i()->offset ) ? \intval( \IPS\Request::i()->offset ) : 0; $offset = $offset ? min( array( $offset, \count( $events ) ) ) : 0; Should help.
  14. Like
    DawPi got a reaction from Adriano Faria in Trying to find plugin 'Website Footer by Catzwolf'   
    It's doable. Adriano for example (in public resources) and I (in private only since now) doing it. 🙂
  15. Like
    DawPi got a reaction from SeNioR- in Gallery, View photo EXIF information   
    Works only with an ImageMagick.
  16. Like
    DawPi got a reaction from SeNioR- in Possible Issue After Recent Patch   
    To be honest, it's quite easy to reproduce. See this:

    Someone or something is attempting to "hack" or something on the board. In the code, you may try to find it at applications\calendar\modules\front\calendar\view.php:
    /* Pagination */ $offset = isset( \IPS\Request::i()->offset ) ? min( array( \IPS\Request::i()->offset, \count( $events ) ) ) : 0; As you can see, there is no check to ensure that the offset value is an integer. Please try changing it to:
    /* Pagination */ $offset = isset( \IPS\Request::i()->offset ) ? \intval( \IPS\Request::i()->offset ) : 0; $offset = $offset ? min( array( $offset, \count( $events ) ) ) : 0; Should help.
  17. Thanks
    DawPi reacted to Jim M in Possible Issue After Recent Patch   
    Thank you. I have reported what you mentioned here to our developers. However, I am unable to reproduce the exact error which has been originally reported. Therefore, we cannot guarantee this will resolve the OPs issue without access to their instance.
  18. Like
    DawPi got a reaction from opentype in Possible Issue After Recent Patch   
    To be honest, it's quite easy to reproduce. See this:

    Someone or something is attempting to "hack" or something on the board. In the code, you may try to find it at applications\calendar\modules\front\calendar\view.php:
    /* Pagination */ $offset = isset( \IPS\Request::i()->offset ) ? min( array( \IPS\Request::i()->offset, \count( $events ) ) ) : 0; As you can see, there is no check to ensure that the offset value is an integer. Please try changing it to:
    /* Pagination */ $offset = isset( \IPS\Request::i()->offset ) ? \intval( \IPS\Request::i()->offset ) : 0; $offset = $offset ? min( array( $offset, \count( $events ) ) ) : 0; Should help.
  19. Like
    DawPi reacted to TDBF 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.
  20. Thanks
    DawPi got a reaction from Marc Stridgen in Changed my account email but my account was deleted instead.   
    https://forum.invisionize.pl/topic/55445-przywracanie-usuniętego-użytkownika/
  21. Like
    DawPi got a reaction from Funar Flavius Mihai in PHP8 Incompatible Customizations   
    Both apps belongs to @Adriano Faria which take care of it when you contact him. 🫡
  22. Like
    DawPi got a reaction from Adriano Faria in PHP8 Incompatible Customizations   
    Both apps belongs to @Adriano Faria which take care of it when you contact him. 🫡
  23. Like
    DawPi reacted to Nathan Explosion in Can't upgrade from 4.4.6   
    Don't use the auto uograder.
    Manually upgrade...download the files, upload them to your site, change the PHP version (after ensuring that the ips4.php checker says all OK) and go directly to /admin/upgrade, or whatever it is.
  24. Like
    DawPi got a reaction from Maxxius in Screenshots out of order when upload a new version to a file   
    I've done custom mod for reordering screenshots in the Downloads.
    Working fine on edit or new version page. See:

    video_1.mp4    
  25. Like
    DawPi got a reaction from Kirill Gromov in Screenshots out of order when upload a new version to a file   
    I've done custom mod for reordering screenshots in the Downloads.
    Working fine on edit or new version page. See:

    video_1.mp4    
×
×
  • Create New...