friendica.eskimo.com

@Friendica Support

Hi there,
working on moving old friendica sites from a shared hosting to a VPS, I ran into the following problem I can't find a solution for. This actually happens with one 2021.04 instance but not with another (anymore), so I'm crosschecking all the settings but can't find how to solve this. Both sites were installed as 2012.04 from the start:

not working version wrote:

This is Friendica, version 2021.04 that is running at the web location sub.domain.com/var/www/subdomaincom. The database version is 1413/1413, the post update version is 1400/1400.

working version wrote:

This is Friendica, version 2021.04 that is running at the web location sub.domain.com. The database version is 1413/1413, the post update version is 1400/1400.

As visible in the screen, the site also displays the following path on top of the page, and of course calls that URL:
sub.domain.com/var/www/subdomaincom

Different intents to fix this by changing or deleting the following settings from the console didn't work out:

system.basepath => /var/www/domaincom
system.urlpath => /var/www/domaincom/

Even more astonishing, sending the following setting with the console:
/bin/console config system url https://sub.domain.com
.. the site is displayed and works as it should be for a few minutes, and than falls back into the wrong behavior, like if the worker changes something when ever the cron kicks in. In that time span I can log in and even go thru the admin settings but this setting is not available.

Intents to modify the following specifications in local.config.php didn't work out either:

'system.basepath' => '',
'url.basepath' => '',
'system.urlpath'=> '',

At least I figured out/ realized that url. and system. actually shouldn't be used at all as:
'config' => [
        ],
'system' => [
        ],

.. are actually "in charge" of defining that. So now I'm not sure either if those wrong lines somehow made it from local.config.php into the DB and are now part of the problem.

I found this conversation by @Hypolite Petovan on github:

Table config, cat = "system" AND key = "basepath"


and it actually looks like this is exactly te problem but I have no experience at all with mysql over CLI SSH and don't know what commands to use to delete the apparently wrong setting in the DB.

Screen of the front page showing the error

Is there a way to delete entries with bin/console?
I did manage to change some settings from there but couldn't find any hint how to "delete" an entry entirely from there:

/var/www/inversioncom/bin/console config -h
console config - Manage site configuration
Synopsis
bin/console config <category> <key> <value> [-h|--help|-?] [-v]

bin/console config system basepath /
system.basepath <= /

This entry was edited (6 days ago)
@utopiArte The last command looks correct, although this kind of low-level config value should be set in the config file, not with the console that only interacts with the database config.

@Hypolite Petovan

Trying to document changes and results in kind a step by step answers.
The following setting leaves the site with a blank page and results in bin/console config printing the error message:
[Error] Missing database structure config file static/dbstructure.config.php

local.config.php

'config' => [
                'system.basepath' => '/',
        ],

'system' => [
                'basepath' => '/',
                'urlpath' => '/var/www/subdomaincom/',
        ],
This entry was edited (6 days ago)

@Hypolite Petovan

local.config.php

'config' => [
                'system.basepath' => '/',
        ],

        'system' => [
                'basepath' => '/var/www/subdomaincom/',
                'urlpath' => '/var/www/subdomain/',
        ],

bin/console config print:

config.system.basepath => /

[code]config.system.basepath => /

system.theme => frio
system.url => https://sub.domain.com
system.php_path => /usr/bin/phpX.y-fpm
system.basepath => /var/www/subdomaincom/
system.urlpath => /var/www/subdomaincom/
system.ssl_policy => 1
[/code]

Site doesn't work, resulting in the screen as shown in the inicial post.
Setting the URL as described:
/var/www/subdomaincom/bin/console config system url https://sub.domain.com
.. the site works for a few minutes.

This entry was edited (6 days ago)
1

@Hypolite Petovan

local.config.php

'config' => [
        ],

        'system' => [
                'basepath' => '/var/www/subdomaincom/',
                'urlpath' => '/var/www/subdomaincom/',
        ],

bin/console config print:

config.system.basepath => /

system.theme => frio
system.url => https://sub.domain.com
system.php_path => /usr/bin/phpX.y-fpm
system.basepath => /var/www/subdomaincom/
system.urlpath => /var/www/subdomaincom/
system.ssl_policy => 1

