Barun86
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Missing Style SheetHi,
Re install the theme. Check the index.php file if you find the following code:
<?php
define(‘WP_USE_THEMES’,true);
/** this will load wordpress templates **/
require (‘./wp-blog-header.php’);
?>
If you don’t, then add them.
To check whether you have .css file, you can go to “Theme” folder, and click at the theme you just installed (it should be a folder), and check if you have style.css file in it.
If everything is ok, then activate the theme, and deactivate the previous one.Forum: Fixing WordPress
In reply to: Page EditingHave you guys installed different themes?
Activate the theme you want to use, and deactivate the old one.
At the same time, replace the index.php with the new one.Otherwise, put the script: define(‘CONCATENATE_SCRIPTS’, false ); on wp-config.php file, and refresh the page.
Forum: Localhost Installs
In reply to: Where Are MySQL Databases Stored on a LAMP Installwell,
if you are looking for the databases, then:mysql -u root -p
//type the password.
show databases;
// look for the databases.Forum: Installing WordPress
In reply to: WordPress Install not showing??Hi,
did you activate the theme that you installed? and deactivated the old one?
This is basic but just want to know.Forum: Installing WordPress
In reply to: After successful install, blank screen on front page. No previewHi,
Please add these lines of codes in your index.php file, and let’s see if it works.<?php
define(‘WP_USE_THEMES’,true);
/** this will load wordpress templates **/
require (‘./wp-blog-header.php’);
?>