Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Edit_profile.php and profile.php error

Asked Modified Viewed 2,934 times
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
asked
Member

Hi, i don't what to do. Every time i go to edit profile on my page, and press save, it says "Profile successfully updated"... but the filled out things are gone.. and when i go to profile, there is nothing updated.... what is the problem? i hope you can help me...

Thanks in advanced.
0 replies

11 posts

U
unknown
U
  • Member, joined since
  • Contributed 142 posts on the community forums.
  • Started 7 threads in the forums
answered
Member

I have this problem once since I messed up with edit_profile.php and using DISABLED to disable some filed there, If you do replace the existing file edit_profile.php with original one.

I hop that solve the problem.
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

No, sorry, that do 't worked....

any other suggestions..?
0 replies
U
unknown
U
  • Member, joined since
  • Contributed 142 posts on the community forums.
  • Started 7 threads in the forums
answered
Member

OK, make sure you have the correct includes/update_profile_include.php file .

I'm sure that your problem from edit_profile.php or update_profile_include.php and this what will happen when you playing with any of both files.
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

i have the includes/update_profile_include.php file, and i think it's the correct one.. i have the one from php-fusion v.6.01.10...


Quote

I'm sure that your problem from edit_profile.php or update_profile_include.php and this what will happen when you playing with any of both files.


I don't understand what you mean with this...
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

you mean in ftp? in the folder tmp there are just files from my host... and in cache nothing...
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

any idea...
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

Please, any help... i want to open my website, but i can't if the members can not edit their profile...
0 replies
W
WEC
W
WEC 10
  • Veteran Member, joined since
  • Contributed 946 posts on the community forums.
  • Started 5 threads in the forums
answered
Veteran Member

If you restored the core register.php, edit_profile.php and includes/update_profile_include.php then check if you also got the core structure on your _users and _new_users tables.
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member



i downloaded one's more the latest version of php-fusion, and replaced the files...: edit_profile.php, profile.php and includes/update_profile_include.php... and i looked into the database.. and the structures are in the tables you said...

The rare thing is that with extreme-fusion it works...
0 replies
W
WEC
W
WEC 10
  • Veteran Member, joined since
  • Contributed 946 posts on the community forums.
  • Started 5 threads in the forums
answered
Veteran Member

You need to ensure that all table fields are there if you compare your tables with core tables.

Run queries like these on a core installation and the one you have problems with to check if the table structures are identical:

<?php
$result = mysql_query("SHOW COLUMNS FROM {$db_prefix}users");
if (mysql_num_rows($result) > 0) {
echo "<table class='tbl-border'>\n<td colspan='2'><b>settings Table Scheme</b></td>\n";
while ($row = mysql_fetch_array($result)) {
echo "<tr><td class='tbl1'>".$row[0]."</td><td class='tbl2'>".$row[1]."</td></tr>\n";
}
echo "</table>\n";
}
?>



<?php
$result = mysql_query("SHOW COLUMNS FROM {$db_prefix}new_users");
if (mysql_num_rows($result) > 0) {
echo "<table class='tbl-border'>\n<td colspan='2'><b>settings Table Scheme</b></td>\n";
while ($row = mysql_fetch_array($result)) {
echo "<tr><td class='tbl1'>".$row[0]."</td><td class='tbl2'>".$row[1]."</td></tr>\n";
}
echo "</table>\n";
}
?>

0 replies
R
RIXARD
R
RIXARD 10
Nadie tiene poder sobre mi. Ningún hombre. Ningún Dios. Ningun Príncipe. ¿Qué derecho da la edad para aquellos que son inmortales?. ¿Qué derecho dá el poder para aquellos que vencen a la muerte? Convoca tu condenada cazería. Veremos a quién me llevo gritando al infierno conmigo...
  • Junior Member, joined since
  • Contributed 47 posts on the community forums.
  • Started 5 threads in the forums
answered
Junior Member

I think it was because of the newsletter MOD or PM on Register... im not quite sure about it
0 replies

Category Forum

Bugs and Errors - 6

Labels

None yet

Statistics

  • Views 0 views
  • Posts 11 posts
  • Votes 0 votes
  • Topic users 4 members

0 participants

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet