hi ... i found this code for the members list and i put it on a new page, but the username links go to a 404 not found.
<?php $users = User::newInstance()->listAll(); ?>
<?php foreach($users as $user) {
echo '<strong>Username</strong>: ' . '<a href="user/profile/'. $user['pk_i_id'] . '">' . $user['s_name'] . '</a>' . '<br /> ';
}?>
Im pressuming its the red bit that's wrong, our profile page is index.php?page=user&action=pub_profile&id=1
thank you