1

Topic: [1.2] Unable to update any profile info

well... not unable at all, but every time i get "Bad request" message. and the info is updated.
i'm using

PunBB version
    PunBB 1.2 - Check for upgrade
    © Copyright 2002, 2003, 2004, 2005 Rickard Andersson
Server load
    6.40 10.08 7.61 (1 users online)
Environment
    Operating system: Linux
    PHP: 4.3.9 - Show info
    Accelerator: N/A
Database
    PostgreSQL 7.4.6 on i686-redhat-linux-gnu, compiled by GCC gcc (GCC) 3.2.3 20030502 (Red Hat Linux 3.2.3-42)

2

Re: [1.2] Unable to update any profile info

tried to create new user account and then change its profile - i got the same bug sad(

Re: [1.2] Unable to update any profile info

Check your base url  is set correctly in admin -> options.

4

Re: [1.2] Unable to update any profile info

do you really think, that i'm so stupid to make such mistakes and then post bugs here ???

Re: [1.2] Unable to update any profile info

Well, I don't know what you've tried do I. 
But others with the same error might not have tried that so it's a useful hint for others. Have to start with the obvious before moving onto other possible solutions.

Was only trying to help, but if you're not that stupid I'm sure you'll fix it.

6 (edited by Juan.Llanos 2005-01-08 20:07)

Re: [1.2] Unable to update any profile info

I have the same error. I try it on firefox and IE6. And it's a new installation of the forum.
Of course that I have right the base url.

Edit: Although it do well the changes.

7

Re: [1.2] Unable to update any profile info

I found a solution, read this topic : http://punbb.org/forums/viewtopic.php?pid=29639#p29639

I hope this can help

Re: [1.2] Unable to update any profile info

cgo2 wrote:

I found a solution, read this topic : http://punbb.org/forums/viewtopic.php?pid=29639#p29639

I hope this can help

It's that!!!!!

Thanks.

Just open profile.php. Find «redirect('profile.php», in this line there's a "& amp ;" just change it to "&". it's in 6 lines. Save it. Upload it. Try it.

9

Re: [1.2] Unable to update any profile info

so to fix the problem, when redirect delay is set to 0
include/functions.php and look for:

        header('Location: '.$destination_url);

and replace it with

        header('Location: '.str_replace('&', '&', $destination_url));