Skip to main content
Recent Posts
41
Bug Reports / Re: ElkArte 2.0 Beta 1 Issues
Last post by Spuds -
Quote from: "ScottJB" – When try to do select via checkbox and remove anything, it will not remove. It just refreshes the screen
In order to remove post, topic, draft, etc., you need to remove one at a time.
I see what that is .... at least for drafts.  Need to decide what I want to do about that one.
Quote from: "ScottJB" – On mobile device, it seems trying to insert attachment into the post does not work. You can upload and post, but can't insert the item into the post itself.
Have not checked that one yet, still stuck on the first one:laughing:
42
Bug Reports / Re: ElkArte 2.0 Beta 1 Issues
Last post by ScottJB -
@Spuds

Couple things found:

1. When try to do select via checkbox and remove anything, it will not remove. It just refreshes the screen
In order to remove post, topic, draft, etc., you need to remove one at a time.


2. On mobile device, it seems trying to insert attachment into the post does not work. You can upload and post, but can't insert the item into the post itself.
44
General ElkArte discussions / Re: Load time achievement
Last post by Spuds -
That is strange.  

This site is on a ispconfig control panel, mariadb, apache and connects via localhost in the admin panel.  What happens when you are at the command line and try to connect with mysql -h localhost -u youruser -p and then mysql -h 127.0.0.1 -u youruser -p  to see if you get a socket or permissions error.
45
Addons / Re: [ADDON] Levertine Gallery
Last post by Spuds -
Edit Addons/Levertine/Helper/Verify.php

Find (line 35)
$context['require_verification'] = VerificationControlsIntegrate::create($verificationOptions, true);
change it to
$context['require_verification'] = VerificationControlsIntegrate::create($verificationOptions, $do_test);
46
General ElkArte discussions / Re: Load time achievement
Last post by Hj Ahmad Rasyid Hj Ismail -
I will retry, but last time it was not working, and I have to use 127.0.0.1. Anyway, queries delays are facts, whether or not localhost vs 127.0.0.1 was the main issue or otherwise not.

Edited: Changing it to localhost definitely causing error 500 issues. I've just re-tried. 1.1 is using localhost just fine as mentioned earlier, so not my server issue.
48
General ElkArte discussions / Re: Load time achievement
Last post by Hj Ahmad Rasyid Hj Ismail -
I may have posted in wrong topic but I am still talking about the buggy thing in Elkarte 2.0 beta 1, still about load time, but only in terms of its queries. Yes, I was not actually talking about Pagespeed or GMetrix site assessment, but the queries in comparing it with 1.1, which is a big difference.

Attached below are the images to ease explanation.
queries-2.0 beta 1.png
queries-1.1.10.png

However, after researching, I realized the difference is because this beta version cannot use "localhost" to connect to database like 1.1, but instead requires "127.0.0.1", for it to work.

Quotelocalhost: Often forces a local Unix socket or named pipe connection, which bypasses the network stack entirely and runs very fast (0.03 seconds).

127.0.0.1: Forces an IPv4 TCP/IP loopback connection, which goes through the network layer.

I installed both in the same server, same nginx with http3 quic setup, in the one ISPConfig, but I could not find fault on my side except that, so I really think this is a bug.