a year ago
Description: A content management system (CMS) written in PHP
Category: CMS
21 Replies
a year ago
How to use it? I would like to try to deploy my WP site to railway. Don't understand what to do after template is deployed
a year ago
Once your template is deployed, you can open the link generated with the Primary service in your project to setup your site.
a year ago
Do you know any handy tool which I can use to import my exported dump file to mariaDB in railway? Something like PHPMyAdmin?
a year ago
I've installed phpmyadmin plugin for WP - it's basically the same, but as plugin
a year ago
Transferring a WordPress site is very difficult/complicated, as you’d have to shutdown the deployment, delete everything in the volume, import your existing files, and replace every table in your existing database with the dump. Also to the extent of replacing database files, doing it inside WordPress is very dangerous and you’d end up corrupting your current database or files and have to restart because WordPress relies on user and plugin table columns to determine permissions and manage plugins.
9 months ago
How can I change the Wordpress Address & Home to my custom domain instead of the default generated by Railway? This field is grayed out in WP and cant be changed.
9 months ago
Have you set your domain in the service settings? and have you since redeployed?
9 months ago
Ive connected my custom domain. All good. Via Cloudflare. But when I open that it redirects to the old autogenerated url from railway.There is a default variable RAILWAY_PUBLIC_DOMAIN that point to my custom domain.I have redeployed.Still points to old url.
9 months ago
PORT=80 WORDPRESS_AUTH_KEY=xxx WORDPRESS_AUTH_SALT=xxx WORDPRESS_CONFIG_EXTRA=define('DOMAIN_CURRENT_SITE','${{RAILWAY_PUBLIC_DOMAIN}}');define('WP_HOME','https://${{RAILWAY_PUBLIC_DOMAIN}}');define('WP_SITEURL','https://${{RAILWAY_PUBLIC_DOMAIN}}'); WORDPRESS_DB_HOST=${{MariaDB.MARIADB_PRIVATE_HOST}}:${{MariaDB.MARIADB_PRIVATE_PORT}} WORDPRESS_DB_NAME=${{MariaDB.MARIADB_DATABASE}} WORDPRESS_DB_PASSWORD=${{MariaDB.MARIADB_PASSWORD}} WORDPRESS_DB_USER=${{MariaDB.MARIADB_USER}} WORDPRESS_LOGGED_IN_KEY=xxx WORDPRESS_LOGGED_IN_SALT=xxx WORDPRESS_NONCE_KEY=xxx WORDPRESS_NONCE_SALT=xxx WORDPRESS_SECURE_AUTH_KEY=xxx WORDPRESS_SECURE_AUTH_SALT=xxx RAILWAY_PUBLIC_DOMAIN is defined by railway and it point to my custom domain v2.mydomain.com
9 months ago
Now I know you said you've redeployed, but are you sure it was a redeploy and not a restart?
9 months ago
I redeployed. No change.
But I found the error. Browsers are caching the old redirect.Using Private mode redirect me to the correct url. Thank you.
8 months ago
After adding a custom domain ive redeployed but now I can't logged back in i'm getting:"Error: The username username is not registered on this site. If you are unsure of your username, try your email address instead." the credentials are saved and is correct
8 months ago
so what would the issue be then? nothing has changed but the custom domain, i didn't touch any of the configurations, just added the custom domain - it was working before the redeploy, the site works it pulls from the db, i see the user in the db so clearly its registered
8 months ago
Something is misconfigured, unfortunately we are unable to provide support for 3rd party software.
8 months ago
Any way to backup the database and wordpress? via ftp or something like that?
8 months ago
Any way to backup the database and wordpress? via ftp or something like that?
I would look into any third-party plugin solutions on the WordPress plugin marketplace to ensure you can backup files in a usable format. Updraft Plus works nice too.
Status changed to Awaiting Railway Response railway[bot] • 8 months ago
5 months ago
How can i download the files from the wordpress installation, make changes and upload back ?
5 months ago
How can i download the files from the wordpress installation, make changes and upload back ?
Try Wordpress Duplicator plugin, you can then setup your local environment using WP Local
a month ago
Hello, very cool template! thanks for the work! I created a custom theme for a wordpress, for now, I didn't find a better way when I want to update it than to compress it, delete the old one and re-add the new theme. It will be easier with a FTP, SSH or a CI/CD with github, is it possible to do that with this template?