How to add profile picture

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
jamola
User
Posts: 9

How to add profile picture

Post by jamola »

I want to know if phpmaker 10 has the facilities to add user profile picture to the form.
If someone could help me how to do that.

Also after login successfully, it is redirected to the user list page. Is there any way to redirect it to any
other page?

Thank you.


mobhar
User
Posts: 11737

Post by mobhar »

jamola wrote:
Also after login successfully, it is redirected to the user list page. Is
there any way to redirect it to any
other page?

Assume your user list page is "userlist.php", then simply put the following code under "Server Events" -> "Other" -> "Default Page" -> "Page_Redirecting":
if (IsLoggedIn()) {
$url = "userlist.php";
}


danielc
User
Posts: 1601

Post by danielc »

jamola wrote:
add user profile picture to the form
You can setup the field as input type as File. See Field Setup in help file.

Specify "Start page" in [Generate] panel. See Generate Settings in help file.


Post Reply