WPML blank page on submit in Wordpress - wordpress

This question is related to wpml multilingual cms plugin problem (wordpress) where no solution has been found.
I have WPML 3.1.5 and Wordpress 3.9.1, and whenever I activate the plugin, every submit action (posting, saving, changing settings) is met with the blank post.php page.
Because of this, the login/logout and registration doesn't work.
Wordpress gives no error logs, Apache's own error log is empty.
It's driving me up the walls. Does anyone know what's going on?

This is happening because there is a plugin/theme with is having incompatibility. If you do not know which plugin/theme is, the best way is:
1 go to you ftp server and rename the folder /wp-content/plugins to another name
2 load wp-admin.php an go to plugin, It will show you an error message and all plugins will be disabled
3 rename back the folder to the original name /wp-content/plugins.
4 go to plugins option in wp-admin and active one by one until find which one is wrong.
5 99% the problem is because of the plugin, if it is not, try to do it with themes.
Once you get what plugin/theme is doing wrong, try to update or check if there is any error. You can debug your website enabling WP_DEBUG in wp-config.php file from you root folder.
define('WP_DEBUG', true); // false
if (WP_DEBUG) {
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', true);
I think the last verion of WPML is 3.1.6 . There is the link to download it to update http://ul.to/qjl85490

Related

Wordpress plugin is not working after migration to a new server

I have moved my wordpress site to a new server, and login.php is working right.
But in there many plugins is not working well, for example the login page is not linked to any other page after I submitted my username and password.
Here is the login page link:
https://cpalocate.ca/login/
I have entered the invalid username and password, it will also show the blank page, but not error page.
When I add this code in wp-config.php
define('WP_DEBUG', true);
it showed this text. " Notice: Constant WYZ_THEME_DIR already defined in /home/.....".
And I have fixed that, but the same problem.
Now there is no any error debug, but the login page is also not working.
I changed the php version of my site in cpanel, but the same.
Anyone has your idea to solve this issue?
It is possible (I'd even say likely) that on your old server it was using PHP 5.6 (or at least a different version of PHP than your new server) and now you're on 7.0, 7.2 or even 7.3. It would seem that if that's the case, some of your plugins are incompatible.
You should edit your wp-config.php and add
define('WP_DEBUG', true);
so that you can see the errors on your screen, at least until you figure out which plugins are causing the problems.
If it is a matter of PHP version, check with your host to see if they can roll you back, or you'll have to either contact the plugin author and have them update the plugins, or you need to fix the code yourself, based on whatever the error messages you see are.
Edit: if this doesn't solve your problem, first try a default WordPress theme like twenty-nineteen or whatever. If that doesn't solve it, then disable each plugin one at a time until you find the culprit.
I have turned off all my plugins and turn back it one by one.
I have found one of my plugins is caused this problem, it is PM Pro Settings.
So I deactivated it and there is no any problem now.
I am using other plugins on behalf of that one.

Wp-admin page is showing blank. How to get back my wp-admin page?

Wp-admin or wp-login.php is blank. First time I'm having this problem.
I use godaddy basic wp plan. I can't reinstall wordpress
But I have tried by changing the "wp-Sg7k4r-options" folder name.
I renamed the theme and trying to deactivate plugins. But still I have the problem. The "information -scheme" shows some plugins still active.
I don't understand what to do? Can anyone help me?
The answer is simple:
Turn on WP Debug.
There is a good chance that you are seeing the error because of any PHP errors. And once you turn on WP_DEBUG, it will show you all the errors which you can track and fix the error.
How to debug:
Open wp-config.php file in your editor and add the following code to it.
define( 'WP_DEBUG', true );

woocommerce update broke development website?

I can't access admin dashboard or any pages on the frontend.. just blank page and view source is also blank. I've enabled error reporting in php.ini and still a blank page. I renamed both the theme name and deleted the woocommerce plugin and yet still blank pages.
How do i solve this? Can't even view errors? This is caused by updating woocommerce.
Enable WP_DEBUG and WP_DEBUG_LOG. This will show you errors.
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
See debugging in WordPress
This will be important for determine where the error is coming from. 9 times out of 10, if you are having a problem when you upgrade WooCommerce it is because your theme is bundling out of date templates.
Use FTP to rename the wp-content/plugins folder to wp-content/plugins-backup. Renaming the plugins folder effectively deactivates all plugins.
Additionally, rename your current theme folder to anything else. Though I have found this doesn't always reset your site to a default theme.
In the case where this doesn't automatically reset your theme, in PHPmyadmin navigate to your wp_options table and edit the values of 1. current_theme, 2. template, and 3. stylesheet to be twentyfourteen.

Plugin edit made Wordpress.org admin panel broken

So I went and edited a plugin called Huge IT portfolio and added an echo "1"; exit(); in it and now i can't access the admin panel (yet i can access the site) it just gives me the echo 1.
What can I do to revert the changes to it? I can't even paste the code anymore since i can't access it
If you can access the admin panel anymore you have a few options, they all involve accessing the website via FTP.
Rename the plugins folder (ex plugins_old), logging in now will cause all plugins to disable.
Rename the directory of your specific plugin, logging in now will cause this plugin to disable.
Download the file you edited in the WordPress dashboard, undo your edits and upload it again.

Wordpress Theme Compatibility Issue

I'm developing a WP theme for a client and have run into some trouble.
When my theme is activated:
I edit post or page (or several other areas), click UPDATE, PUBLISH, etc - and I get a blank white page.
When I go back, the post has been updated - so the system is working, it just isn't redirecting me back to the edit page.
Everything works fine when the default template is activated.
Thanks!!!
To trace the error set the WP_DEBUG as true
Refer : http://www.wprecipes.com/how-to-easily-enabledisable-debug-mode-in-wordpress
Change WP_DEBUG to true in wp-config.php file located in the WordPress root folder, and then you will be able to see the errors that are coming up. Fixing those errors will resolve your problem.

Resources