Site doesn't work, resulting in the screen as shown in the inicial post.
Setting the URL as described:
/var/www/subdomaincom/bin/console config system url https://sub.domain.com
.. the site works for a few minutes.
This entry was edited (6 days ago)
1

[EDIT: site worked for "a few minutes"]
@Hypolite Petovan

local.config.php

'config' => [
                  ],

        'system' => [ 
                'urlpath' => '/var/www/subdomaincom/',
        ],

bin/console config print, the order of the lines is different!

system.url => https://sub.domain.com
system.php_path => /usr/bin/phpX.y-fpm
system.urlpath => /var/www/subdomain/
system.ssl_policy => 1
system.basepath => /var/www/subdomaincom

Site doesn't work, resulting in the screen as shown in the initial post.

Setting the URL as described:
/var/www/subdomaincom/bin/console config system url https://sub.domain.com
.. the site works for a few minutes.

This entry was edited (6 days ago)
1

@Hypolite Petovan

local.config.php

'config' => [
        ],

        'system' => [
        ],

bin/console config print, this time one of the references doesn't show up anymore:

system.theme => frio
system.url => https://sub.domain.com
system.php_path => /usr/bin/phpX.y-fpm
system.ssl_policy => 1
system.basepath => /var/www/subdomain

Site doesn't work, resulting in the screen as shown in the inicial post.
Setting the URL as described:
/var/www/subdomain/bin/console config system url https://sub.domain.com
.. the site works for a few minutes.
This entry was edited (6 days ago)
1
@utopiArte Please check the meaning of the relevant config keys in the static/defaults.config.php file.
1 1

@Hypolite Petovan

On a first glimps, I haven't found any mention of the path terms.
In any case I will wonder about the meaning of: "the meaning of the relevant config keys".
Like to say, if I can find "relevant config keys" ..

1

@Hypolite Petovan

Couldn't find any relevant setting or hint in static/defaults.config.php searching for the term path.

I did (again) a diff check of the print of bin/console config of the two subdomains.

The domain that doesn't work still displays the setting;
config.system.basepath => /
.. and I have no idea how to delete/ erase the /

The subdomain that works has the following line that doesn't show up in the one that doesn't work:
system.urlpath => /var/www/sudbomain2/

1

@utopiArte Sorry, I was on mobile and couldn’t check but these keys should have been mentioned in this file, along their purpose.

system.basepath is the absolute file path where Friendica is installed, e.g. /var/www/subdomaincom in your case.

system.urlpath should only be used if Friendica is installed in a subfolder of the domain you’re using, and is relative to that domain. It doesn't seem to be relevant to you, so it should be blank.

system.url is the absolute URL where your Friendica node is accessible. It should consist in the protocol, the domain and the urlpath together. In your case it should be https://sub.domain.com/

system.php_path should be the absolue path to the PHP CLI executable. It should not point to PHP-FPM, which is used to process web requests.

This entry was edited (6 days ago)
1 1

@Hypolite Petovan

It should not point to PHP-FPM


Changed this setting in the local.config.php to phpX.y. The sites are working like before.

I decided to copy/paste identically local.config.php of the site that does work to the one that doesn't, only changing the specific detail of DB and folder structure, and also made sure that the .conf files are alike.
Still having the same problem.

Compared the print of:
/var/www/subdomaincom/bin/console config
in the few minutes it is working correctly after sending:
/var/www/subdomaincom/bin/console config system url https://sub.domain.com
and when it doesn't work but the prints are identically.

The print right now for both sites show the following quite at the bottom of the print:

system.url => subX.domain.com
system.php_path => /usr/bin/phpX.y
system.urlpath => /var/www/subXdomaincom/
system.ssl_policy => 1
system.basepath => /var/www/subXdomain/

The only difference between the two sites in the print is the following line quite at the top:
config.system.basepath => /
This line doesn't exist in the site that is working and I can't find a way to skip it or delete the /.
Meld (the diff program) shows a dot in front of the the slash ./, the simple text editor Kate doesn't.

