Jump to content

sobrenome

Members
  • Posts

    2,525
  • Joined

  • Last visited

Reputation Activity

  1. Like
    sobrenome reacted to AlexWebsites in Support Streamable Oembed   
    Have you looked at 
     
  2. Like
    sobrenome reacted to RevengeFNF in Support Streamable Oembed   
    It's possible to add support for Streamable? 
    Their endpoint is this one: https://api.streamable.com/oembed
     
    A link for a video if it's needed to test the integration: https://streamable.com/ievyk
  3. Like
    sobrenome reacted to Adriano Faria in Improve reviews   
  4. Agree
    sobrenome reacted to Hisashi in Improve reviews   
    When authors respond to a review, it is very "without salt".
    Can make the system a little more interactive as follows
    Allow user to reply author Notification when author responds to review (Amazingly there is no notification system for this currently)
  5. Like
    sobrenome reacted to Sheffielder in (.webp) images support   
    Thank you - appreciate the reply
  6. Like
    sobrenome reacted to wegorz23 in (.webp) images support   
  7. Like
    sobrenome reacted to asigno in (.webp) images support   
    I think the general consensus of dissapointment is that WebP support in IPB is limited to file uploads. It doesn't automatically serve reprocessed WebP images to supportive browsers. Which is what would have been expected.
  8. Like
    sobrenome reacted to opentype in (.webp) images support   
    You jump from what you personally expect to “general consensus” way too easily. 
  9. Like
    sobrenome reacted to AlexWebsites in (.webp) images support   
    I’m at fault for initially assuming as well. I don’t see the need (although nice) for uploading as much as “on the fly” conversion and serving to browsers that support. You can achieve this in other ways but would have been a nice feature enhancement for SEO.
  10. Like
    sobrenome reacted to opentype in (.webp) images support   
    Based on what? Because a total of two people in this topic say so? Out of the thousands of IPS clients who you have not consulted? That’s not how consensus works. Not by a long shot. But you win. I shut up. I saw a questionable statement. I questioned it. That’s what my sceptic nature demands. Not gonna debate language on a tech forum. You wouldn’t care anyway. 
  11. Like
    sobrenome reacted to kims79 in (.webp) images support   
    It is safe to say that this is indeed a "general consensus".
    The wepb is hardly used as such when sending images, users always send in pnj or jpg.
    We were also expecting an automatic conversion of existing images in order to reduce bandwidth consumption and loading time.
    At least, this is what we have been asking for for several months now.
  12. Like
    sobrenome reacted to Adriano Faria in Error on plugin install in PHP 8   
    That’s ok as long as you use the plugin uninstall to drop your table. Also, it works fine (no log error and table is created) with IN_DEV disabled so it’s ok.
  13. Like
    sobrenome reacted to Afrodude in Error on plugin install in PHP 8   
    Yes. IPS 4.6 supporting PHP 8, but be careful from third-party plugins or applications because some of them might have issues will lead to error HTTP 500. If you do have this issue, you must report it to the third-party developer. 
  14. Like
    sobrenome reacted to Stuart Silvester in Error on plugin install in PHP 8   
    You're better off to use an Application if you're creating tables anyway, all this is handled automatically (as well as the database checker and uninstallation)
  15. Like
    sobrenome reacted to Adriano Faria in Error on plugin install in PHP 8   
    Ooh ok. I'll change it.
  16. Like
    sobrenome reacted to Stuart Silvester in Error on plugin install in PHP 8   
    Your columns should have an array key that matches the column name so...
    ... 'columns' => array( 'sas_mm_id' => array( 'name' => 'sas_mm_id', 'type' => 'smallint', ...  
  17. Like
    sobrenome reacted to Adriano Faria in Error on plugin install in PHP 8   
    One of them:
    public function step1() { \IPS\Db::i()->createTable( array( 'name' => 'savedactionssorting_mm', 'columns' => array( array( 'name' => 'sas_mm_id', 'type' => 'smallint', 'length' => 6, 'allow_null' => false, 'auto_increment' => false, 'default' => 0 ), array( 'name' => 'sas_mm_position', 'type' => 'smallint', 'length' => 6, 'allow_null' => false, 'default' => 0 ), ), 'indexes' => array( array( 'type' => 'primary', 'columns' => array( 'sas_mm_id' ) ) ) ) ); return TRUE; }  
  18. Like
    sobrenome reacted to Stuart Silvester in Error on plugin install in PHP 8   
    What is your create table code?
  19. Like
    sobrenome reacted to Adriano Faria in Error on plugin install in PHP 8   
    @Daniel F @Stuart Silvester
    I think there's a bug on plugin install if this plugin creates a table. You should be using PHP 8 and with IN_DEV enabled. The error:

    The error happens in the step that has the \IPS\Db::i()->createTable.
    If you disable the IN_DEV or install the plugin in PHP 7.4, it works just fine. Tested in several plugins, 3 installs.
  20. Like
    sobrenome reacted to wegorz23 in WebP and reprocessing images   
    The same.

     
  21. Like
    sobrenome reacted to Stuart Silvester in WebP and reprocessing images   
    You'll need to upgrade to PHP 7.3 - imagecreatefromstring() cannot detect WebP in earlier versions
    https://www.php.net/manual/en/function.imagecreatefromstring.php
  22. Like
    sobrenome reacted to Afrodude in WebP and reprocessing images   
    What about the ACP have you tried to test on uploading WebP as a logo for example? If yes, did it gave you same error ? 
  23. Like
    sobrenome reacted to wegorz23 in WebP and reprocessing images   
    We also have WebP support by php gd but still not working when adding that type of image.

    When adding image like this...

    Get the same error like other users.

     
    Also trying to install all packets and fix it by my self but still no luck.
    php 7,2,,,,  gd and imageMagick  installed.
     
    On ACP Image settings when set ImageMagick i can upload .webp files as file but not as image. 

     
     
    Have u ever met such a problem like this ? upgrade to 4.6 do nothing to us.
     
    Greetings.
     
     
  24. Like
    sobrenome reacted to Nathan Explosion in (.webp) images support   
    Ok - but when does it NOT work. You say "it works only" but if you need assistance with something then you need to tell us what you are doing, and what you want to happen? Otherwise, it's guess-work on our part.
  25. Like
    sobrenome reacted to wegorz23 in (.webp) images support   
    It works only when I add it from insert existing attachment.
×
×
  • Create New...