• Resolved Ariel

    (@arielpontes)


    I just did a fresh installation of WordPress on godaddy WordPress hosting. I followed the instructions here to turn this installation into a multisite one. I chose subdiractory path structure and not subdomains. I followed the Network Setup instructions in the Dashboard, i.e., made the necessary changes to wp-config.php and .htaccess. I created two new sites, one for the English version of my blog (/en) and one for the Portuguese (/pt) one (that’s why I installed multisites, I want to have two versions of the blog, one in each language).

    Everything seemed to work. When I click the menu link to one of my new site’s dashboard, however, I’m simply taken to mydomain.com/wp-admin/. If I manually alter the URL to mydomain.com/en/wp-admin/, it works and I see the dashboard for my specific site. But if I perform certain actions, like submitting the change permalinks form, I’m taken back to the generic wp-admin. I can’t for example import a blog to either /en or /pt, only to the generic/main site.

    I have read tens of topics here on this forum, there’s not even any point in listing them here, but none of them helped me solve my problem. If anyone has any idea what I could be doing wrong, I’d really appreciate some help.

    Thanks

Viewing 8 replies - 16 through 23 (of 23 total)
  • I echo the comment above. You cannot use “WordPress Hosting” for multisite. Go figure. It took me a 20 minute phone call with GoDaddy to cancel the wordpress hosting (at $12 a year on sale) and replace it with a standard CPanel hosting (at $99). But it works beautifully and you don’t need to mess with htaccess and login files, there’s a way to install multi-user sites automatically and with very little fuss.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Well. That sucks. They could at least have that noted somewhere instead of failing silently.

    peterdulany – care to share the steps to set up a multisite with godaddy CPanel hosting?

    Thread Starter Ariel

    (@arielpontes)

    Hi,

    Yes, I’ve also talked to the support staff through the online chat and that was the conclusion. It’s an intentional limitation of the WordPress hosting. I looked for this information elsewhere after the chat but didn’t find it. Not very professional of them. I’ll try setting up two languages using categories or some plugin like qTranslate. If I’m not satisfied I’ll get a full refund. Thanks for the help.

    Hi mynameisdan00,

    I personally believe, it is not that they don’t support, multisites using Subdomains with shared hosting, it is that they have some glitch’s in configuring multisites or the support staff’s don’t know how to resolve this for customers.

    Actually, I figured it out How to use subdomains for multisites with godaddy shared hosting, wrote an article about it, see enabling multisites using subdomains with Godaddy shared hosting where I explained how you can enable it.

    hey did anyone get sub-directories working with godaddy? I seem to have an issue with setting up multi-site sub directories and godaddy is no help.

    Just thought I would share a solution I found for multi-site sub-directories with godaddy, I found this post and inside is a nice piece of code to replace with your .htaccess

    Here’s the post:
    https://premium.wpmudev.org/forums/topic/already-installed-multisite-w-subdirectories-on-godaddy

    and the code:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    # uploaded ?les
    RewriteRule ^([_0-9a-zA-Z-]+/)??les/(.+) wp-includes/ms-?les.php??le=$2 [L]
    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]
    </IfModule>

    ??

    @dizzymediainc thank you so much for posting this!

Viewing 8 replies - 16 through 23 (of 23 total)
  • The topic ‘Multisite installation not working properly on godaddy’ is closed to new replies.