Using X across multiple subdomains

I have a site that I am revamping. For the purposes of this question we’ll call it www.example.com.

I wanted to leave the live site up while developing the new version. For this reason I created a subdirectory - www.example.com/test/ and installed X here. I now want to start from a clean slate but without wiping this first test site, so I have created www[dot]example[dot]com/demo/ (New users limitied to two links in a post?!?!?!) and a fresh wordpress install, and now I can’t upload the X theme. When I upload the .zip file, it uploads and then redirects to a page that merely says “Something went wrong”

Is there anyone that could give me an idea of what i’ve done wrong or how to fix it? All help much appreciated!

Hi @McKenzie

This doesn’t sound like something related specifically to X theme, it could be some server resources limitation, I suggest checking the server error log after uploading the theme file, to enable debugging log in WordPress, you can edit wp-config.php file and replace this line:

define('WP_DEBUG', false);

With:

define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);

Then you can check /wp-content/debug.log file to check any error being reported there.

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.