I just started getting this error message when trying to access profiles:
"Sorry, but you cannot view another member's profile."
I get this message at URLs such as:
http://projecteuler.net/index.php?secti ... herwindsor
I have a bot that checks to see how many problems people have solved for a university leaderboard. How am I supposed to keep that working if I can't see other people's profiles?
Thanks.
[Solved] Sorry, but you cannot view another member's profile
- KristopherWindsor
- Posts: 4
- Joined: Fri Sep 03, 2010 4:38 am
[Solved] Sorry, but you cannot view another member's profile
Last edited by KristopherWindsor on Fri Sep 03, 2010 11:13 pm, edited 1 time in total.

- hk
- Administrator
- Posts: 12831
- Joined: Sun Mar 26, 2006 10:34 am
- Location: Haren, Netherlands
Re: "Sorry, but you cannot view another member's profile" Er
It's not an error but policy on our side.
See: viewtopic.php?f=5&t=2007&start=0
You could download the provided images and OCR them.
(Perhaps you can write a bot that uses http://www.newocr.com/)
Or alternatively, assuming that your colleagues have all entered the same country name parse the country stats.
Another possibity we did not yet dicuss in the team is that we replace the country with your universities name so that all maintenance is done on our side.
What it all boils down to is that running bots on profile pages is assuming that nothing will change and is resource consuming on our side.
See: viewtopic.php?f=5&t=2007&start=0
You could download the provided images and OCR them.
(Perhaps you can write a bot that uses http://www.newocr.com/)
Or alternatively, assuming that your colleagues have all entered the same country name parse the country stats.
Another possibity we did not yet dicuss in the team is that we replace the country with your universities name so that all maintenance is done on our side.
What it all boils down to is that running bots on profile pages is assuming that nothing will change and is resource consuming on our side.

War ruins the life and health of untold numbers of innocent children.
-
sivakd
- Posts: 217
- Joined: Fri Jul 17, 2009 9:37 am
- Location: California, USA
- Contact:
Re: "Sorry, but you cannot view another member's profile" Er
I am wondering why not provide a CAPTCHA based viewing of the user profile?

puzzle is a euphemism for lack of clarity
- euler
- Administrator
- Posts: 5094
- Joined: Sun Mar 05, 2006 4:49 pm
- Location: Cheshire, England
- Contact:
Re: "Sorry, but you cannot view another member's profile" Er
I've just added a feature to allow the same information shown in the image to be viewed as either XML format or a comma separated string.
For example, the http://projecteuler.net/profile/KristopherWindsor.xml gave the following XML output just now:
And http://projecteuler.net/profile/KristopherWindsor.txt returned "KristopherWindsor,USA,Java,101,3".
For example, the http://projecteuler.net/profile/KristopherWindsor.xml gave the following XML output just now:
Code: Select all
<?xml version="1.0"?>
<profile>
<username>KristopherWindsor</username>
<country>USA</country>
<language>Java</language>
<solved>101</solved>
<level>3</level>
</profile>
impudens simia et macrologus profundus fabulae
- KristopherWindsor
- Posts: 4
- Joined: Fri Sep 03, 2010 4:38 am