0
I’m having trouble importing the Wordpress database.
On my local physical server, with Ubuntu server 16.04 is running, but when I played on my Ubuntu 16.04 desktop, it does not work.
The procedures performed were:
- Export _SQL by phpmyadmin from the server.
- Import database by mysql Workbench
- I changed the WP-Option address for my localhost/project
When I access the page, localhost/project, the screen is blank. What can I do to solve this problem?
What’s in the PHP error log? Va in wp-config.php and put
define( 'WP_DEBUG', true );
and try again.– Ricardo Moraleida
Thanks for the reply Ricardo...but still the screen is blank! When I press F12 in firefox to harvest some information, comes this information:
– Thiago Cunha
?php
/**
 * Front to the WordPress application. This file doesn't do anything, but loads
 * wp-blog-header.php which does and tells WordPress to load the theme.
 *
 * @package WordPress
 */

/**
 * Tells WordPress to load the WordPress theme and output it.
 *
 * @var bool
 */
define('WP_USE_THEMES', true);

/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . '/wp-blog-header.php' );

– Thiago Cunha