ctrservicesuk Posted July 19, 2015 Share Posted July 19, 2015 before upgrading to six customers used to be able to go to services, change password and see their current username and password. this was useful as the username and password was for FTP so they didnt need to create another FTP account and also some customers want to give developers cpanel only access so they would just give them that username and password. now in the new theme you can no longer see the username and password is there any way to get this back that anyone knows of. i dont see it as a security threat as if you can get on whmcs you can click to get to cpanel anyway. 0 Quote Link to comment Share on other sites More sharing options...
jdwalte3 Posted August 11, 2015 Share Posted August 11, 2015 I'm curious about this as well. I often use the clients hosting username/password in WHMCS to ftp into their account but am unable to see their password now. 0 Quote Link to comment Share on other sites More sharing options...
dnerty Posted August 14, 2015 Share Posted August 14, 2015 Why did they remove credentials? So useful .. 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted August 14, 2015 Share Posted August 14, 2015 they may think that no need for these credentials with the new one click login functionality. anyway if you need to display these information follow this simple 2 steps: 1) open this file for editing: /whmcs-path/modules/servers/cpanel/templates/overview.tpl 2) add the following code at the end of it: <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">Login Credentials</h3> </div> <div class="panel-body"> <div class="row"> <div class="col-lg-6"> <input type="text" name="user" class="form-control" value="{$moduleParams.username|htmlentities}"> </div> <div class="col-lg-6"> <input type="text" name="pass" class="form-control" value="{$moduleParams.password|htmlentities}"> </div> </div> </div> </div> this will bring back username and password to product overview page, feel free to customize it for your needs 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.