Jump to content

SeNioR-

Members
  • Posts

    1,145
  • Joined

  • Days Won

    5

Reputation Activity

  1. Like
    SeNioR- reacted to Sonya* in Upgrade - Manual action required - Version 4.7.16   
    Auto-upgrade can fail if you are on PHP 8.2 or higher. Check your PHP version and downgrade to 8.1, if it is not.
  2. Like
    SeNioR- reacted to Clint Davis in Upgrade - Manual action required - Version 4.7.16   
    I just ran into the same issue. PHP 8.1 will be end-of-life in 6 months. Will this issue be resolved before then?
  3. Thanks
    SeNioR- got a reaction from tnn in PHP 8.2 Thread   
    IPS v4 will not have support for PHP 8.2. The End.
  4. Like
    SeNioR- reacted to Marc Stridgen in URL Site Previews...   
    Its not something we have at present on the new editor, but its certainly an interesting idea. 
  5. Agree
    SeNioR- reacted to Ocean West in URL Site Previews...   
    If you ever use Slack when you place a URL to an external site sometimes it will auto show a preview. 
    Is this something that on the roadmap or apart of the new editor? 


  6. Like
    SeNioR- reacted to Matt in v5 news coming soon...   
    To be clear, we have no plans to remove jQuery from 5.0.0. We expect to begin a fairly lengthy migration process over several releases where we'll start rewriting our UI and utility classes to use native.
    That said, I do not think it is critical to remove jQuery to improve page speed scores. We can probably get away with using jQuery slim, which is about 23kb of data sent once, and then your browser caches it. 23kb isn't insignificant but then a single image added to a page will negate any savings. Removing jQuery now would add further stress onto third party developers and delay v5 by 6-9 months given the huge amount of JS we are using for really little gain.
    Anything significantly new is using native.
    Here's the result of running Lighthouse for mobiles on my development install running with IN_DEV on (so no caching, no compiled or minified CSS, hundreds of script tags, etc). I would expect that to hit high 90s when not using IN_DEV mode.

  7. Like
    SeNioR- reacted to ghinton in PHP 8.2 Thread   
    Glad to hear as PHP 8.1 does not support ImageMagick, but PHP 8.0 and 8.2 do, so that issue might need to be addressed for people not upgrading to v5
  8. Like
    SeNioR- reacted to taz.de in PHP 8.2 Thread   
    just to let you know: for us and especially our admins, it would be helpfull if you could synchronize the supported php version with the one supported by the actual stable debian packages.
  9. Like
    SeNioR- reacted to sadams101 in PageSpeed Insights Fix Needed for Link Back to Original Post in Quotes   
    Can you please add this to the next update?
    The following errors are generated by Google PageSpeed Insights for all links back to the original post in quotes:
    Links do not have a discernible name Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible. Examples of such links can be found on this page:
    https://www.celiac.com/forums/topic/158184-link-between-celiac-and-globulin-or-eosinophils/
    and if you look at the "Accessibility" are for either Mobile or Desktop here you will see the details:
    https://pagespeed.web.dev/analysis/https-www-celiac-com-forums-topic-158184-link-between-celiac-and-globulin-or-eosinophils/v17t9q5iwi?form_factor=desktop
    I suspect that this involves adding text like "Go To Quoted Post" in a JS files, or perhaps a PHP file.

     
     
  10. Like
    SeNioR- reacted to tnn in Unrecognised field 'interactionStatistic' on User Profile   
    It may be that the numbers are missing quotation marks. 
    issue is: 
    - Unrecognized field "interactionStatistic"
    - Validation: Not Started
    Possible Cause:
    "userInteractionCount": 3557 
    "userInteractionCount": 14299
    Correct:
    "userInteractionCount": "3557" 
    "userInteractionCount": "14299"
    (note quotation marks around the numbers.)
     
     
  11. Thanks
    SeNioR- got a reaction from tnn in Unrecognised field 'interactionStatistic' on User Profile   
    Hi. I know it's just a warning but... I'm reporting it as a bug. The warning applies to the user's profile.
    Example Code:
    "interactionStatistic": [ { "@type": "InteractionCounter", "interactionType": "http://schema.org/CommentAction", "userInteractionCount": 3557 }, { "@type": "InteractionCounter", "interactionType": "http://schema.org/ViewAction", "userInteractionCount": 14299 } ] }

  12. Like
    SeNioR- reacted to Ehren in Disable scroll for mobile menu   
    Thanks for the suggestion. This has already been addressed in v5, but I’ll keep this in mind for v4 🙂  It’s bugged me in the past too. 
  13. Like
    SeNioR- reacted to Marc Stridgen in spam posts   
    This is done from your file system, not your admin CP. So you create a file in the route directory named constants.php and add this
    <?php define('DISABLE_MFA', TRUE); This will disable the google authentication you are struggling with, so you can log in
  14. Like
    SeNioR- reacted to Marc Stridgen in Club Database Permissions   
    At present it follows the permissions of the database, so you would have to set it there within the admin CP if you want to set specific permissions 
  15. Like
    SeNioR- reacted to Ehren in Direct iphone photos to ips upload?   
    Attaching images using your phone camera has been around for some time, and is available in both v4 and v5.
    The "Add Files" button will appear if your device supports that feature.

  16. Like
    SeNioR- reacted to arrowman in Gallery, View photo EXIF information   
    I have cleared the cache, but I don't see the new information. I'll upload another photo to check the change. Now in the setting "Delete sensitive EXIF data" is no longer activated.
  17. Like
    SeNioR- reacted to DawPi in Gallery, View photo EXIF information   
    Works only with an ImageMagick.
  18. Like
    SeNioR- reacted to taz.de in PHP 8.2 Thread   
    One issue with PHP 8.2+ as far as I can tell, is that in Dev mode some pages act funny, with a bunch of our plugins that use the apparently standard IPB construct 'return \call_user_func_array( 'parent::' . __FUNCTION__, \func_get_args() );', throwing deprecation and Exceptioning out of most pages. 
    You can of course disable deprecations in php.ini (```error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT```)
    But then the 'get support' page doesn't load, unless you hack some PHP code like this into the top of the core support.php file (```error_reporting(E_ALL | E_STRICT);```). It's possible that under 8.2 / dev / prod mode it's also throwing other errors.
    Finding a php.ini error_reporting config that works for both use cases does not seem to exist. Looking forward to PHP 8.2 support soon.
  19. Agree
    SeNioR- reacted to Orioni in Achievements rule for anniversary   
    Good afternoon, dear Invision Community,
    Context
    Some members of my own community have been around for years, if not decades. I would like to display this with automatic achievements.
    Problem
    A custom rule would allow me to do so. Unfortunately, the highest level you can set for this rule is “weeks”.

    Now, I considered using custom “days” to do this (1 year = 365 days; 2 years = 730 days; etc.). However, leap years throw a wrench, making the anniversary inaccurate.
    Question
    Is there another way to solve this, and achieve the result I'm looking for?
  20. Like
    SeNioR- reacted to Joel R in WebP images are not scrollable in lightbox   
    A user on my community brought this to my attention.  I think this may be intended behavior by Google chrome, but should be something reviewed for an overlay by IPS 
    WebP images open in a new tab, and are not scrollable like JPG
    Sample topic: 
     
  21. Like
    SeNioR- reacted to Como in Ban Reason   
    I agree with @Morrigan. Nearly 4 years on from his post, and I am a bit frustrated with the moderation and ban systems. It is way more difficult and disjointed than it need be, with no real options to track historical moderation problems and add notes with a ban. I'd also like to have a message display to the banned member with a reason.
    I won't get into this too much now - I am hoping there will be significant improvements with V5 and my comments here will be moot.
  22. Like
    SeNioR- reacted to CheersnGears in Webp Gallery Support   
    Please move this to the feedback thread then.
     
    Thank you.
  23. Like
    SeNioR- reacted to CheersnGears in Webp Gallery Support   
    Suddenly it's 2018.
    This isn't directed at you Jim, but at the decision-makers at IPS as a whole.
    The fact that a vendor of web-based photo gallery software doesn't officially support WebP in 2024 is, frankly, absurd.
    And it's absurd for several reasons:
    It clearly works. I wasn't even aware that webp wasn't officially supported (or I didn't remember) because I've been uploading webp to my galleries for a while now, and it has been working nicely, and will continue to work nicely in their new S3 home. The standard was announced in 2010 and went to stable release in 2018. There's been 8 years to get onboard. Much of the web has been using it for years, especially the big, picture heavy sites. The search engines penalize us for using heavy images and I personally see a significant performance difference on my own site with webp. The only thing that broke here was that I moved storage locations, and the url update task isn't processing the new location properly. The images are still attached properly to the article, they just aren't embedded correctly.  
     
  24. Like
    SeNioR- reacted to Joel R in Promotion : modify post's content limitation ?   
    Just delete or remove enough characters, and then you will be able to post. You are able to edit or type in that box.  
    This happens to me all of the time.  I either truncate the content or override all of the content with my own quick summary. 
  25. Like
    SeNioR- reacted to teraßyte in Retrieving plugin?   
    No. While you can download an application's folder from the server, plugins aren't the same. When plugins are installed, the setup folder is NOT saved on the server. And the original XML file is not available, either.
    You'll need to rebuild the XML file from scratch based on the files on the server, plus rewrite from scratch the setup folder (if the plugin creates tables or adds columns).
     
    It may take some time, but it can be done. I've done it several times for clients, especially recently after the marketplace closed.
×
×
  • Create New...