Jump to content

David..

Clients
  • Posts

    1,214
  • Joined

  • Last visited

Reputation Activity

  1. Like
    David.. reacted to asigno in Sign in with Apple   
    Another reason for an IPB app 😎
  2. Like
    David.. reacted to TheWorldNewsMedia.org in Everybody is choosing "Night Mode" nowadays....   
    I think we need to include this functionality as well.
  3. Like
    David.. reacted to RevengeFNF in External Links Rich Embed [Support Topic]   
    @A Zayed i know this is a long shot, but doesn't hurt to ask.
    In the past i used an addon called Media Tag, where we could create custom oembed links. In the mean time this addon was removed from the marketplace because it was not updated since ips 4.1, although it was partially still working. 
    When i first installed your rich links addon, although your addon ignores the default oembed links by ips, it would cause the custom oembed links from the other addon to stop working, because it would show them as a rich link instead of the oembed. So i just disabled that media tag addon. 
    Now i found another addon that is up to date, (NE) oembedServices management  by @Nathan Explosion, but im afraid to buy it and the same thing will happen.
    What I'm asking is if you know why this happens and if there is anything that can be done to fix it. 
    Thanks. 
     
  4. Like
    David.. got a reaction from Techcloud in Mobile App, Progressive Web App (PWA) For IPB   
    I'm in for a mobile app for IPS. PWA is good, but they don't support notifications on iOS.
    -edit-
    PWA on iOS is pretty bad really. Maybe it can improve on future iOS versions but we can't really rely on PWAs for iOS right now.
  5. Like
    David.. reacted to Yamamura in CKEditor 5   
    Will Invision Community 4.4 include CKEditor 5? If not, then I would like the font size button and text alignment button to be like in CKEditor 5.
    1. Font size:

    This button looks better on the toolbar. The list of options is simple, concise and convenient. In addition, it will not allow users to make the font size too small or too large.
    2. Text alignment:

    This button takes up less space on the toolbar, and it is more convenient to use it in the editor on a smartphone, for example.
  6. Thanks
    David.. reacted to DawPi in (DP45) PM Viewer   
    @Millipede, @David..: what you think?
     


  7. Like
    David.. got a reaction from Millipede in (DP45) PM Viewer   
    Thank you for the update! Could we add an option to delete PMs directly? Like the hide button?
    If a PM is spam or unwanted, we have to go into the PM and remove each participant(s) which takes time.
    Please add a quick remove button if possible.
  8. Like
    David.. reacted to DawPi in (DP45) PM Viewer   
    I'm working on a search system now:

     

  9. Like
    David.. reacted to Metor in Topic Thumbnail for IPS4.x   
    @onlyME Just wondering if it takes longer to load a website with this? Have the feeling it takes longer to load when the thumbnail is enabled. Any change you could implement lazy load or add an option in the future. I would do it myself but don't know how to implement lazyload when the image gets loaded through css. 
    Update
    Maybe I try with this: https://appelsiini.net/2013/lazyload-190/
  10. Like
    David.. got a reaction from Haku2 in Bitcoin Support for Commerce   
    Bitcoin is gaining popularity very fast and it would be good if the IPS Commerce would support it. Either via Stripe or another integration?
    1 Bitcoin is currently worth $4662 right now. This is the Bitcoin chart over the years.

  11. Thanks
    David.. reacted to Pete T in Highlight Topic Author   
    updated please double check and also tested in 4.3.x and works 
  12. Like
    David.. got a reaction from Pete T in Highlight Topic Author   
    All good now, just the Badge & Post Border Colour is not working on my custom theme but I'll see if I can fix that. Cheers
  13. Like
    David.. reacted to CheersnGears in Newsletters   
    If you haven't purchased already, I highly recommend this app. Great support from @HeadStand
  14. Like
    David.. reacted to HeadStand in Newsletters   
    Yes, everything is automated.
    SparkPost will not present an issue.
  15. Like
    David.. reacted to InvisionHQ in iAwards   
    I'm working on this feature now. 
    Stay tuned.
  16. Like
    David.. got a reaction from SiLink in iAwards   
    No, hopefully it gets added soon!
  17. Like
    David.. reacted to InvisionHQ in iAwards   
    Only a cache issue. 
  18. Like
    David.. reacted to Legion of Honor in iAwards   
    @InvisionHQ
    Maybe you missed my post, so I'll ask again.  Is it possible to only have one instance of an award that has been awarded multiple times to the same person only show once instead of multiple times?  It would be great if the award would only show once and thus save space.
  19. Like
    David.. reacted to ucjohn in Large community? You have a problems with sitemap!   
    @Matt any word on why this hasn't been addressed?
  20. Like
    David.. reacted to Numbered in Large community? You have a problems with sitemap!   
    IPS Sitemap generator using special database table source for refreshing - core_sitemap.
    Primary search engine source of sitemap is url https://example.com/sitemap.php which is list of sub-sitemap files. You can see list of that files proceed for this link.
    Each of that file contain no more than 1000 urls to specail pages (profile status, topic (without number of pages or comment) and other elements, with supported sitemap as core extension).
    One of our case is forum with more than 100k topics, more than 4.2kk posts and more than 6kk users. So with simply math we have 5214 sitemap files (you can simply count number of that files with command 
    select count(*) from core_sitemap; // 5214 Sitemap generator task run by default once per 15 minuts and update only one oldest element from that big list. With simple math we can try to answer question 'how many time we need for update everything?' (because users can post not only in newest and may post in some old topics... but.. new created topic will add to sitemap file only when ALL older files will newer than current file with new topic inside). So, how much time we need for update?
    5214*15 = 78210 minuts = 1303 hours = 54 days! 54! days! Search engine will add your newest content after 54 days after them posted. Incredible thing. Not believe? Or want to know this lag for your community? You can simple know your lag time with that sql:
    select FROM_UNIXTIME(updated,'%a %b %d %H:%i:%s UTC %Y') from core_sitemap order by updated asc limit 1; // Wed Nov 01 14:13:49 UTC 2017 Yep.. In our case oldest file last updated in 1 November...
    What we should do for fix it? Very fast solution - create a temp file, like a 'mycustomsitemapupdater.php' with this content:
    <?php require 'init.php'; $generator = new \IPS\Sitemap; $generator->buildNextSitemap(); $last = \IPS\Db::i()->select('FROM_UNIXTIME(updated, "%a %b %d %H:%i:%s UTC %Y")', 'core_sitemap', null, 'updated asc', 1)->first(); print_r('Oldest time now: ' . $last . PHP_EOL); And run it via web or cli so times, what you want (before oldest time not be so old).
    Solution for a longer time - add this script to the cron and run it every minute or, which better - change task 'sitemap generator' run time from 15 mins to one minute (but it may be not solve you special problem, if you need to update it faster - do it with smart).
    Better solution - wait for IPS updating of that system.
    Thanks for attension!
    P.S. If you read my text with negative speach - it's wrong. I love IPS and just want to make attension for that problem and help others with their large communities. 
  21. Like
    David.. reacted to Numbered in Large community? You have a problems with sitemap!   
    Little improvement (5214 elements will update more than 3 days). So you can speed up more this. Just get time needed for one
    time php mycustomsitemapupdater.php // return something like 4 sec So with that you can create a cycle inside for X times to run $generator->buildNextSitemap(); For example in my case - 10 times in one minute. So for 5214 elements i will need 521 minuts for all update (~= 8 hours - not bad). 
  22. Like
    David.. reacted to ProSkill in Large community? You have a problems with sitemap!   
    This sounds great. I've seen a HUGE decrease in cached URLs on google from 1/1/17 to 12/31/17. Can anyone else confirm that this works? Also, why hasn't IPS addressed this?
  23. Like
    David.. got a reaction from Gabriel Torres in Highlight Topic Author   
    I'll add you to a PM I have with Pete to see if you can help out because I'm really busy lately.
  24. Like
    David.. got a reaction from BomAle in Bitcoin Support for Commerce   
    Bitcoin is gaining popularity very fast and it would be good if the IPS Commerce would support it. Either via Stripe or another integration?
    1 Bitcoin is currently worth $4662 right now. This is the Bitcoin chart over the years.

  25. Like
    David.. got a reaction from kRSB in Password manager   
    Wow! This is very useful! We currently do not need it but we would like to in the near future. Thank you for making this!
×
×
  • Create New...