adminsforum@hubzilla.org
odod wrote the following post Sun, 06 Oct 2024 10:48:09 +0200

Content load failure, perpetual spin circle

If 'stream' content fails to load and that "spinning circle" continues forever, what part of the database causes this to occur?

- - -
od
od@zotum.net
Sorry but this advice does not help
Do not know what is a 'php runner'
Where to change the number of database connections
How does the server log pinpoint the error?
od
od@zotum.net
Now suspect the problem is due to hubzilla repeated search for identity verification:

#^https://zotum.net/display/1e53f8d0-5ab5-4618-a52d-9151a9b62de7
pepecyb@hub.hubzilla.hu
I'll stop the ‘feeding’ here now and recommend anyone who thinks Hubzilla is so bad to simply use another, better system.

Moral of the day: If you ‘’play your instance to pieces‘’, it simply causes problems.

adminsforum@hubzilla.org
odod wrote the following post Sun, 06 Oct 2024 10:47:02 +0200

Content load failure, perpetual spin cirle

If 'stream' content fails to load and that "spinning circle" continues forever, what part of the database causes this to occur?


adminsforum@hubzilla.org
hubzillarhubzillar wrote the following post Sat, 06 Jul 2024 11:51:21 +0200

Clone import failure

Attempted to clone a channel.

Failure occurred

Text box appears after selection 'stream' from three horizontal lines menu:
"
Data export format is not compatible with this software (not a zot6 channel)
"

Suggests a software quality assurance test failure?


adminsforum@hubzilla.org
hubzillarhubzillar wrote the following post Wed, 09 Aug 2023 11:55:34 +0200

Bug 202308091  Webpages module removes necessary html elements for custom pages

Using the instructions of https://completehostingguide.com/article/creating-a-custom-page-on-a-channel-in-hubzilla?f=&owt=047a080a5cf79685f4171e4c62833777

it is observed that the following html elements are removed by hubzilla code for the module 'webpages'

<!doctype html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <link rel="stylesheet" href="/path/to/file.css" />
        <link rel='preconnect' href='/path/to/file' />
        <title></title>
    </head>
    <body>
</body>
</html>

The following is added to the web page:

<script>var homebase = hubzilla.domain/channel/...;
</script>

- - -
scott@loves.tech
Do you have >_ enabled code turned on for that channel? And are you using the template called none?

[template]none[/template]



Perhaps it expects all of those elements to be in the template it calls (a php file located in the php folder of your theme, or a if not found there, a php from the default redbasic theme).

For every template except none.php, the <html> <head> and <body> tags would already be present.

#^https://framagit.org/hubzilla/core/-/blob/master/view/php/none.php

Compare that with the default template:

#^https://framagit.org/hubzilla/core/-/blob/master/view/php/default.php

or Minimal:

#^https://framagit.org/hubzilla/core/-/blob/master/view/php/minimal.php

You can create your own templates in the php folder of your theme. For example, this is one I added in Neuhub Red Dash.

#^https://github.com/WisTex/Neuhub/blob/main/view/theme/neuhub-red-dash/php/default.php
scott@loves.tech
I am wondering if there is some kind of regression, because I don't remember it stripping out <html> <head> and <body> tags when using the none template while >_ enabled code is enabled.

It's been awhile since I checked. Has this changed, or have I never noticed it?
chris@im.allmendenetz.de
the code

<!doctype html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <link rel="stylesheet" href="/path/to/file.css" />
        <link rel='preconnect' href='/path/to/file' />
        <title></title>
    </head>
    <body>
</body>
</html>

can be saved on my hub with out any conflicts

so it may depend of what kind of file the line

<link rel='preconnect' href='/path/to/file' />

tries to pull