CMSHelpLive
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Update installationHi,
You can update your WordPress maually-
1.Download the latest WordPress zip file and unzip that file.
2.Deactivate plugins.
3.Delete the old wp-includes and wp-admin folder and upload the new wp-includes and wp-admin folders.
4.Do NOT delete your existing wp-content folder just Upload the individual files from the new wp-content folder to your existing wp-content folder, overwriting existing files.
5.Upload all new loose files from the root directory of the new version to your existing wordpress root directory.
6.Don’t do any changes in wp-config.php file.Forum: Installing WordPress
In reply to: Can’t select databaseHi,
Open your database -> wp_options table and check site_url(page 1) and home_url (page 2) whether it is according to your site or not. If this not resolve your problem then open wp-config.php file and check database name and password.
Forum: Fixing WordPress
In reply to: How to optimize Google Fonts?Hi,
There are three different ways to load google font- @import, javascript and link rel. Try to load the font by link rel tag . It is faster than other two methods.
Forum: Fixing WordPress
In reply to: Cannot upload any images to siteYou 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: Setting Up – beginner hereHI,
Try this-
Clear your DNS cache by
1. opening a Command Prompt
2. Type ipconfig /flushdns
3. Restart your web browser.Forum: Fixing WordPress
In reply to: My Dashboard is Essentially EmptyReplace wp-admin folder there must be a corrupted file in that folder.
If problem still persist then add this to wp-config.php file-<?php
error_reporting(E_ALL); ini_set(‘display_errors’, 1);
define( ‘WP_DEBUG’, true);
?>
Now check what error you get.Forum: Fixing WordPress
In reply to: Unable to update to Word Press verion 4.1You may update WordPress manually. Below are the steps-
1. Download the latest WordpPress zip file and unzip that file.
2. Deactivate plugins.
3. Delete the old wp-includes and wp-admin folder and upload the new wp-includes and wp-admin folders.
4. Do NOT delete your existing wp-content folder just Upload the individual files from the new wp-content folder to your existing wp-content folder, overwriting existing files.
5. Upload all new loose files from the root directory of the new version to your existing wordpress root directory.
6. Don’t do any changes in wp-config.php file.Forum: Fixing WordPress
In reply to: turn off comments???Hi,
Open dashboard -> Pages ->
1- From the list of pages hover your pointer over the page on which you want to turn-off the comment.
2- click quick edit.
3- Uncheck the allow comments box.
4- Check-mark the output.Forum: Fixing WordPress
In reply to: Edit the code for a pageHi,
If you want to do changes in all pages, modify page.php.
But if you want to add some php code on only a particular page, you will need to create a template and save it in your theme folder.Procedure for creating template-
1. Write your code in any editor (for instance Dreamweaver). Next, switch that page to a template bu adding following code:<?php
/**
Template Name: Trialtemplate
*///write your code here
?>2. Save this template with .php extension in :
htdocs->Wordpress Folder->wp content -> themes -> open the theme which you have selected in browser -> save that php file here.3. Go to :
dashboard -> Pages -> Select Page where you want to add code -> Page Attribute-> Template->Trialtemplate.4. Publish it.
Forum: Fixing WordPress
In reply to: Blank editing pageHi,
Replace wp-admin folder (there might be a corrupted file in that folder).
If problem still persist then add this to wp-config.php file-<?php
error_reporting(E_ALL); ini_set(‘display_errors’, 1);
define( ‘WP_DEBUG’, true);
Check what error is being logged now.
Forum: Fixing WordPress
In reply to: Failure Notice when trying to updateHi,
You may try to update your WordPress manually.
Below are the steps to manually update your WordPress.
1. Download the latest WordPress zip file and unzip that file.
2. Deactivate plugins.
3. Delete the old wp-includes and wp-admin folder and upload the new wp-includes and wp-admin folders.
4. Do not delete your existing wp-content folder just Upload the individual files from the new wp-content folder to your existing wp-content folder, overwriting existing files.
5. Upload all new loose files from the root directory of the new version to your existing WordPress root directory((such as index.php, wp-login.php).
6. Don’t do any changes in wp-config.php file.Forum: Installing WordPress
In reply to: Manual Update FailHi,
While updating WordPress manually it is important to delete your old wp-includes and wp-admin folder.
– Delete old wp-includes folder and upload the new wp-includes of WordPress 4.0
– Also delete your wp-admin folder and upload new wp-admin folderCMSHelpLive
Forum: Installing WordPress
In reply to: Can not get to login screenHi,
Open wp-config.php and do the following mentioned changes. And then check what is the exact error that you receive.
Change this:
define(‘WP_DEBUG’, false);
to this:
define(‘WP_DEBUG’, true);Forum: Installing WordPress
In reply to: Redirect Loop ErrorHi,
Have you renamed your sample config file wp-config-sample to wp-config.php file.
Do these changes in your your wp-config file-
define(‘DB_NAME’, ‘your database name’);
define(‘DB_USER’, ‘your username’);
define(‘DB_PASSWORD’, ‘your password’);
define(‘DB_HOST’, ‘host name here’);
define(‘DB_CHARSET’, ‘utf8’);
Forum: Installing WordPress
In reply to: error message – new wordpress siteHi,
just write <?php ob_start(); ?> on top of page /var/www/socialworkshop.dk/public_html/wp-content/themes/rambo/functions/woo/woocommerce.php
and on /var/www/socialworkshop.dk/public_html/wp-includes/pluggable.php