Forum Replies Created

Viewing 15 replies - 46 through 60 (of 291 total)
  • Hi,

    In WordPress, when you upload anything, these folders get created automatically- wp-contents/uploads/year/month/.
    Check if these folder are available. If not then you may need to create folders manually.

    Forum: Localhost Installs
    In reply to: WordPress Error

    Hi,

    This may be because of your mismatched database name in wp-config.php and phpmyadmin files.

    Hi,

    Add this code to your wp-config.php file.

    define(‘WP_PROXY_HOST’, ‘proxy.url.com’);
    define(‘WP_PROXY_PORT’, ‘1234’);
    define(‘WP_PROXY_USERNAME’, ”);
    define(‘WP_PROXY_PASSWORD’, ”);
    define(‘WP_PROXY_BYPASS_HOSTS’, ‘localhost’);

    hi,

    link not working. Post it again.

    Hi,

    It may be due to your server being unable to receive feed from Google and determine incoming links. Give it another day or so and see if the feed starts syncing again.

    Hi,

    Use paragraph tag and add some css as per your requirement.

    Hi,

    Follow these steps:

    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.

    Hi,

    It might be due to your mismatched database name in wp-config.php file and database created in phpmyadmin

    Hi,

    Try Soliloquy plugin.

    Hi,

    Firstly check if you get any option from your theme setting to hide it .

    or

    Delete this code from your site to remove search bar-

    <div class=”search-bar col-lg-12 col-sm-12 col-6″>
    <div class=”input-group”>
    <span class=”input-group-btn”>
    <button class=”btn btn-primary” type=”submit” name=”submit” id=”searchsubmit” value=”Search”>Search</button>
    </span>
    <input type=”text” class=”form-control field” name=”s” id=”s”>
    </div><!– /input-group –>
    </div>

    Hi,

    Try these:

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

    Hi,

    Create template and add that template to your theme.Use this code and do changes according to your requirements.

    <script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js&#8221; ></script>
    <script src=”http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.0/jquery.validate.js”></script&gt;

    <script>
    function fnbusiness(str) {
    document.getElementById(‘private’).style.display=”none”;
    document.getElementById(‘com’).style.display=”none”;
    if(str==”Private Company”)
    {
    document.getElementById(‘private’).style.display=”block”;
    document.getElementById(‘com’).style.display=”none”;
    }
    else
    {
    document.getElementById(‘private’).style.display=”none”;
    document.getElementById(‘com’).style.display=”block”;
    }
    }
    </script>
    <form method=”POST” id=”regform” name=”myform” action=””>
    <table align=”center”>
    <tr>
    <td>
    <label id=”label” for=”tname”>Type of business</label>
    </td>
    <td>
    <select name=”tname” id=”tname” onchange=”fnbusiness(this.value)”>
    <option value=”select”>Select</option>
    <option value=”Government Department”>Government Department</option>
    <option value=”ASX Listed Company”>ASX Listed company</option>
    <option value=”Private Company”>Private Company</option>
    </select>
    </td>
    </tr>
    </table>

    <table align=”center” id=”com” style=”display:none”>
    <tr>
    <td colspan=”2″>
    <label id=”label” for=”sole”>company sole trader</label>
    </td>
    </tr>
    <tr>
    <td>
    <label id=”label” for=”ACN”>ACN</label>
    </td>
    <td>
    <input type=”” name=”ACN” id=”ACN” class=”required”>
    </td>
    </tr>
    <tr>
    <td>
    <label id=”label” for=”ABN”>ABN</label>
    </td>
    <td>
    <input type=”” name=”ABN” id=”ABN” class=”required”>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”trade”>Trading Name</label>
    </td>
    <td>
    <input type=”text” name=”trade” id=”trade” class=”required”>
    </td>
    </tr>

    <tr>
    <td colspan=”2″>
    <label id=”label” for=”postal”>Postal address</label>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”street”>Street Address</label>
    </td>
    <td>
    <input type=”text” name=”street” id=”street” class=”required”>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”city”>City</label>
    </td>
    <td>
    <input type=”text” name=”city” id=”city” class=”required” maxlength=”25″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”state”>State</label>
    </td>
    <td>
    <input type=”text” name=”state” id=”state” class=”required” maxlength=”30″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”zip”>Zip</label>
    </td>
    <td>
    <input type=”text” name=”zip” id=”zip” class=”required” maxlength=”5″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”country”>Country</label>
    </td>
    <td>
    <input type=”text” name=”country” id=”country” class=”required” maxlength=”30″>
    </td>
    </tr>

    <tr>
    <td colspan=”2″>
    <input type=”checkbox” onclick=”return address();” name=”physical” value=”address” />Physical Address same as above

    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”street”>Street Address</label>
    </td>
    <td>
    <input type=”text” name=”street1″ id=”street1″ class=”required”>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”city”>City</label>
    </td>
    <td>
    <input type=”text” name=”city1″ id=”city1″ class=”required” maxlength=”25″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”state”>State</label>
    </td>
    <td>
    <input type=”text” name=”state1″ id=”state1″ class=”required” maxlength=”30″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”zip”>Zip</label>
    </td>
    <td>
    <input type=”text” name=”zip1″ id=”zip1″ class=”required” maxlength=”5″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”country”>Country</label>
    </td>
    <td>
    <input type=”text” name=”country1″ id=”country1″ class=”required” maxlength=”30″>
    </td>
    </tr>

    <tr>
    <td colspan=”2″>
    <label id=”label” for=”phone”>Phone Numbers</label>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”office”>office</label>
    </td>
    <td>
    <input type=”text” name=”office” id=”office” class=”required” maxlength=”15″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”mobile”>Mobile</label>
    </td>
    <td>
    <input type=”text” name=”mobile” id=”mobile” class=”required” maxlength=”15″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”fax”>Fax</label>
    </td>
    <td>
    <input type=”text” name=”fax” id=”fax” class=”required” maxlength=”15″>
    </td>
    </tr>

    <tr> <td colspan=”2″ align=”center”><input type=”submit” value=”Submit” /></td>
    </tr>
    </table>
    </form>

    <div id=”private” style=”display:none”>
    <form method=”POST” name=”pname” id=”pname” action=””>

    <table align=”center”>
    <tr>
    <td colspan=”2″>
    <label id=”label” for=”postal”>Postal address</label>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”street”>Street Address</label>
    </td>
    <td>
    <input type=”text” name=”street” id=”street” class=”required”>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”city”>City</label>
    </td>
    <td>
    <input type=”text” name=”city” id=”city” class=”required” maxlength=”25″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”state”>State</label>
    </td>
    <td>
    <input type=”text” name=”state” id=”state” class=”required” maxlength=”30″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”zip”>Zip</label>
    </td>
    <td>
    <input type=”text” name=”zip” id=”zip” class=”required” maxlength=”5″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”country”>Country</label>
    </td>
    <td>
    <input type=”text” name=”country” id=”country” class=”required” maxlength=”30″>
    </td>
    </tr>

    <tr>
    <td colspan=”2″>
    <input type=”checkbox” onclick=”return address();” name=”physical” value=”address” />Physical Address same as above

    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”street”>Street Address</label>
    </td>
    <td>
    <input type=”text” name=”street1″ id=”street1″ class=”required”>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”city”>City</label>
    </td>
    <td>
    <input type=”text” name=”city1″ id=”city1″ class=”required” maxlength=”25″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”state”>State</label>
    </td>
    <td>
    <input type=”text” name=”state1″ id=”state1″ class=”required” maxlength=”30″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”zip”>Zip</label>
    </td>
    <td>
    <input type=”text” name=”zip1″ id=”zip1″ class=”required” maxlength=”5″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”country”>Country</label>
    </td>
    <td>
    <input type=”text” name=”country1″ id=”country1″ class=”required” maxlength=”30″>
    </td>
    </tr>

    <tr>
    <td colspan=”2″>
    <label id=”label” for=”phone”>Phone Numbers</label>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”office”>office</label>
    </td>
    <td>
    <input type=”text” name=”office” id=”office” class=”required” maxlength=”15″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”mobile”>Mobile</label>
    </td>
    <td>
    <input type=”text” name=”mobile” id=”mobile” class=”required” maxlength=”15″>
    </td>
    </tr>

    <tr>
    <td>
    <label id=”label” for=”fax”>Fax</label>
    </td>
    <td>
    <input type=”text” name=”fax” id=”fax” class=”required” maxlength=”15″>
    </td>
    </tr>

    <tr> <td colspan=”2″ align=”center”><input type=”submit” value=”Submit” /></td>
    </tr>
    </table>

    </div>

    Hi,

    just add <?php ob_start(); ?>on the top of wp-login.php page

    Hi,

    Try Xampp instead of wamp and check if problem is still there.

    Hi,

    Just add this code to your page.php page

    <?php

    while ( have_posts() ) : the_post();

    get_template_part( ‘content’, ‘page’ );

    if ( comments_open() || get_comments_number() ) {
    comments_template();
    }
    endwhile;
    ?>

Viewing 15 replies - 46 through 60 (of 291 total)