elangovan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-login.php errorHi,
It might be browser issue, you can try with following things
Update Your Browser,
Clear Your Browser Data,
Check in Incognito Browser Window,- This reply was modified 2 years, 8 months ago by elangovan.
Forum: Fixing WordPress
In reply to: Image upload problemHi,
Try to Increase WordPress default JPEG image compression limit. It might be work.
For example
add_filter( ‘jpeg_quality’, create_function( ”, ‘return 100;’ ) );Thanks
Forum: Fixing WordPress
In reply to: Cannot access Installed Plug In pageHi @gemdris,
We can disable all the plugins manually from the phpMyadmin. Once login into the phpMyadmin please enter into your Database.
In the Database you can see the table wp_options, In the table wp_options, under the option_name column find the active_plugins field.
On this row, change the option_value field to: a:0:{}. Save the changes and this will deactivate all plugins.
Now, you can go to your admin panel Dashboard > Plugins and activate your all pligins.
Hope this might be helpful to you!
Thanks
- This reply was modified 5 years ago by elangovan.
Forum: Fixing WordPress
In reply to: cannot login to website or WP adminHi,
One more way, delete the nextgen-gallery plugin from the plugin directory and re-upload the un-zipped nextgen-gallery plugin.
Thanks
Hi,
Please check the below code. Its might be helpful to you.
function myshortcode_myadmin($attr){ $args = shortcode_atts( array( 'as' => 'vice' ), $attr ); global $wpdb; $as_args = $args['as'] $admin = $wpdb->get_var( "SELECT $as_args as name FROM $wpdb->myadmin" ); $output = $admin->name; return $output; } add_shortcode( 'myadmin' , 'myshortcode_myadmin' );[myadmin as=’vice’] will show Doe
[myadmin as=’president’] will show JohnBut if you have multiple records in this table you have to pass one more argument like admin ID and add where condition in the query.
Thanks
Hi, This is usually caused folder permission of wp-content, please change once again the folder permission 755 and try to upgrade.
Forum: Fixing WordPress
In reply to: Add downloaded site to local serverHi, Could you please share the theme details?
Forum: Themes and Templates
In reply to: page link becomes blankI change define(‘WPLANG’, ”); to define(‘WPLANG’, ‘es_ES’);
in config file, it will becomes balnk page in admin side(wp-admin/edit.php?post_type=page). any body solve this problem.Forum: Themes and Templates
In reply to: "All pages" page becomes blank in admin sidehi buudy
finally i found the problem.
that is page_attributes_meta_box() function in wp-admin\includes\meta-boxes.php
here problem in list page drop down.