Godaddy

Permalink
Hi,

All my projects in Godaddy were working fine untill this morning, they stopped work, does anyone have the same issue?

For example:http://www.innluanda.com/ it should be redirect tohttp://www.innluanda.com/index.php/pt/... and it is redirecting tohttp://www.innluanda.com/innluanda.com/index.php/pt/,... basically it's putting the folder that is installed in everything.

 
hostco replied on at Permalink Reply
hostco
Hello,

To regain access to your site, delete the contents from your .htaccess file or rename it.

Next access your dashboard here

http://www.innluanda.com/index.php/dashboard...

Last disable pretty urls

Dashboard > System & Settings > Pretty URLs

Godaddy has made changes to the server you are on and your .htaccess code is no longer working.

Contact them and ask them for then new correct .htaccess code.
carlosleal replied on at Permalink Reply
I've tryed what you say, but it's giving me error while doing the login because in the login it redirect to this page:http://www.innluanda.com/innluanda.com/index.php/login/do_login/... when it should be:http://www.innluanda.com/index.php/login/do_login/....

The Godaddy support doesn't reply to my issues :(
Blenderite replied on at Permalink Reply
Blenderite
When I click on those links you provide, it redirects me to:

http://www.innluanda.com/innluanda.com/index.php/pt/...

And it says:

No input file specified.

Sounds like something is wrong here for sure.
carlosleal replied on at Permalink Reply
but it shloud redirect to:http://www.innluanda.com/index.php/pt/,... i don't understand why is this happen... i don't touch in the project about 6 months, and it was working fine untill this morning. this is happen in all my projects in godaddy, this is just an example...
Blenderite replied on at Permalink Reply
Blenderite
It is definitely a GoDaddy problem, not C5.
mhawke replied on at Permalink Reply
mhawke
I have an old test account with GoDaddy and I can't get in either. The only page that semi-works in the home page but I can't navigate off that. Login redirects to a 'Page Not Found'. Can't get to my dashboard because I can't login. index.php?cID=2 redirects to login (of course) and then dies from there. I renamed the .htaccess file and I even went into the database and turned URL_REWRITING off because I couldn't get to the dashboard to do it. It's Still spitting out Pretty URL addresses on all the nav links so are they caching my old .htaccess file?

As I say, this is an old account that I rarely touch but I read some recent forum posts about it and so I tried my account.

Damn you GoDaddy!!!
mlocati replied on at Permalink Reply
mlocati
I had a similar issue with an Italian service (aruba.it).
The following contents of the .htaccess file resolved the problem for me. I'm not sure this could apply to GoDaddy too, so keep a backup of your .htaccess files...

1. If concrete5 is under a sub-folder called SUBFOLDER of the root:
Place this .htaccess in the /SUBFOLDER folder (replace SUBFOLDER with your folder name)
RewriteEngine On
Options -Multiviews
RewriteRule ^index.php/(.*) /SUBFOLDER/index.php [nocase,last]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteRule ^(.+) index.php [last]


2. If concrete5 is in the root of the web server
Place this .htaccess in the root folder
RewriteEngine On
Options -Multiviews
RewriteRule ^index.php/(.*) /index.php [nocase,last]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteRule ^(.+) index.php [last]