• Resolved salvo.dna29

    (@salvodna29)


    I’m trying to install wordpress with xampp .. but give me problems , I followed any guide possible .. but when I edit the php file and insert the host with the domain in the browser I do not find the page … what can i do ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • Xampp installs wherever you place it, and then its ‘\htdocs\’ folder is where you place your ‘wordpress’ folder (using whatever name). In my own case, that amounts to this:

    H:\xampp\htdocs\wordpress\wp-config.php.

    Then, here are my entries in wp-config:

    define('WP_HOME','https://localhost/wordpress');
    define('WP_SITEURL','https://localhost/wordpress');
    
    define('DB_NAME', 'dbname');
    
    define('DB_USER', 'root');
    
    define('DB_PASSWORD', '');
    
    $table_prefix='wp2_';

    Are you going to your own equivalent of ‘https://localhost/wordpress’ and not finding your installation?

    Here is the guide I had first used:

    https://premium.wpmudev.org/blog/how-to-install-wordpress-locally-for-pcwindows-with-xampp/

    Thread Starter salvo.dna29

    (@salvodna29)

    define(‘WP_HOME’,’https://localhost/wordpress’);
    define(‘WP_SITEURL’,’https://localhost/wordpress’);

    do not find them or have not seen them … I installed the site folder , the folder htdocs .. modified the file and now say .. error in establishing a database connection … I have done something wrong in the database ?

    define(‘WP_HOME’,’https://localhost/wordpress’);
    define(‘WP_SITEURL’,’https://localhost/wordpress’);

    do not find them or have not seen them …

    That is fine, I believe.

    What is your actual path and what URL are you using?

    ‘\xampp\htdocs\wordpress\’ = ‘\https://localhost/wordpress’

    What do you actually have for each of those?

    .. error in establishing a database connection … I have done something wrong in the database ?

    No, you just have yet to tell WordPress how to find and access it, if it exists.

    Thread Starter salvo.dna29

    (@salvodna29)

    ok ok.. the problem was the plce where i saved the first problem.. indirectly you relsolved my problem thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘install with xampp’ is closed to new replies.