UPDATE: This has been implemented. In the case of the private entry having multiple categories, the first category returned by the database retrieval is selected.
Take a second look at the private entries list
- Andrew Lee
- Posts: 3198
- Joined: Sat Feb 04, 2006 9:19 am
- Contact:
Re: Take a second look at the private entries list
Re: Take a second look at the private entries list
Thanks! Meanwhile, the see private entries mode works for anonymous users too. i.e. if you choose it and log out (but keep the link) or when you manually add &rt=p. Better fix before search engines catch on (if they didn't already).
Also, if you click Public or Private it adds an extra &, i.e. &&rt=p or &&rt=f. It doesn't break anything, but should be avoided for clearer code.
Also, if you click Public or Private it adds an extra &, i.e. &&rt=p or &&rt=f. It doesn't break anything, but should be avoided for clearer code.
- Andrew Lee
- Posts: 3198
- Joined: Sat Feb 04, 2006 9:19 am
- Contact:
- Andrew Lee
- Posts: 3198
- Joined: Sat Feb 04, 2006 9:19 am
- Contact:
Re: Take a second look at the private entries list
This has been fixed. Thanks for the suggestion!
Re: Take a second look at the private entries list
The double && seems fixed too, so I guess you did catch it, thanks!
Re: Take a second look at the private entries list
There's another issue, if you look by username (/index.php?q=[username XYZ]) then it looks for both Public and Private entries no matter what you do.
It makes it hard to monitor one's still private entries...
Could you fix?
It makes it hard to monitor one's still private entries...
Could you fix?
- Andrew Lee
- Posts: 3198
- Joined: Sat Feb 04, 2006 9:19 am
- Contact:
Re: Take a second look at the private entries list
Please refer to this post.
So basically what you want to do is to add a '#' to the front of the username to see his private submissions.
- [username] alone simply list all the entries that the user has thumbed up, even those that has gone private.
(Note: all entries submitted by the user automatically goes under his "thumbed up aka. favorite" list)
- [@username] list all the user's submissions (both public and private).
- [#username] list all the user's submissions (private only).
tproli did suggest that I add these more arcane parameters to the detailed search page, but I must have decided against it because I assumed most people won't be interested. Well, no one asked until 13y later, so I was right

But I think maybe I would add it to a collapsible text block in the search details page so that I won't be forced to search through the forum for this again!
Re: Take a second look at the private entries list
This one is broken.Andrew Lee wrote: ↑Fri Mar 14, 2025 9:08 pm - [#username] list all the user's submissions (private only).
Either way, by now even the homepage shows private entries when not being logged in...
Although please vote for the specific one from the screenshot to make it public.

- Andrew Lee
- Posts: 3198
- Joined: Sat Feb 04, 2006 9:19 am
- Contact:
Re: Take a second look at the private entries list
I think I figured out what's wrong and fixed it. Try again pls.lwc wrote: ↑Sun Mar 16, 2025 11:16 amThis one is broken.Andrew Lee wrote: ↑Fri Mar 14, 2025 9:08 pm - [#username] list all the user's submissions (private only).
This is due to increasing CloudFlare's security level to "I am under attack", which for some convoluted reason stopped the database statuses from updating when the entry score increases above the threshold (10). This has been fixed.lwc wrote: ↑Sun Mar 16, 2025 11:16 am Either way, by now even the homepage shows private entries when not being logged in...
Although please vote for the specific one from the screenshot to make it public.![]()
Re: Take a second look at the private entries list
Sorry, still broken.Andrew Lee wrote: ↑Sun Mar 16, 2025 5:54 pmI think I figured out what's wrong and fixed it. Try again pls.lwc wrote: ↑Sun Mar 16, 2025 11:16 amThis one is broken.Andrew Lee wrote: ↑Fri Mar 14, 2025 9:08 pm - [#username] list all the user's submissions (private only).
Hard to test since that aforementioned entry is now public.This is due to increasing CloudFlare's security level to "I am under attack", which for some convoluted reason stopped the database statuses from updating when the entry score increases above the threshold (10). This has been fixed.lwc wrote: ↑Sun Mar 16, 2025 11:16 am Either way, by now even the homepage shows private entries when not being logged in...
Although please vote for the specific one from the screenshot to make it public.![]()

- Andrew Lee
- Posts: 3198
- Joined: Sat Feb 04, 2006 9:19 am
- Contact:
Re: Take a second look at the private entries list
More details pls? For example, this search lists all your private submissions.
Should be a one-off. Basically the score was already above 10, but the status wasn't updated to "New" because the periodic cron job aborted due to the CloudFlare change.
Re: Take a second look at the private entries list
It's only because this link was manually encoded, probably so you can save it in the forum. q=%5B%23lwc%5D might work, but q=[#lwc] doesn't:Andrew Lee wrote: ↑Tue Mar 18, 2025 2:30 amMore details pls? For example, this search lists all your private submissions.
- portablefreeware.com/index.php?q=[lwc] - works, but*
- portablefreeware.com/index.php?q=%5Blwc%5D - works
- portablefreeware.com/index.php?q=[#lwc] - broken
- portablefreeware.com/index.php?q=%5B%23lwc%5D - works, but*
- portablefreeware.com/index.php?q=[@lwc] - works, but*
- portablefreeware.com/index.php?q=%5B%40lwc%5D - works
So we have 2 works, 3 "works but", and 1 broken.
- Andrew Lee
- Posts: 3198
- Joined: Sat Feb 04, 2006 9:19 am
- Contact:
Re: Take a second look at the private entries list
I think you cannot directly use certain characters in hyperlinks without encoding them. This includes the square brackets and quite a few other characters, including '#'. When you type these characters in a form and submit, the browser will take care of encoding these characters for you before sending them to the backend.lwc wrote: ↑Tue Mar 18, 2025 10:05 am It's only because this link was manually encoded, probably so you can save it in the forum. q=%5B%23lwc%5D might work, but q=[#lwc] doesn't:* But it has a weird Forum topics matching your query link at the beginning*, which upon clicking just opens a list of forum links, which meaning is hard to understand
- portablefreeware.com/index.php?q=[lwc] - works, but*
- portablefreeware.com/index.php?q=%5Blwc%5D - works
- portablefreeware.com/index.php?q=[#lwc] - broken
- portablefreeware.com/index.php?q=%5B%23lwc%5D - works, but*
- portablefreeware.com/index.php?q=[@lwc] - works, but*
- portablefreeware.com/index.php?q=%5B%40lwc%5D - works
So we have 2 works, 3 "works but", and 1 broken.
I can probably hide the "Forum topics matching your query" section for username queries only if you find that confusing. Can't think of any functional impact.
Re: Take a second look at the private entries list
From afar and given that showing "Forum topics matching your query" is the default for every search on the main page, I don't think that would be entirely advisable because it breaks consistency and user expectation -- couldn't it just return an empty list where necessary instead?Andrew Lee wrote: ↑I can probably hide the "Forum topics matching your query" section for username queries only if you find that confusing. Can't think of any functional impact.

- Andrew Lee
- Posts: 3198
- Joined: Sat Feb 04, 2006 9:19 am
- Contact:
Re: Take a second look at the private entries list
Actually the "Forum topics matching your query" box is only shown if a forum search returns matches. If there are no matches, it will not be shown.
So what I done is to simply not perform forum searches for usernames, so the result list is empty, which means the forum topics box will not be shown for these cases.
So what I done is to simply not perform forum searches for usernames, so the result list is empty, which means the forum topics box will not be shown for these cases.