Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)
  • Lewis

    (@lewisdavis88)

    go to the image and change its “link to” to none. Its probably set to attachment page or media file or something like that. If you want to find the image then go to “media” and find it there, if not then just edit the page, click on the image and you can see the url there also.

    Forum: Fixing WordPress
    In reply to: Make it mainpage
    Lewis

    (@lewisdavis88)

    Login to wordpress and go to settings>general> and then from there you can change the wordpress address and site address.
    https://codex.www.ads-software.com/Giving_WordPress_Its_Own_Directory

    Lewis

    (@lewisdavis88)

    If you search for this in support you will see a million different threads which help to solve this problem. Most likely your database name, username or password is not correct in the wp-config.php file.

    Forum: Plugins
    In reply to: Fast Secure contact form
    Lewis

    (@lewisdavis88)

    Perfect, I put that in both files and it worked.

    Thank you so much!

    Forum: Plugins
    In reply to: Fast Secure contact form
    Lewis

    (@lewisdavis88)

    This is the site:

    https://jakobbelbin.com/

    Forum: Plugins
    In reply to: Fast Secure contact form
    Lewis

    (@lewisdavis88)

    Ah sorry ive read the thread proparly now and ive added this:

    session_save_path(‘/home/content/88/8601388/html/sessions’);

    in the wp-config.php file, however I get:
    Fatal error: Call to undefined function phpsession_save_path() in /home/content/88/8601388/html/wp-config.php on line 1

    Forum: Plugins
    In reply to: Fast Secure contact form
    Lewis

    (@lewisdavis88)

    Hi, thanks for your help, but when I go to the index.php file, where exactly do I put the session code?
    thanks

    Thread Starter Lewis

    (@lewisdavis88)

    Hi Ipstenu,

    thanks for the advice, I did this and it has tracked the problem down to the ‘awesome Flickr gallery’….. I did a recomended update on it the other day through the wordpress dashboard.

    Thread Starter Lewis

    (@lewisdavis88)

    Hi mrwweb,

    Thank you for your help, thats really useful and very much appreciated.

    I will save this for next time as well!

    Cheers

    Lewis

    Thread Starter Lewis

    (@lewisdavis88)

    Ok I managed to fix it by following this tutorial:

    Thread Starter Lewis

    (@lewisdavis88)

    Hi govpatel,

    where in this file? :

    <?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', 'wordpress');
    
    /** MySQL database username */
    define('DB_USER', 'wordpress');
    
    /** MySQL database password */
    define('DB_PASSWORD', 'wordpress');
    
    /** MySQL hostname */
    define('DB_HOST', 'localhost');
    
    /** 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 and Salts.
     *
     * Change these to different unique phrases!
     * You can generate these using the {@link https://api.www.ads-software.com/secret-key/1.1/salt/ 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',         'MFmvL:6Ja{-NIat-liYcqT!&.Ft5V3-4/r]h-|3%|I.0BrFQgx-v;UHD:SRktJwW');
    define('SECURE_AUTH_KEY',  'JQKBl8a1StS,);39r0,KG^%%wx7xl3QOJG(z7c;!~cjJ([,,TrBiSvZ{)5)w?r_1');
    define('LOGGED_IN_KEY',    'PE3D#C,&hSUSO!@vKg$UC4poF7EO=V<code>?0!wDrveQ|h7-2,-z0Wf!1Xa</code>XmD(je{2');
    define('NONCE_KEY',        ',]b-?p-]Z~&+qh6@Ri5_A<>@!|_{w!r!b(e[zC@xUvkMW(g>i8Q

    S5&>z9wq2a<;’);
    define(‘AUTH_SALT’, ‘xf.u0aKMH&_GE[Z*fS0[FEE?H1:(lV4k2UcfQQv v?i DN7^9<6ws0FpTKZ$kb]x’);
    define(‘SECURE_AUTH_SALT’, ‘nnkgiN1{=d,n28j*0$ElCSV{)qE<@TvnSt6.M}4)V}y|<>~$C(:)jhExar%=Xq{/’);
    define(‘LOGGED_IN_SALT’, ‘eweptGk^brS`^}h5RSbW!EnwvZzJ0)R9zYBLHN<4ZSB]r0qZuC!&:%#*svW$L(7$’);
    define(‘NONCE_SALT’, ‘oT]o-DwT|4Ta`>!~tQT4_H&@+i&=1<az(>{d-F6<ToP%mHCuaUKs=ow4sg^GiU;j’);

    /**#@-*/

    /**
    * 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_DE.mo to wp-content/languages and set WPLANG to ‘de_DE’ to enable German
    * language support.
    */
    define(‘WPLANG’, ”);

    /**
    * For developers: WordPress debugging mode.
    *
    * Change this to true to enable the display of notices during development.
    * It is strongly recommended that plugin and theme developers use WP_DEBUG
    * in their development environments.
    */
    define(‘WP_DEBUG’, false);

    /* 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’);
    `

Viewing 11 replies - 1 through 11 (of 11 total)