Questions tagged [bluehost]

DO NOT USE THIS TAG! Bluehost is a hosting provider. Use tags specific to your CODING problem.

Bluehost is a hosting provider. It has scripts to install Mantis, Drupal, Wordpress, and a variety of other products. It also provides subversion, and git.

343 questions
2
votes
2 answers

How do I install specific versions of Ruby and Rails on Bluehost?

I logged into my Bluehost server through SSH and I want to install Ruby v1.9.3 and Rails v3.2.13. The default version of Ruby seems to be 1.8.7 and Rails is 2.3.11. I tried to upgrade Rails using: gem install rails -v 3.2.13 --no-rdoc --no-ri I…
Venomoustoad
  • 1,203
  • 1
  • 14
  • 38
2
votes
1 answer

Push to bluehost using Tower.app

I'm a git newbie and got a question about pushing a repo to bluehost. I am using Tower.app to push to Github.com and I also want to be able to push it to my account in bluehost.com not at the same time (I would like to select it from the drop down…
chatu
  • 305
  • 5
  • 13
2
votes
2 answers

500 error on bluehost server for CakePHP application

I have uploaded my application on bluehost server. I have uploaded it on public_html. htacces on root /.htaccess permission 644 RewriteEngine on RewriteRule ^$ app/webroot/ [L] RewriteRule (.*)…
Amar Banerjee
  • 4,992
  • 5
  • 34
  • 51
2
votes
2 answers

django-admin.py: command not found (bluehost server)

After struggling more than 6 hours, I decided to ask for help. Mission: To create a project with the help of Django Tools: Windows Vista, Putty SSH Location: Bluehost (www.bluehost.com) Server I have already read these topics about the same…
Eniac
  • 55
  • 7
2
votes
2 answers

Python module issue

I have a shared hosting environment on Bluehost. I am running a custom installation of python(+ django) with a few installed modules. All has been working, until yesterday a change was made on the server(I assume) which gave me this django…
someguy
  • 59
  • 6
2
votes
1 answer

Simple code to install a subversion repository on a linux server

What is the simplest way to install a private subversion repository on a Linux server - specifically a bluehost shared server? Apache version 2.2.13 (Unix) PHP version 5.2.9 Architecture x86_64 Operating system Linux Commands welcome....
BWelfel
  • 532
  • 6
  • 20
2
votes
1 answer

Amazon SES Emails are not getting to some servers

I have set up Amazon SES. My domain is verified and my DKIM is enabled and verified. Emails do send but I have a Bluehost account that does not receive the emails. According to the logs at Bluehost they don't hit their servers at all which implies…
BobB
  • 750
  • 1
  • 9
  • 22
2
votes
1 answer

who to access nodejs app, in bluehost?

I have an application running on bluehost, but I can not access this. I've tried accessing the domain (eg mydomain.com:8000), but does not work. Is there any way to access the application without requiring a dedicated ip? my app: var port =…
Miguel Borges
  • 7,549
  • 8
  • 39
  • 57
2
votes
1 answer

PHP upload script works locally, however not on remote server

It's strange, this script works locally (on MAMP), but not on my remote server (Bluehost). I tried adding some POST data, and that worked, however the file upload isn't working at all. Any ideas? //upload file if ((($_FILES["file"]["type"] ==…
user433351
  • 125
  • 1
  • 4
  • 13
2
votes
1 answer

C# - Sending an Email from BlueHost

I have BlueHost, and I cannot get this to work with C#. I have taken the details right off of the page where I login: I then use this code to try and send an email: MailMessage message = new MailMessage { From = new…
hetelek
  • 3,776
  • 5
  • 35
  • 56
1
vote
2 answers

How To Install a Subversion 1.7.3 server on Bluehost

I have a Bluehost account, and I want to install a personal Subversion server on it. I have come across a couple of tutorials, but they are for version 1.4.6, and certain issues in the build process seem to have changed, so I'm rather lost. So, my…
CodeBunny
  • 1,991
  • 5
  • 22
  • 32
1
vote
2 answers

publish the ASP.NET MVC 3 project in bluehost

I've designed a website using ASP.net MVC 3. I wanted to host it online. But as copied all the folders and files and uploaded in Bluehost [via FTP Manager], the page doesn't load. It still shows the template of Bluehost. What all files should I…
kk-dev11
  • 2,654
  • 5
  • 37
  • 48
1
vote
3 answers

My php form generates errors on bluehost server

I have created a contact form for my website. When I press the send button the form goes to a thank you page as it should. When the thank you page displays the url changes and a folder /info/ is added. see…
1
vote
1 answer

$facebook->getUser() returns 0 after moving to new hosting

I'm using Facebook PHP SDK 3.1.1. This code works fine for me on my previous hosting. I've just moved it to BlueHost and the value of $user is always 0 even when user already logged in: $facebook = new Facebook(array( 'appId' => FACEBOOK_APIKEY, …
Bao Nhan
  • 180
  • 7
1
vote
1 answer

Rename urls using htaccess in BlueHost

I want to change/rename urls in my website. For now I'm just removing .html in url like this: ErrorDocument 404 /errorpage.html RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.html -f RewriteRule ^(.*)$ $1.html…
Vigaca
  • 25
  • 4