Skip to main content


@Friendica Support

Hi there!

Having a strange behavior of one profile with respect to the domain.com/network page.
For some reason it just gives a blank page.
Same goes for:
/network?mention=1
/network?order=created
/network?order=commented
but not for:
/network?star=1

At the same time it does "feel" that this goes away sometimes, but this "feeling" will need some recheck.

As of now other related profiles that haven't posted anything or any interaction at all do display the network page without content as they do not have any contacts.

A first guess was that this is due to the startpage addon but changing the setting their from "network" to a different page didn't solve the problem.

This is happening on a "brand new" 2024.12 setup, hosted alongside a 2024.03 with the exact same admin settings that as of now hasn't any of these problems.


Any idea what this could be or how to solve this?

This could be the problem that we fixed for the next version.

@Michael πŸ‡ΊπŸ‡¦

Some reference how to fix this without update in some file?

Not out of my head. It has to be one of the pull requests from the last few months.
@TupambAdminCom [2024.12] Blank pages should have a related Fatal Error in the PHP log.

Friendica Support reshared this.

#5 #4 #1 #2 #3 #9 #8 #6 #7 #10 @Hypolite Petovan
How is this to understand @Hypolite Petovan.
Reading your link and follow ups I don't get much.
Is there a way tu pull only this fix from github or is it necessary to go "full dev branch"?
And why does this happen only on one profile, is there a way to create some situation that what ever is empty isn't anymore empty.
Like posting something, or commenting on some mastodon post or something like that?
Also, is this 2024.12 specific?

@utopiArte In the "Files" tab you have the patch (code changes) that fixes this problem.

If you want this fix and many others you would have to switch to the dev branch.

It isn't specific to any version that I know of.

Friendica Support reshared this.

@Hypolite Petovan

In the "Files" tab you have the patch (code changes) that fixes this problem.


https://github.com/friendica/friendica/pull/14734/files


Thx, just did the following and apparently it works.
Please see in any case the referred link on github to compare well the lines were to insert these changes!

nano /../friendicaflder/src/Model/Item.php

Search for the line:
[CTRL]+ [w]:
$s = self::replacePlatformIcon($s, $shared_item, $uid);
insert above:

		if (!$s) {
				DI::logger()->notice('Unexpected empty item HTML', ['item' => $item]);
			}

Search for the line:
[CTRL]+ [w]:
$dom = new \DOMDocument();

insert above:

	if ($html === '') {
			return $html;
		}

πŸ‘
⇧