Error after hosting to hostgator - cpanel

i am trying to deploy my website on this link : http://face-architects.com
but the problem i am facing is this. you can see in above link for my domain at the end of this report for WWW option. It is redirecting to somewhere here:
www.face-architects.com -> ghs.google.com -> ghs.l.google.com -> [ 74.125.206.121 ]
i don't what is this happening with me. i have uploaded many sited in different server. but i haven't faced such kind of problems so far.
http://www.intodns.com/face-architects.com
please provide proper solution.
this website is hosted on hostgator. it gives google's 404 error.
THANKS IN ADVANCE

Please go to Myaccount for your domain from wherever you bought your domain.
Then select manage DNS=> then go to Zone settings and change
WWW which points to ghs.google.com
Replace with
face-architects.com
and You are done.
Please do comments.

Related

Plesk 11 DOMAIN Catch All - Wildcard

im wondering and looking around for a possibility of a wildcard/catch all domain setting. I couldnt find anything online so ...
I basically want every domain that points to my site via an A-Record and which gets requested, to display my htdocs default folder.
At the moment every request for a domain that isnt setup as a webspace gets redirected to the default site. <- Thats not what I want.
Does anybody know a solution for this?
Thanks :)
I have Plesk 11.5.30 with Apache running
Do you mean you want to create wildcard subdomain on your domain ? Please have look at https://kb.plesk.com/en/2239

getPageLink() and https

So I've recently implemented and activated SSL certification on my webshop. Now I need to change all the links on it to https:// from http://
There are a few hardcoded links on the site that I'm in the process of changing but most of the links are generated by a function that fetches the url from the PS database and I've managed to figure out that you add "true" value as argument and it will fetch the https url.
The thing is that there are a lot of diff. modules and it would take a lot of time to do such thing. So I thought there might be an easier way to do this? Some kind of configuration that will add "true" value as argument for all getPageLink() functions.
The SSL is working fine. The only thing Firefox, Chrome etc are complaining on is that some elements are not https. Any help would be appritiated.
Edit : I figured there has to be some kind of global variable that respresents the domain name. So I went to the database and found PS_SHOP_DOMAIN and PS_SHOP_DOMAIN_SSL. From what I've been able to figure out is that PS only apply SSL on the order and account pages. But I need it for all pages. so I changed the value for PS_SHOP_DOMAIN to https://domain.com but this did not make any difference. Am I on the right path?
Did you enable SSL here:
Preferences -> General -> Enable SSL
Regards,

Resolving a sub directory to a Heroku app via .htaccess?

I use a Media Temple Grid Service solution for hosting. I currently have a Heroku app which I serve via blog.domain.com using a CNAME record.
I'm trying to have the sub-directory domain.com/blog resolve to the Heroku app instead. I don't want the header to change, so I'm not looking for a redirect I believe.
I've attempted a couple of snippets for .htaccess files which have not worked for me. Can anyone recommend some tips to have this work?
It seems a proxy pass would work from the research I've done, but I can't figure out where or how to set it up given my GS folder structure.
Any help is much appreciated. Thanks in advance.

Issue with Cloudflare, can not access page

everybody.
I got an "404 not found" when trying to access the link
http://www.abc.com/api.php/
But the same link without backward slash is OK:
http://www.abc.com/module/mfox/api.php
My server using Cloudflare. And I have disabled this service, but it still happen. I also try with htaccess, but it do not work. Could anyone tell me what's the wrong here, and how to fix this issue?
Thank you.
That would be on your server directly (we don't host your content). The fact that it happens with us off definitely means an issue on your server.

Yii framework, link doesnt redirect to server

I have some problem in Yii Link. My application works fine in localhost but i have move it into server. All the link in server is redirecting to localhost. Can anybody help me out in this situation? Should I have to add something more in configuration file. Thanks in Advance.
Did you use CHtml::link() to create your link? And if you've done it so for the url did you provide an array as follow:
array('Controller/Action', 'param'=>value)
Example:
array('post/list', 'page'=>3)
At the end you'll obtain:
CHtml::link("your text link", array('post/list', 'page'=>3));
(I'm asking it because if you've written every link in hard, it's normal to have each link redirecting to localhost!)