CMSHelpLive
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Do I need a web host before downloading WordPress?Hi,
Download WordPress and extract that folder.
1- After extraction put the WordPress folder under htdocs (Xampp/Mamp) or www (wamp).
2- Open your browser and create database. For creating database you need to use localhost/phpmyadmin in URL
3- You will get create database option there. Provide database name and click on “Create Database”. Suppose it is named as trialwordpress.
4- Now type in localhost/your-wordpress-folder-name (which resides in your htdocs or www folder) for URL
5- You will get a option of create configuration file. Click ->Lets Go .
6- Fill the information in displayed form that consists of database name, username (use root), password (leave it blank), database host and table prefix (use default values) and click on “submit”.
7- Now fill in your email id and desired username/password.
8- Login to WordPress with your username and password.
9- Make your site using Dashboard options.
10- Now you can choose any web hosting to live your site.Forum: Installing WordPress
In reply to: Contact form7 installationHi,
No, there is no such thing.What you need to do is-
Install and activate Contact Form 7 plugin.
After activation you will get Contact Form 7 tab on left side of Dashboard.
Click on it and copy short code from there and paste it on the page where you want your contact form.Forum: Localhost Installs
In reply to: Database Repair: Table "new_db.wp_ " doesn't existHi,
Match database name in wp-config.php with database under phpmyadmin.This error may be due to your mismatched database name.
Forum: Localhost Installs
In reply to: Error Message after WP installation on my PCHi,
Try deactivating all plugins temporarily to check if issue gets resolved or not. If this works, re-activate all plugins individually (one-by-one) to find the problematic plugin.
– If problem still persists, try manually re-uploading all files and folders except the wp-config.php file and the /wp-content/ directory from a fresh download of WordPress. Make sure that you delete the old copies of files & folder before uploading the new onesForum: Fixing WordPress
In reply to: Comment NotificationHi,
Open Dashboard.
Look under Setting -> Discussion.
Check all options related to comments and check and uncheck options according to your requirement.Forum: Installing WordPress
In reply to: Log-In ProblemsHi,
Through phpmyadmin you can access your database
Forum: Installing WordPress
In reply to: blank page wp-admin login pageHi,
Open wp-config.php page and changing this:
define(‘WP_DEBUG’, false);to this:
define(‘WP_DEBUG’, true);Forum: Fixing WordPress
In reply to: I can't edit my page – Java Script error?Hi,
Try wordpress plugins which provides you javascript libraries.
I recommend Use Google Library plugin for this.Forum: Fixing WordPress
In reply to: This is somewhat embarrassing, isn’t it? – Top Feature ImageHi,
Check for static front page. Set in settings -> reading ->select static front page.
Check for permalinks.Set in settings ->permalinks ->select post name.Forum: Installing WordPress
In reply to: Uploading ImagesHi,
You can try all these solutions one by one-
1-Change permissions on the upload folder to 777.
2- Increase upload_max_filesize in php.ini file.
3- Rename your function.php file and check .Forum: Installing WordPress
In reply to: Temporary folder missing!Hi,
Check if there is a “uploads” folder under wp-content.
If folder does not exist then create “uploads” folder and then create one more folder named “2014” under uploads . Create folder named “11” under 2014 folder .
uploads/2014/11
Forum: Installing WordPress
In reply to: Cant download wordpress.zipHi,
You need to unzip wordpress file which you downloaded from www.remarpro.com and then upload it
Forum: Fixing WordPress
In reply to: Please help…..I don't see my pluginsHi,
After installation ,have you activated plugins. If not, then activate them.
Forum: Fixing WordPress
In reply to: How to add comment count?Hi,
Add this code to your sidebar.php
<?php
$comments_count = wp_count_comments();
echo $comments_count->approved;
?>Forum: Fixing WordPress
In reply to: how can i hide page title in homepage only?Hi,
Add this css to your style.css .
#page-id-1274 .page-title{ display:none; }