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

Everything posted by rfcontreras

  1. 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 PageSpeed Insights (Mobile) PageSpeed insights Mobile (asking to remove unused CSS) PageSpeed insights (desktop, with several widgets) Zend Opcache (php 7.2) Opcache hit rate I've deployed another invision community running the same version on CloudFare, but the TTFB didn't moved. Regards
  3. Hi Jackall, Any clue ? Thanks in advance!
  4. 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
  5. I've checked with a regular user, and it's not logged in anonymously.
  6. Everything is working, but regular users don't see the Who's Online list, it's empty for them. I've installed a fresh copy of the application, so permissions seems to be ok! Thanks in advance!
  7. Hi Jackall, Let's my community test it, I'll give you my feedback once I get enough usage. Thanks!
  8. 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
  9. Thank you very much, it's working now! How do I enable attachments? (insert other media) like the demo? Thanks in advance!
  10. I've just purchased the app, it's very good! Anyway I cant find a way to delete messages, I'm forum admin but the "x" is not available, how do I set the permission to delete messages for admins ? Thanks in advance!
  11. 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;
  12. 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 Marker detail 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!
  13. Hi, Did that but didn't work, I've removed the excluded forums so should be more that 100 images to show, I've configured to show 15 but it's showing just 6.. Thanks in advance
  14. Sorry, I didnt explained well, my apologies. Before the mysql change (v .09) it worked with 10 images, but with v 0.10 shows only 1 image. My settings are But it's showing just the only one image instead of 10 Thanks in advance
  15. Disabling this two settings show the correct image quantity, but I need to show just the first image of each post. Thanks in advance
  16. Thanks! This fix worked, but whatever I put on image quantity it shows Just 1 image. Should I need to remové and install or just upgrade that I did ? Thanks in advance
  17. 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!
  18. 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
  19. 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) Show this when I finished adding the block On page reload it dissapears but the block is missing These are the settings I'm using Thanks in advance!
  20. 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!
  21. 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
×
×
  • Create New...