Forum Replies Created

Viewing 15 replies - 16 through 30 (of 291 total)
  • Hi,

    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.

    Hi,

    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.

    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.

    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 .

    HI,

    Try this-
    Clear your DNS cache by
    1. opening a Command Prompt
    2. Type ipconfig /flushdns
    3. Restart your web browser.

    Replace 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.

    You 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.

    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.

    Hi,

    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 page

    Hi,

    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.

    Hi,

    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.

    Hi,

    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 folder

    CMSHelpLive

    Hi,

    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);

    Hi,

    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’);

    Hi,

    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

Viewing 15 replies - 16 through 30 (of 291 total)