Forum Replies Created

Viewing 15 replies - 16 through 30 (of 39 total)
  • Thread Starter christernyc

    (@christernyc)

    Thanks for your reply Michael.

    I never given this info on a forum before, I hope I wasn’t ‘over paranoid’ by holding back too much info, while at the same time I’m nervous maybe I didn’t.

    Here you go –

    <?php
    
    /**
    
    * The base configurations of the WordPress.
    
    *
    
    * This file has the following configurations: MySQL settings, Table Prefix,
    
    * Secret Keys, WordPress Language, and ABSPATH. You can find more information by
    
    * visiting {@link https://codex.www.ads-software.com/Editing_wp-config.php Editing
    
    * wp-config.php} Codex page. You can get the MySQL settings from your web host.
    
    *
    
    * This file is used by the wp-config.php creation script during the
    
    * installation. You don't have to use the web site, you can just copy this file
    
    * to "wp-config.php" and fill in the values.
    
    *
    
    * @package WordPress
    
    */
    
    // ** MySQL settings - You can get this info from your web host ** //
    
    /** The name of the database for WordPress */
    
    define('DB_NAME', 'xxxxxxxxxxxxxxxxx');
    
    /** MySQL database username */
    
    define('DB_USER', 'xxxxxxxxxxxxxxxxx');
    
    /** MySQL database password */
    
    define('DB_PASSWORD', 'xxxxxxxxxxxx');
    
    /** MySQL hostname */
    
    define('DB_HOST', 'xxxxxxxxxxxxx.db.xxxxxxxx.hostedresource.com');
    
    /** Database Charset to use in creating database tables. */
    
    define('DB_CHARSET', 'utf8');
    
    /** The Database Collate type. Don't change this if in doubt. */
    
    define('DB_COLLATE', '');
    
    /**#@+
    
    * Authentication Unique Keys.
    
    *
    
    * Change these to different unique phrases!
    
    * You can generate these using the {@link https://api.www.ads-software.com/secret-key/1.1/ www.ads-software.com secret-key service}
    
    * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
    
    *
    
    * @since 2.6.0
    
    */
    
    define('AUTH_KEY', '_8G*y1xxxxxx@G)xxxxxxxx');
    
    define('SECURE_AUTH_KEY', '_8G*yxxxxxxx@G)xxxxxxxx');
    
    define('LOGGED_IN_KEY', 'DkT3 /kk/O7*xxxxxxx)bf');
    
    define('NONCE_KEY', '$J98Mja9zqbS+xxxxxxxxx');
    
    /**#@-*/
    
    /**
    
    * WordPress Database Table prefix.
    
    *
    
    * You can have multiple installations in one database if you give each a unique
    
    * prefix. Only numbers, letters, and underscores please!
    
    */
    
    $table_prefix = 'wp_';
    
    /**
    
    * WordPress Localized Language, defaults to English.
    
    *
    
    * Change this to localize WordPress. A corresponding MO file for the chosen
    
    * language must be installed to wp-content/languages. For example, install
    
    * de.mo to wp-content/languages and set WPLANG to 'de' to enable German
    
    * language support.
    
    */
    
    define ('WPLANG', '');
    
    /* That's all, stop editing! Happy blogging. */
    
    /** Absolute path to the WordPress directory. */
    
    if ( !defined('ABSPATH') )
    
    define('ABSPATH', dirname(__FILE__) . '/');
    
    /** Sets up WordPress vars and included files. */
    
    require_once(ABSPATH . 'wp-settings.php');

    Thanks again!

    I’ve tried all the suggestions mentioned above and they didn’t work

    Have the same problem here on 3 of my wordpress sites. It’s driving me f’ing crazy!

    Thread Starter christernyc

    (@christernyc)

    Yup, did the trick. I forgot that one has to do the “hard Reboot” sometimes.

    Happy New Year to all!!

    Thread Starter christernyc

    (@christernyc)

    Yeah, I tried that and no dice. And now I have a new problem with AI1SEO, thinking it was because I was using an older version of the plugin, I updated it. Now I have a new problem with it. It continues to bug me on the dashboard to – “All in One SEO Pack must be configured. Go to the admin page to enable and configure the plugin”. When I click the link to the admin page I make updates but it still bugs me.

    Do you know what is this? I appreciate your help.

    Thread Starter christernyc

    (@christernyc)

    Ah, yes! Thanks.

    Thread Starter christernyc

    (@christernyc)

    My bad, just take out the who am I widget from the form.

    Forum: Plugins
    In reply to: how to with TDO Miniforms
    Thread Starter christernyc

    (@christernyc)

    Yup, the <?php tdomf_the_form(1); ?> did the trick, for a different blog I was working on it didn’t but it works well with the others, thanks!

    Forum: Plugins
    In reply to: how to with TDO Miniforms
    Thread Starter christernyc

    (@christernyc)

    Hello Samboll,

    First of all I would like to thank you for your continuous support with my questions.

    I have already got the non-registered user form on my index page.

    As far as when a registered user logs in to their site admin and wants to use their personal form, I think what I would like to do instead is put the form directly on the user’s profile page as well as letting them have a your submissions page. Any suggestions on how I can put the users form on the user-edit.php as well? I guess it would be sort of a ‘quick press’ on the profile page, and the submissions page would be a little more detailed. I am using the ‘wp-hide-dashboard’ plugin so there is plenty of room to put the users form on it.

    When I did an experiment I put the <?php tdomf_the_form(1); ?> on the user-edit.php and it did not work, I suppose I will have to ‘widgetize’ it somehow?

    Sorry to be such a novice, I’m learning all this on the fly.

    I appreciate your help, thanks!

    Thread Starter christernyc

    (@christernyc)

    Ah yes, I was able to do all the necessary changes just directly using CSS.

    Thanks again for you help!

    Thread Starter christernyc

    (@christernyc)

    Ah yes! Thank you very much. These help big time!

    Thread Starter christernyc

    (@christernyc)

    Awesome thanks! Worked like a charm.

    Thread Starter christernyc

    (@christernyc)

    Hello Samboll,

    Thanks for your time with helping me.

    I do know where the coding is on the css end, I just want to know where this is:

    <form method=”get” id=”searchform” action=”<?php bloginfo(‘url’); ?>/”>
    <label class=”hidden” for=”s”><?php _e(‘Search for:’); ?></label>
    <div><input type=”text” value=”<?php the_search_query(); ?>” name=”s” id=”s” />
    <input type=”submit” id=”searchsubmit” value=”Search” />
    </div>
    </form>

    I do not have a searchform.php, where I understand it should be.

    Hope that helps,

    Thanks!

    Thread Starter christernyc

    (@christernyc)

    Resolved:

    If you’re using Dreamweaver, never, EVER let Dreamweaver update the links when you change the name of the downloaded WordPress folder to another name before uploading to your hosting.

    Took me all day to figure that one out…I’m quite ashamed…

    Thread Starter christernyc

    (@christernyc)

    whoops, ok. spoke to soon.

    I was able to finally access the set up page and enter the blog name and email. Later when I got the user name and password i entered the dashboard and I seem to have eliminated its link to the css, because the dashboard is completely without any styles or images.

    Obviously I must have got rid of one too many ../../wordpress/wp-includes/. Any clue where I went wrong or how I can get the dashboard to reconnect to the css? I will poke around…

    Thanks!

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