Jump to content

rfcontreras

Clients
  • Posts

    171
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by rfcontreras

  1. 43 minutes ago, Adlago said:

    Do you have these results in several consecutive tests - example 5 tests through 1 min. Thanks

    I've created an html file (https://www.espacioprofundo.com.ar/hola.html) which just displays "Hola" on the screen and the TTFB on several runs is on the 180 ms mark consistently.   Checking the same with the site homepage I get values from 240 to 600 ms. 

    I know that DigitalOcean (my hosting company) do not have the best TTFB in the market. I've considered to use cloudfare but all nginx_pagepseed optimizations get lost.

    Best Regards

  2. My numbers

    Nginx + php-fpm
    Nginx Pagespseed
    Memcache for invision forum
    Opcache

    1969945735_Capturadepantalla2020-01-1014_13_47.thumb.png.1b6691ec7297e85d73bb01238b5e0f92.png

     

    PageSpeed Insights (Mobile)

    1620335169_Capturadepantalla2020-01-1014_14_14.thumb.png.a2a224987858b1519fd89b5a3d0a766c.png

     

    PageSpeed insights Mobile (asking to remove unused CSS)

     

    1797572357_Capturadepantalla2020-01-1014_14_21.thumb.png.e096b286f7960225af9bdcf9fa614441.png

     

    PageSpeed insights (desktop, with several widgets)

    1326455381_Capturadepantalla2020-01-1014_14_29.thumb.png.c2554dc6962c88e55a9353d1c769441e.png

     

    Zend Opcache (php 7.2)

    434798137_Capturadepantalla2020-01-1014_14_53.thumb.png.2e69b61ef8ec28c7429eeaa8825df7a9.png

     

    Opcache hit rate

    1961564934_Capturadepantalla2020-01-1014_15_10.png.bada4e6bc0ccecd916ff1fe8db840868.png

     

    I've deployed another invision community running the same version on CloudFare, but the TTFB didn't moved.

     

    Regards

  3. I'm getting this error on the system logs

    SELECT * FROM `chatapp_chatrooms`  LEFT JOIN `core_permission_index` ON core_permission_index.app='chatapp' AND core_permission_index.perm_type='chatroom' AND core_permission_index.perm_type_id=chatapp_chatrooms.id WHERE (( FIND_IN_SET(2,perm_) ) OR perm_='*' )
    Unknown column 'perm_' in 'where clause'

    Regards

  4. Got it, that's ok, I see that you're listening to customers so you'll add it sooner or later. I've been testing and I love it, but there's a need to scroll to the top when you post a message, is possible to have a setting to put the textbox on top of the chat ? Even better, the option to have e simple text field instead of the rich text editor.. just a thought..

    Regards

  5. Hi Adlago

    You can edit css to solve this. Search for icomoon (or woff and woff2) in CSS on your theme and add font-display: swap;   this will solve the lighthouse suggestion. 

    https://css-tricks.com/almanac/properties/f/font-display/

    Below an example..

    @font-face {
      font-family: 'icomoon';
      font-display: swap;
      src:url('{url="applications/core/interface/font/icomoon.eot?v=-29n77j" base="none" noprotocol="true"}');
      src:url('{url="applications/core/interface/font/icomoon.eot?#iefix-29n77j" base="none" noprotocol="true"}') format('embedded-opentype'),
        url('{url="applications/core/interface/font/icomoon.woff?v=-29n77j" base="none" noprotocol="true"}') format('woff'),
        url('{url="applications/core/interface/font/icomoon.ttf?v=-29n77j" base="none" noprotocol="true"}') format('truetype'),
        url('{url="applications/core/interface/font/icomoon.svg?v=-29n77j#icomoon" base="none" noprotocol="true"}') format('svg');
      font-weight: normal;
      font-style: normal;
    }
    
    [class^="icon-"], [class*=" icon-"] {
      font-family: 'icomoon';
      font-display: swap;
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;

     

  6. Hi

    Thanks for this awesome app! I've been using it on an astronomy site with very good results. Now I'm implementing the app for a nature site and I'm having a problem when I import markers from google maps.

    I've exported markers for "National Parks" from Google Earth, everything went smooth, but when I browse the markers I see that some data came with the markers, specifically ranking, an image (very nice!) and contact information.

    This is what I see on the National Parks markers I've just imported

    Map View

    334140243_Capturadepantalla2018-10-0120_23_50.thumb.png.b2169c4583942358fa3c2e6bbfdbe41e.png

    Marker detail

    1214585687_Capturadepantalla2018-10-0120_23_59.thumb.png.c9927e14593ec42e35e9ac707431dddf.png

    It's seems that the additional information is bigger than the placeholder, I would like to know if it's possible to cover all the information on the placeholder dynamically since users don't have all this information

    Thanks in advance!

  7. Changing the settings in my.cnf to sql-mode="" solves the issue temporarily, but adding attach_date to the sql statement should solve the issue. Mysql 5.7 is way more restrictive and requires the order by fields on the select statement.

    Looking forward this change on the plugin

    Thanks in advance!

  8. Maybe it's related, I get this error when changing themes... 

     

    SELECT DISTINCT(pid) FROM `core_attachments`  LEFT JOIN `core_attachments_map` ON core_attachments_map.attachment_id=core_attachments.attach_id  LEFT JOIN `forums_posts` ON forums_posts.pid=core_attachments_map.id2  LEFT JOIN `forums_topics` ON forums_posts.topic_id=forums_topics.tid  LEFT JOIN `core_permission_index` ON core_permission_index.perm_type_id=forums_topics.forum_id WHERE ( forum_id IN(3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,36,37,39,40,41,43,44,45,46,47,48,49,50,51,52,53,54,58,60,61,63,64,66,67,69,71,73,74) ) AND forums_posts.new_topic=1 AND core_permission_index.app='forums' AND core_permission_index.perm_type='forum' AND core_attachments.attach_is_image=1 AND core_attachments_map.location_key='forums_Forums' AND core_attachments.attach_is_archived=0 AND forums_posts.queued=0 AND forums_topics.approved=1 ORDER BY attach_date DESC LIMIT 0,15
    IPS\Db\Exception: Expression #1 of ORDER BY clause is not in SELECT list, references column 'espacio_ipb.core_attachments.attach_date' which is not in SELECT list; this is incompatible with DISTINCT (3065)

     

    • PHP Version7.0.30-0ubuntu0.16.04.1
       
    • MySQL Version5.7.22-0ubuntu0.16.04.1 

  9. I've installed the plugin on 4.3.4, but fails to add, showing an "Error" text. Reloading the page the message does not appear but neither the plugin. Enabled hook, activated, select all forums, suggested settings but nothing. 

    Adding the block (error on the place I've drag and dropped Recent Forum Images)

    769942148_Capturadepantalla2018-07-1819_19_35.png.c8e0291e668cd2fe1f97dad9bee2e3b7.png

     

    Show this when I finished adding the block

    29870948_Capturadepantalla2018-07-1819_19_42.png.67a88854be85cc48eb01f43f13c0314d.png

     

    On page reload it dissapears but the block is missing

    127825936_Capturadepantalla2018-07-1819_19_48.png.c9c125bd8ccc75016f043ffd4dce0ef5.png

     

    These are the settings I'm using

     

    1945261635_Capturadepantalla2018-07-1819_15_46.thumb.png.9aadef1ac6b40eec7b99f1b404f0748c.png

    Thanks in advance!

     

    Captura de pantalla 2018-07-18 19.19.26.png

  10. Hi all,

    Trying to make Pages similar in usability as Joomla, I suggest to include more templates for database, categories and listing templates. The category listing template is really ugly, they're articles, not a blog! 

    I suggest to include

    a) The "recipes" and "release notes" should be included as default in every IPB Pages installation. It will not harm to add a lot of ways to show the information.
    b) Category listing should have options like database's  article template  (category 3 column feature image).  Some very nice things were done by users, why dont include them?


    c) Import/Export for data OR move content between databases.

    Pages has a lot of potential, good for the admin, but regarding look & feel you must learn template syntax to do something nice.

    Best Regards!

  11. It's impossible to migrate a phpbb/joomla converted 3.4.8 forum to 4.0 (all 4.0 realases tested). During the upgrade the table login_methods is deleted, and then is dumps this error on screen....

     

    I've checked before the upgrade and the table exists, 3.4.8 works perfect, the "are you ready for ips4" says everthing is ok but it blatantly fails. I've already submitted a ticket but the answer was "test installs are not supported", I cant migrate a production site, have errors, wait for support to answer a ticket, and then pray. 

    This error was already posted, but nobody from invision answered. The renewal is coming but really I dont know.

    Any clue is really appreciated

    Captura de pantalla 2015-11-03 22.31.05.png

×
×
  • Create New...