Customize User Profile Screen

fishbd1
Participant II

I'm trying to track down an issue we're having as well as add a feature.

On the Edit Profile screen there is an "Add new app" tab as well as "Edit User Profile" tab. Our Add new app tab is returning WSOD after Editing User Profile tab. Not sure if that's an out of the box issue or if there were some customization done prior to my arrival.

I'm also looking to add a tab to that screen called "Update Existing App" redirecting that simply redirects to the My Apps screen (user/me/apps).

I cannot find where that tabbed pane is defined. Is this an Apigee thing or a embedded User module?

4772-user-profile.png

0 1 1,005
1 REPLY 1

@Dave ,

Clearly it looks like a customization. Since it's not part of the Apigee core distribution i am afraid community doesn't have insights to help you pinpoint the issue.

You can see the error messages behind the WSOD using below code in index.php file. It will print out stack trace & error message to screen.

Edit index.php in Drupal root, Add these lines below <?php tag,

error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);

More details about WSOD here. Hope it's helpful.