Search found 30 matches

by kalipsso
Fri Jun 10, 2011 11:30 am
Forum: Tutorials
Topic: Register and Login (Email Activation) and User profile
Replies: 16
Views: 3245

Re: Register and Login (Email Activation) and User profile

i am getting this error on edit_profile.php: Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at D:\xampp\htdocs\avatar\profiles\edit_profile.php:1) in D:\xampp\htdocs\avatar\profiles\core\init.inc.php on line 2 i have remove...
by kalipsso
Fri Jun 10, 2011 8:29 am
Forum: Suggestions
Topic: User Profile Avatar
Replies: 4
Views: 1287

User Profile Avatar

I was wondering if you can make a tutorial on how to add a user profile picture/avatar...or a gallery for users from which they can pick the profile avatar/picture...that will be interesting...
thank you and regards.
by kalipsso
Fri Jun 10, 2011 8:08 am
Forum: Tutorials
Topic: Register and Login (Email Activation) and User profile
Replies: 16
Views: 3245

Re: Register and Login (Email Activation) and User profile

OK...fixed for now What was the problem ? BTW...is there any way you can make a tutorial on how to add user avatar or profile picture? there is a suggestions section, if you have a tutorial suggestion, post it there the problem was that i save the file without adding the echo from [syntax=php]<?php...
by kalipsso
Fri Jun 10, 2011 8:02 am
Forum: Tutorials
Topic: User profile No Data Displayed
Replies: 16
Views: 2423

Re: User profile No Data Displayed

after i add [syntax=php]var_dump($user_info); [/syntax]the result returned NULL.
by kalipsso
Fri Jun 10, 2011 3:30 am
Forum: Tutorials
Topic: User profile No Data Displayed
Replies: 16
Views: 2423

Re: User profile No Data Displayed

You can try adding [syntax=php]var_dump($user_info);[/syntax] after that variable is defined to see what the function is actually returning. Also can you make sure you use the php button when posting code, and not the code tags. is not about displaying the data after submitting the form...is about ...
by kalipsso
Thu Jun 09, 2011 4:28 pm
Forum: Tutorials
Topic: User profile No Data Displayed
Replies: 16
Views: 2423

User profile No Data Displayed

Got it Now i run into another issue...the edit_profile form. is not displaying the values of the fields... [syntax=php] <?php include('core/init.inc.php'); $user_info = fetch_user_info($_SESSION['uid']); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR...
by kalipsso
Thu Jun 09, 2011 3:45 pm
Forum: Tutorials
Topic: Register and Login (Email Activation) and User profile
Replies: 16
Views: 3245

Re: Register and Login (Email Activation) and User profile

OK...fixed for now ;)

BTW...is there any way you can make a tutorial on how to add user avatar or profile picture?
by kalipsso
Thu Jun 09, 2011 3:31 pm
Forum: Tutorials
Topic: Register and Login (Email Activation) and User profile
Replies: 16
Views: 3245

Re: Register and Login (Email Activation) and User profile

the thing is that the user_list.php does not get my user_id... [syntax=php]<div> <?php foreach (fetch_users() as $user){ ?> <p> <a href="profile.php?uid=<?php echo $user['id']; ?>"><?php echo $user['username']; ?></a> </p> <?php } ?> </div>[/syntax] What is the problem???
by kalipsso
Thu Jun 09, 2011 3:06 pm
Forum: Tutorials
Topic: Register and Login (Email Activation) and User profile
Replies: 16
Views: 3245

Register and Login (Email Activation) and User profile

How do we combine the 2 scripts together? What modifications are needed for this 2 to work together? I added the code from the profile user.inc.php to the user.inc.php from Login/Register file, made the modifications to connect to the same database, i added the tables in the database... i registered...