Meld actually also shows the [enter] signs in the same way, a little bit less colored, in lines that have them, like it shows the dot.
🤷‍♂️


(notes (to myself))

hypolite wrote:

system.urlpath should only be used if Friendica is installed in a subfolder of the domain you’re using, and is relative to that domain. It doesn't seem to be relevant to you, so it should be blank.

As of now local.config.php does define system.urlpath, but as the site that works uses the line I left it for now.


hypolite wrote:

system.url is the absolute URL where your Friendica node is accessible. It should consist in the protocol, the domain and the urlpath together. In your case it should be https://sub.domain.com/

system.url is actually not set as https://sub.domain.com/ but as sub.domain.com
1

@utopiArte So, forget about system.urlpath, it isn't used in any way by Friendica anymore, so value or not will not change your predicament.

However, the system.url should include the scheme. It is the most important config values to determine the base URL of your Friendica install.

What do you mean by "works for a few minutes"? How many pages correctly show in the mean time? What happens when the few minutes have elapsed?

1

@Hypolite Petovan

What do you mean by "works for a few minutes"? How many pages correctly show in the mean time? What happens when the few minutes have elapsed?


The site works correctly for several minutes.
I can log in.
All pages show correctly, including admin pages.
Once it falls back to redirecting to:
sub.domain.com/var/www/subdomain/
.. I have to execute again:
/var/www/subdomaincom/bin/console config system url https://sub.domain.com
.. the console prints (as always):
system.url <= https://sub.domain.com
and I can use the site again for several minutes before it falls back to the wrong behavior.

This entry was edited (5 days ago)
1

@Hypolite Petovan

After a break I started to check out everything again and did several tests.
I changed the order of the lines in local.config.php and managed to get the exact same lines and order in the bin/console prints of both sites.
The problem stayed.
Than I checked example_local.config.php to compare and found that actually any of the lines figure there, so I deleted them all together.
Right now local.config.php looks like this:

        'config' => [
                'admin_email' => 'anyname@subdomain.com',
                'sitename' => 'sitename',
                'register_policy' => \Friendica\Module\Register::CLOSED,
                'register_text' => '',
        ],

        'system' => [
                'ssl_policy' => 1,
                'default_timezone' => 'UTC',
                'language' => 'es',
        ],

The site still behaves the same way. At first it loads correctly, and quite fast, after some minutes it starts taking lot's of time and ends up like in the screen of the initial post.

Now the bin/console config print shows only the following two specific lines related to the whole path issue, all the other references mentioned above are gone.
I have no idea how to delete the remaining references. Those lines have to figure somewhere in the DB I guess, but again, no idea what lines to execute to display them or delete them:
config.system.basepath => /
system.basepath => /var/www/subdomain

1

@utopiArte Once you set a config value using the console, changing the value in the config file won't help as the console stores the value in the DB and it has precedence over the files.

No matter how you did it, the important part is that system.basepath must be set to the install folder, and system.url must be set to the full URL. You can verify what the current value used by Friendica for either config keys is using the console.

I've browsed https://inversion.tupambae.com and when the style is missing, the first line shows inversion.tupambae.com/var/www/inversioncom even though it should show https://inversion.tupambae.com. This is governed by the system.url config key.

1

@Hypolite Petovan

To me it "feels" that /var/www/subdomaincom is added by some mecanism to sub.domain.com. In particular because when setting specifically with the console command /var/www/subdomaincom/bin/console config system url -> https://sub.domain.com it works for some minutes.

1

@Hypolite Petovan

As last intent I tried to use the following commands to reset the two mentioned settings but the behaviour ist still the same:
/var/www/subdomaincom/bin/console config system url https://sub.domaincom
/var/www/subdomaincom/bin/console config system basepath /var/www/subdomaincom/

Can't see a solution for this.

1
@utopiArte When the display breaks, can you confirm the system.url config value changed?
1

@Hypolite Petovan

No I can't.
There is no change at all in the results of the bin/console config output (print).
Actually even the settings send and "officially" accepted by the system do not show up in the print.

Latest thing I tried, totally feed up, was to send the commands several times and also making sure they end with a slash.

