Jump to content

opentype

Clients
  • Posts

    9,888
  • Joined

  • Last visited

  • Days Won

    134

Reputation Activity

  1. Like
    opentype got a reaction from media in Can I post a clickable image?   
    Sure. 
    First, create an image attachment in the editor by choosing the file from your hard drive. then click on it, so the image is added to the post content. Then double-click on the image. In the dialog box, replace the content of the URL field with your target URL.   
  2. Thanks
    opentype got a reaction from Patham in Can I post a clickable image?   
    Sure. 
    First, create an image attachment in the editor by choosing the file from your hard drive. then click on it, so the image is added to the post content. Then double-click on the image. In the dialog box, replace the content of the URL field with your target URL.   
  3. Like
    opentype got a reaction from Meddysong in Can I post a clickable image?   
    Sure. 
    First, create an image attachment in the editor by choosing the file from your hard drive. then click on it, so the image is added to the post content. Then double-click on the image. In the dialog box, replace the content of the URL field with your target URL.   
  4. Like
    opentype got a reaction from Jim M in Can I post a clickable image?   
    Sure. 
    First, create an image attachment in the editor by choosing the file from your hard drive. then click on it, so the image is added to the post content. Then double-click on the image. In the dialog box, replace the content of the URL field with your target URL.   
  5. Like
    opentype reacted to DawPi 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.
  6. Thanks
    opentype got a reaction from Jim M in Gallery, only a portion of the image   
    It’s a browser issue. I see it frequently with Safari. There isn’t anything in the community software that can have any effect on it. The software just creates HTML to say where the image is and it is up to the browser to download it and deal with caching, download order, connection issues and so on. 
  7. Thanks
    opentype got a reaction from Marc Stridgen in Gallery, only a portion of the image   
    It’s a browser issue. I see it frequently with Safari. There isn’t anything in the community software that can have any effect on it. The software just creates HTML to say where the image is and it is up to the browser to download it and deal with caching, download order, connection issues and so on. 
  8. Like
    opentype got a reaction from Prank in Limited PM's for first n posts?   
    Yes. 
    Or use a third-party solution. 
  9. Like
    opentype got a reaction from SeNioR- in Google Search Console   
    That’s perfectly normal. There is no problem to fix. 
  10. Like
    opentype got a reaction from Adriano Faria in Limited PM's for first n posts?   
    Yes. 
    Or use a third-party solution. 
  11. Like
    opentype got a reaction from Marc Stridgen in Google Search Console   
    That’s perfectly normal. There is no problem to fix. 
  12. Like
    opentype got a reaction from Sonya* in Challenge: we tried to register for the trial ;)   
    I’m pretty sure they didn’t phrase it like that. They probably just asked for a proper imprint with data about the legal representation, which is simply the law here in Germany (see German Telemedia Act) and not something “draconian” that T-Online made up because the don’t “like” certain domains as you phrased it. 
    But that’s all beside the point anyway, which is that services like United Internet (GMX, Web.de) in Germany or Orange in France have a market share of over 30% in those countries, similar to Gmail in the United States. So blocking these service would be like blocking Gmail. 
  13. Like
    opentype got a reaction from panzerscope in FAQ Section For IPS Communities   
    A Pages database is pretty much the same as a FAQ database if you call the entries “FAQ” instead of “articles”. 
    You can get templates to tweak the appearance. 
  14. Agree
    opentype got a reaction from Claudia999 in Need help with HTTP links   
    I would buy a ‘link search and replace app’ with simple and regex functionality. While running global search-and-replace queries is somewhat dangerous, the app could just go trough the matching posts one by one, showing the old and the new link with an option to click the old and new link before clicking “skip”, “change” or “remove link and replace with …”. 
    http to https changes would be typical, but there are more examples: Removing dead links entirely and replacing them with a note; Adding/changing affiliate links; Changing links from one domain to another after after takeovers or a rebranding (e.g. twitter.com to x.com); removing parts of of the domain (like www) or a specific folders after the external site changed their structure …
  15. Like
    opentype reacted to MediaDiGi in Will Courses ever be available to self-hosted?   
    I plan to launch a course and start a community around it, so I'd like to ask you, Invision people, if you plan to launch the Courses app for the Self-hosted version or if that's not in the plan.

    If not, can any 3rd party app help me deliver courses? I'd love to reduce the use of other platforms and keep everything integrated into one.
  16. Like
    opentype got a reaction from Marc Stridgen in New member email confirmation not sent/received? [DMARC?]   
    The initiation method isn’t the most important part. The optimization methods apply to all of them. 
    Looking at the screenshots, your system mails go out directly from your server. So you need to make sure your DNS settings are optimized for that as well, not just for the external services like ConvertKit you use. In fact, it could be that adding DNS settings for those external service actually deligitimized sending mails from your own server. You need to make sure that all sending options are included in your DNS settings. 
    You can check with your host. They probably have settings and information directly relating to SPF/DKIM/DMARC …
    I always optimize this stuff using the Mail Tester website. By the way: You can do 3 tests for free per day. You should end up with at least of score of 9. 
  17. Like
    opentype got a reaction from SeNioR- in New member email confirmation not sent/received? [DMARC?]   
    The initiation method isn’t the most important part. The optimization methods apply to all of them. 
    Looking at the screenshots, your system mails go out directly from your server. So you need to make sure your DNS settings are optimized for that as well, not just for the external services like ConvertKit you use. In fact, it could be that adding DNS settings for those external service actually deligitimized sending mails from your own server. You need to make sure that all sending options are included in your DNS settings. 
    You can check with your host. They probably have settings and information directly relating to SPF/DKIM/DMARC …
    I always optimize this stuff using the Mail Tester website. By the way: You can do 3 tests for free per day. You should end up with at least of score of 9. 
  18. Thanks
    opentype got a reaction from VahnPetit in New member email confirmation not sent/received? [DMARC?]   
    The initiation method isn’t the most important part. The optimization methods apply to all of them. 
    Looking at the screenshots, your system mails go out directly from your server. So you need to make sure your DNS settings are optimized for that as well, not just for the external services like ConvertKit you use. In fact, it could be that adding DNS settings for those external service actually deligitimized sending mails from your own server. You need to make sure that all sending options are included in your DNS settings. 
    You can check with your host. They probably have settings and information directly relating to SPF/DKIM/DMARC …
    I always optimize this stuff using the Mail Tester website. By the way: You can do 3 tests for free per day. You should end up with at least of score of 9. 
  19. Thanks
    opentype got a reaction from Sonya* in BULK_MAILS_PER_CYCLE Not working as expected.   
    I used SES for some of my communities over the last couple of years (via SMTP). The ‘send-rate per second’ didn’t seem to matter for this delivery method. It was pushing out the several hundred bulk mails per task without issues. I did get warnings about getting close to the send limit per 24 hours though. 
  20. Thanks
    opentype got a reaction from The Old Man in Pages in Clubs, observations so far   
    1. Member posting is now working with the latest patch 👍
    2. Database records made in clubs do not appear in feeds, not the club feed or the Activity feed. I have seen reactions to records though. 
    3. Pages Feed Blocks don’t honor club-level access permissions. On the club level, I turned off access for “Members not in this club” and the records can’t be accessed by non-club-members. But Pages Feed blocks for the database contain these records, despite “honor permission” being activated. The goal here would be to create a “latest news (or whatever the content is) from the clubs I am a member of” block. 
    4. Adding a category in a club is missing the Description field
    5. Not making a Pages category in a club public leads to a confusing, generic error message, which doesn’t tell the user to join the club to access the content. I think the error should be clearer, or the Pages category tab should be hidden from the club, as it is done with Forums in clubs. Right now, it’s inconsistent. Forum tabs disappear, Pages tabs lead to an error. 
  21. Like
    opentype got a reaction from Sonya* in Favicon is using wrong image   
    Sure, but even then it’s also connected to IPS’ implementation. I upload an “application icon”, which is fine for this very purpose, but this is also downscaled and suggested as generic image. But that image might not work at all at tiny sizes. At least in this case, it would be necessary to force a dedicated small image. And in fact, that’s what happening for the ACP where you don’t output the full line of images. 

    In other words: the problem is that the application icon is not just suggested as application icon in the generated code.  
    If I remove the application icon, I get the desired result for the favicons, but then I do not have an application icon for when the website is saved to the homescreen. 

  22. Like
    opentype got a reaction from Sonya* in Favicon is using wrong image   
    Did you got that resolved eventually?
    I am currently investigating this myself. I feel like it’s the browsers which choose to go with the link rel="icon" generated from the application icon rather than the Favicon, even if the latter defined in the code and placed in the root directory. 
  23. Like
    opentype got a reaction from teraßyte in Pages in Clubs, observations so far   
    1. Member posting is now working with the latest patch 👍
    2. Database records made in clubs do not appear in feeds, not the club feed or the Activity feed. I have seen reactions to records though. 
    3. Pages Feed Blocks don’t honor club-level access permissions. On the club level, I turned off access for “Members not in this club” and the records can’t be accessed by non-club-members. But Pages Feed blocks for the database contain these records, despite “honor permission” being activated. The goal here would be to create a “latest news (or whatever the content is) from the clubs I am a member of” block. 
    4. Adding a category in a club is missing the Description field
    5. Not making a Pages category in a club public leads to a confusing, generic error message, which doesn’t tell the user to join the club to access the content. I think the error should be clearer, or the Pages category tab should be hidden from the club, as it is done with Forums in clubs. Right now, it’s inconsistent. Forum tabs disappear, Pages tabs lead to an error. 
  24. Like
    opentype got a reaction from SeNioR- in Pages in Clubs, observations so far   
    1. Member posting is now working with the latest patch 👍
    2. Database records made in clubs do not appear in feeds, not the club feed or the Activity feed. I have seen reactions to records though. 
    3. Pages Feed Blocks don’t honor club-level access permissions. On the club level, I turned off access for “Members not in this club” and the records can’t be accessed by non-club-members. But Pages Feed blocks for the database contain these records, despite “honor permission” being activated. The goal here would be to create a “latest news (or whatever the content is) from the clubs I am a member of” block. 
    4. Adding a category in a club is missing the Description field
    5. Not making a Pages category in a club public leads to a confusing, generic error message, which doesn’t tell the user to join the club to access the content. I think the error should be clearer, or the Pages category tab should be hidden from the club, as it is done with Forums in clubs. Right now, it’s inconsistent. Forum tabs disappear, Pages tabs lead to an error. 
  25. Like
    opentype got a reaction from Sonya* in Pages in Clubs, observations so far   
    1. Member posting is now working with the latest patch 👍
    2. Database records made in clubs do not appear in feeds, not the club feed or the Activity feed. I have seen reactions to records though. 
    3. Pages Feed Blocks don’t honor club-level access permissions. On the club level, I turned off access for “Members not in this club” and the records can’t be accessed by non-club-members. But Pages Feed blocks for the database contain these records, despite “honor permission” being activated. The goal here would be to create a “latest news (or whatever the content is) from the clubs I am a member of” block. 
    4. Adding a category in a club is missing the Description field
    5. Not making a Pages category in a club public leads to a confusing, generic error message, which doesn’t tell the user to join the club to access the content. I think the error should be clearer, or the Pages category tab should be hidden from the club, as it is done with Forums in clubs. Right now, it’s inconsistent. Forum tabs disappear, Pages tabs lead to an error. 
×
×
  • Create New...