Question

How to access Wordpress after creating a droplet

Hi, I am probable an idiot but I need some help. I created a wordpress droplet and went through all the steps. Probably I did not too bad because a site has been created (at the IP address I can see the “Hello World!” page). But there is no way to acces is. I thought to just add /wp-admin, but no success. Finnaly I tried /wp-loging.php. Than there is a login screen but after that again: “The requested URL was not found on this server.” Could you help me out here?


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

alexdo
Site Moderator
Site Moderator badge
September 2, 2022

Hello @woutereerkens

This might be a weird issue related to the browser’s cache. You can try to access the admin area using both /wp-admin or by hitting the PHP file in an alternative browser.

You can also ensure that the web server (Apache/Nginx) is running fine.

Regards

KFSys
Site Moderator
Site Moderator badge
September 2, 2022

Hi @woutereerkens,

That’s strange for a new WordPress instance. Did you create the WordPress Droplet from MarketPlace or did you install everything on your own?

Additionally, are you using your Droplet’s IP address to connect to your WordPress or are you using a Domain? If you are using an IP address, I’ll urge you to use a Domain instead.

One more, make sure you have the following in your .htaccess file in your website’s root directory:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up