WordPress White Screen Error

What causes this? It may be a line ending problem. In *nix, the line ending is a single new line character. In windows it is a carriage return character followed by a new line character. Unicode encoded files can also affect line endings. Check your text editor documentation. There should be a way to convert … Read more

wordpress.org disallowing my plugin becuase of loading core files in cron cpanel file

I think that is the wrong way. What you might consider to to is to create an wp_schedule_event and then run http://www.abc.de/wp-cron.php per cPanel-Cron, that should work and will be a better way in the “idea” of WordPress. -Edit- Create an cron.php (or whatever you would like to call that file) in you plugin. Than … Read more

WordPress doesn’t recognise my email address and I’m missing the wp-config file in PHPmyadmin cPanel to make alterations

Google authentication sounds like the least of your worries. wp-config.php lives in the public_html folder of your website, not in SQL database. Assuming everything else is configured correctly, then you will simply need to put your SQL info into wp-config.php and then go to your main website url via the browser       If … Read more

ERROR: “Table Prefix” must not be empty

You need to have the table prefix set in the wp-config.php file. It must be matching the same value in tables of your database, the default value is “wp_” but if you used a customized value for your tables to enhance security which is a good practice, you need to update your $table_prefix = ‘wp_’; … Read more

WordPress still requires FTP information

Guess it needs to be said first – it is a bad idea in general to just let anyone that succeeded to trick you into uploading his PHP onto your server to actually be able to write to your code directories. It is double problematic if you let him access to your root credentials and … Read more