|
#1
|
|||
|
|||
|
Currently I am a GoDaddy customer.
I have a shared hosting account with them where I host several Joomla sites. Recently I have wanted to install Magento to test with. I have been unable to install Magento. It hangs on the installation but gives no errors. My shared hosting account does meet all the minimum requirements for Magento. After doing a little research I have found it may be a problem with the runtime script timing out. It seems there are a few people who have been able to install Magento successfully on shared GoDaddy hosting accoutns but they complain they run extremely slow & eventually move hosting companies to upgrade to a less crowded hosting environment. From what I have read Magento is more resource intensive than Joomla. I was wondering if there are any Host Gator customers who have Magento running and if so what level of hosting account do you have? Is anyone running it successfully on a shared hosting account? Thanks in advance! |
|
#2
|
|||
|
|||
|
Interested in the replies to this one.Have been trying to install Magento on our Hostgator reseller account with no luck. Anyone managed to install and how? We get a 500 error and have changed permissions to 755 as suggested by Magento. Suspect it has something to do with htaccess files but stumped.
Cheers |
|
#3
|
|||
|
|||
|
I would be glad to check with my shared account.
Except, I don't know what Magneto is... Please provide a link.
__________________
|
|
#4
|
|||
|
|||
|
Here is the link to the Magento site.
It is an open source eCommerce softwarw that supposedly is far superior to osCommerce. http://www.magentocommerce.com/ Thanks. |
|
#5
|
|||
|
|||
|
Quote:
__________________
|
|
#6
|
||||
|
||||
|
I have a HG reseller account and the system requirements are all ok.
I went to their site and found this page. http://www.magentocommerce.com/knowl...e-with-magento I followed their instructions to test, and all was ok so can't see a problem on a reseller account.
__________________
- David |
|
#7
|
|||
|
|||
|
striddy,
I ran that test also & my GoDaddy shared hosting account met all the requirements. I ran into a problem while trying to install the software even though the hosting account meets the requirements. I get no errors, but it hangs during the installation process (possible runtime script time out?) I was wondering if any Hostgator customers have successfully installed Magento, if the page load times are acceptable & what level of hosting account they have. |
|
#8
|
|||
|
|||
|
I get errors and cannot get the install wizard to run. Regardless of using the downloader version or the full install.
Any ideas from anyone who is using it? The specs are all compatible. According to their forums a lot of people are having issues and there doesn't seem to be much in the way of constructive help on there. |
|
#9
|
|||
|
|||
|
Okay,
Mine works too...
__________________
|
|
#10
|
|||
|
|||
|
Quote:
And the "Sample Data" zip file from the website. I unzipped the "Sample Data" on my computer. I imported the file "magento_sample_data_for_1.1.2.sql" to the MySQL database with phpMyAdmin. Then, I uploaded the "Full Release" zip file to my account. And extracted it with the cPanel File Manager Then, I uploaded the sub-folder "catalog" from "Sample Data" media folder to the "Full Release" media folder. I got a 500 Internal Server Error So, I followed the advice here: http://www.politivi.com/2008/07/26/5...-installation/ And now everything is beautiful in the garden, http://its-olivia.com/tester/magento/
__________________
Last edited by Adorkable; 08-17-2008 at 10:59 PM. Reason: Additions |
|
#11
|
|||
|
|||
|
Adorable,
Do you mean the test works or the install? Were you able to install a working version on your shared hosting account? Can you post a link so we can see how fast the pages load? |
|
#12
|
|||
|
|||
|
Quote:
http://its-olivia.com/tester/magento I have shared hosting, the Baby plan
__________________
Last edited by Adorkable; 08-17-2008 at 11:02 PM. |
|
#13
|
||||
|
||||
|
Quote:
__________________
- David |
|
#14
|
||||
|
||||
|
Definitely Croc-level! Olivia's guaranteed herself a nomination for this.
__________________
Hosting term analogies, revised and improved (?) |
|
#15
|
|||
|
|||
|
It looks like I need to get myself a Hostgator Baby account!
It loads fast enough for me too. Only problem is I don't see the product pics when you go to the individual product but that must be a Magento bug. Thanks so much for your help! I didn't want to open an account with Hostgator if either the hosting environment wasn't compatible or the software ran too slow. From your test, it looks like it runs just fine on the Baby account. Thanks again! |
|
#16
|
|||
|
|||
|
Sadly it still won't run for us and we followed what you did as per your instructions. Is there a diff between reseller and baby php's?
|
|
#17
|
||||
|
||||
|
Quote:
Also, did you try the test file? Did you have php 5 or 4? Some reseller boxes don't have 5 yet.
__________________
- David |
|
#18
|
||||
|
||||
|
I think it's probably a catalog rule issue, or perhaps a theme/block problem, instead of a bug.
__________________
Hosting term analogies, revised and improved (?) |
|
#19
|
|||
|
|||
|
We have php 5 apparently. Seems we have to create a php.ini file as the flags in the htaccess file are not acceptable to the host gator system. This has us rather stumped.
I'm also stumped as to why olivia can install fairly easily yet we can't... |
|
#20
|
||||
|
||||
|
Quote:
Are you sure you have php 5? Can you / have you tried making a php info file to check all the requirements?
__________________
- David |
|
#21
|
|||
|
|||
|
Quote:
__________________
|
|
#22
|
|||
|
|||
|
I did eventually successfully install Magento on my GoDaddy Deluxe hosting account following robjco's instructions here
http://www.magentocommerce.com/boards/viewthread/9230/ particularly his suggestion to create a php5.ini file with the 3 lines register_globals = on allow_url_fopen = on cgi.fix_pathinfo = 1 Apparently even though the server has php 5 it defaults to php 4 (from what I read). Maybe that will help you install Magento on your account. I still have a problem of extremely sloooooow page downloads, so I will probably have to change hosting. |
|
#23
|
|||
|
|||
|
Installing Magento on all HG shared hosting.
Download the downloader and the sample scripts from here Follow some of the instructions from here except for the file pemissions FTP upload the Magento Folder including the media folder from sample scripts - Ensure this is set to 755/644 not 777 as in magento guide. Create DB and upload sample sql. Goto www.yoursite.com/magento and you will get the wizard which performs a remote install using perl. Click install and the next page you will get an internal error. This is due to the perl installer setting files 666 and folders 777. Use the following shell command or ask HG to do it for you [username@server ~/public_html/magento]$ find ./ -type f -exec chmod 644 {} \; find ./ -type d -exec chmod 755 {} \; Now change the following back to 777 The file magento/var/.htaccess, the directories magento/app/etc, magento/var, and all the directories under magento/media Once this is done you continue with the installation You must replace the Head.php in app/code/core/Mage/Page/Block/Html/Head.php as it affects the buttons in the admin. Everything is now working as it should, make a back-up of the database immediately in case you have any problems later on. Changing the settings in admin > system > permissions > roles will destroy the DB - hence the back-up!!
__________________
http://www.openhostingstore.com Web Hosting & Domains http://www.open-up-ideas.com Design & Advertising |
![]() |
| Bookmarks |
«
Previous Thread
|
Next Thread
»
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Switching web host to host gator :) | wiidbz | Pre-Sales Questions | 5 | 12-13-2009 03:43 PM |
| Wow Host Gator you are the best | halfpint | Customer Reviews | 1 | 09-20-2007 07:35 PM |
| Will Host Gator move a site and forum from an old host? | eJM | Shared Hosting Support | 4 | 06-24-2007 04:25 AM |
| Host Gator 866# | GatorBilly | Network Status | 1 | 01-05-2007 08:07 AM |
| Host Gator, We eat up ourselves!? | sirchmeister | Suggestions | 6 | 03-08-2006 06:59 PM |
All times are GMT -5. The time now is 05:06 AM.










