[Solved]Presearch Blank Topic is solved

For support with specific websites

Moderator: trava90

Forum rules
Please always mention the name/domain of the website in question in your topic title.
Please one website per topic thread (to help keep things organized). While behavior on different sites might at first glance seem similar, they are not necessarily caused by the same.

Please try to include any relevant output from the Toolkit Error Console or the Developer Tools Web Console using the following procedure:
  1. Clear any current output
  2. Navigate or refresh the page in question
  3. Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
User avatar
dtoxic
Moon lover
Moon lover
Posts: 94
Joined: 2017-10-04, 00:14
Location: Tau Ceti

[Solved]Presearch Blank

Unread post by dtoxic » 2023-02-09, 09:55

https://presearch.com/

Is anyone having problems with blank presearch pages? the start page is ok,when i search it's blank

This is the error in the console

Code: Select all

Timestamp: 9/2/2023 10:54:13 AM
Error: TypeError: Not enough arguments to Window.postMessage.
Source File: https://presearch.com/assets/app.js
Line: 745
Last edited by dtoxic on 2023-02-09, 11:45, edited 1 time in total.
Windows 7 SP1 X64
Windows 10 LTSC X64

User avatar
Kris_88
Keeps coming back
Keeps coming back
Posts: 939
Joined: 2021-01-26, 11:18

Re: Presearch Blank

Unread post by Kris_88 » 2023-02-09, 11:20

window.postMessage with 1 argument...
app.js calls window.postMessage({"update_time_param":true})

https://html.spec.whatwg.org/multipage/ ... g-messages
Living Standard — Last Updated 6 February 2023
window.postMessage(message [, options ])

User avatar
dtoxic
Moon lover
Moon lover
Posts: 94
Joined: 2017-10-04, 00:14
Location: Tau Ceti

Re: Presearch Blank

Unread post by dtoxic » 2023-02-09, 11:27

Have no idea what all that means,is there something i should do? or is this on pale moon's/websites end?
Windows 7 SP1 X64
Windows 10 LTSC X64

User avatar
moonbat
Knows the dark side
Knows the dark side
Posts: 4981
Joined: 2015-12-09, 15:45
Contact:

Re: Presearch Blank

Unread post by moonbat » 2023-02-09, 11:34

dtoxic wrote:
2023-02-09, 11:27
or is this on pale moon's/websites end?
It's a website bug.
"One hosts to look them up, one DNS to find them and in the darkness BIND them."

Image
Linux Mint 21 Xfce x64 on HP i5-5200 laptop, 12 GB RAM.
AutoPageColor|PermissionsPlus|PMPlayer|Pure URL|RecordRewind|TextFX

User avatar
Kris_88
Keeps coming back
Keeps coming back
Posts: 939
Joined: 2021-01-26, 11:18

Re: Presearch Blank

Unread post by Kris_88 » 2023-02-09, 11:36

You can use this dirty hack until the browser is adopted to the new standard...

Code: Select all

// ==UserScript==
// @name        presearch
// @namespace   prs1
// @include     https://presearch.com/*
// @run-at document-start
// @version     1
// @grant       none
// ==/UserScript==

window.postMessage = function(msg) { };

User avatar
dtoxic
Moon lover
Moon lover
Posts: 94
Joined: 2017-10-04, 00:14
Location: Tau Ceti

Re: Presearch Blank

Unread post by dtoxic » 2023-02-09, 11:41

Thank You Kindly guys
Windows 7 SP1 X64
Windows 10 LTSC X64

User avatar
adoxa
Fanatic
Fanatic
Posts: 168
Joined: 2019-03-16, 13:26

Re: [Solved]Presearch Blank

Unread post by adoxa » 2023-02-09, 11:55

I took a different approach and added a "/" parameter (which I believe is the default), which gave an error "Failed to fetch the results", even though it did get the results. This seems pretty similar to what's going on with eBay.

Locked