User profile problem

Solved8.74K viewsIssues
0

When I always lick to go to user profile about page or profile it return me with 504 or take to much time to load.

it load sometime and some time return 504. it happen many times. it take at least 3-5 minutes.

Attachments

About.png
0

ok so from your log error you seems to bypass the limit of allowed memory, there are several ways to increase it one that would be simple for you is to use the wp-config.php file (on your wordpress root directory)

Add the following before any file includes

define( 'WP_MEMORY_LIMIT', '128M' );

if it doesn’t work then you have to contact your hosting provider they must be not allowing php memory increase.

hoep this could be helpful

I locate the file wp-config.php but I don’t get your saying
” before any file includes”
you mean I should add it from the beginning of the i.e before this “<?php" or what?

I just added it this way

<?php
define( 'WP_MEMORY_LIMIT', '128M' );

hope am right.

Yes, now I solved this! I

<?php
//increase wp memory limit
define( 'WP_MEMORY_LIMIT', '128M' );

Remain only one issue, as I stated earlier the problem is on ABOUT & PROFILE page from the user_profile, so now PROFILE page is fix, but ABOUT page is still unresolved, it keep loading and cause internet connection to stop responding. Sorry for too many questions @jdev and @rahul

You are viewing 1 out of 4 answers, click here to view all answers.