So I send:
/var/www/subdomaincom/bin/console config system url https://sub.domain.com/
system.url <= sub.domain.com/
/var/www/subdomaincom/bin/console config system basepath /var/www/subdomaincom/
system.basepath <= /var/www/subdomaincom/
/var/www/subdomaincom/bin/console config system url https://sub.domain.com/
system.url <= sub.domain.com/
/var/www/subdomaincom/bin/console config system basepath /var/www/subdomaincom/
system.basepath <= /var/www/subdomaincom/

And right now it looks like it sticked, for now the site remains operative!
🙄


(please have in mind that this is 2021.04, if it weren't so outdated I'd say we need to figure out the problem because this feels like a real problem under the hood)

This entry was edited (5 days ago)
1
@utopiArte Oh I forgot this was such an old version. There still is an issue with the pictures because /var/www/subdomain/ gets prepended in the URL. Do you mind running bin/console config system and send the output to hypolite@mrpetovan.com ?
1 1

@Hypolite Petovan

Well now strangely on both sites bin/console config doesn't work anymore.
Both throw the following error message:

rootName@VPShosting:# /../doamincom/bin/console config
PHP Fatal error: Uncaught Error: Undefined constant "CURLE_OPERATION_TIMEOUTED" in /../domaincom/boot.php:229
Stack trace:
#0 /../doamincom//vendor/composer/autoload_real.php(69): require()
#1 /../doamincom//vendor/composer/autoload_real.php(59): composerRequireFriendica()
#2 /../doamincom/vendor/autoload.php(7): ComposerAutoloaderInitFriendica::getLoader()
#3 /../doamincom/bin/console.php(31): require('...')
#4 {main}
thrown in /../doamincom/boot.php on line 229

Can't recall doing anything at all, accept trying to get the php imap module to work.

1

@utopiArte There's no file named boot.php at the root of the Friendica install, not sure where it's coming from.

The CURLE_OPERATION_TIMEOUTED constant is defined by the PHP curl extension, please verify it is enabled in the CLI version of php with php -i | grep curl.

1
For what it's worth, I found friendica to be unfriendly to non-root URLs, that is to say URLs that aren't at /, so I setup a subdomain specifically for friendica, https://friendica.eskimo.com/. You may wish to give that a try. The machine domain does not need to be this, you can do it by configuring DNS to point to the base IP of the machine and then configuring a subdomain in Apache or Nginx as a virtual host.
Shoreline, WA, USA
1

Not sure if I get what you mean with none-root @Nanook.

Like instead of:
/var/www/html/subdomain
or
/var/www/subdomain
just
/subdomain
?

1

Also, this is a btop from an 18 core machine with 256GB of RAM with the major load being friendica, a secondary load is hubzilla, mastodon, and miskey, but friendica represents more load than the latter three combined, but it also gets more traffic than the latter three combined. But what I am getting at here, you may want to consider dedicating a physical server. I'll grant you it's busier than usual as we've just returned the server to service after three months of downtime, 7 motherbords, three power supplies, and two CPU's later.

[

1

@Hypolite Petovan

Not mentioned in the inicial post or answers as of now is the setting of /sites-available/sub.domain.com-le-ssl.conf

sub.domain.com-le-ssl.conf
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin admin@domain.com
ServerName sub.domain.com
DocumentRoot /var/www/subdomaincom
<Directory /var/www/subdomaincom>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
<FilesMatch \.php$>
# 2.4.10+ can proxy to unix socket
SetHandler "proxy:unix:/run/php/phpXy4-fpm.sock|fcgi://localhost"
</FilesMatch>
# DirectoryIndex index.php
ErrorLog ${APACHE_LOG_DIR}/subdomaincom_error.log
CustomLog ${APACHE_LOG_DIR}/subdomaincom_access.log combined
# RewriteEngine on
# Some rewrite rules in this file were disabled on your HTTPS site,
# because they have the potential to create redirection loops.
# RewriteCond %{SERVER_NAME} =sub.domain.com
# RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/subX.domain.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/subX.domain.com/privkey.pem
</VirtualHost>
</IfModule>
1