Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've moved a Magento Store from a server to another (different link also). Everything is working fine like Cart, Pages, Categories, etc. but PRODUCT PAGES gives me a 404 error.

I've read articles over the internet so I tried to reindex everything. When I do that all products vanishes from the front-end. They are still there in the admin.

Cache is erased & disabled.

Someone can help me with this?

share|improve this question
What do you see in exception.log? – Zyava Feb 20 '12 at 19:46
This might be a stupid question but where do I find this file? I can find only 'system.log' in /var/log – Andrei Feb 20 '12 at 19:48
If you don't have it and you have it defined in your Admin -> System -> Configuration -> Advanced -> Developer -> Enabled = Yes and Exceptions Log File Name = exception.log, then that means the system isn't recording any exceptions. – seanbreeden Feb 20 '12 at 20:14
Hi. Managed to get it. Here is the exception.log : pastebin.com/STM2yS15 – Andrei Feb 20 '12 at 21:09

2 Answers

up vote 2 down vote accepted

If you imported your database with phpMyAdmin after moving servers then you should look at the values in core_store. Make sure the admin store_id is 0. Sometimes when reimporting using phpMyAdmin that value can get set to 1 instead and mess things up a bit. If it won't let you change it then create a new one with the id set to 0

EDIT

Restore your log_url table:

CREATE TABLE IF NOT EXISTS `log_url` (
  `url_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
  `visitor_id` BIGINT(20) UNSIGNED DEFAULT NULL,
  `visit_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`url_id`),
  KEY `IDX_VISITOR` (`visitor_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='URL visiting history';
share|improve this answer
Hi! Checked and store_id for admin is set to 0. – Andrei Feb 20 '12 at 20:22
Does your new server have mod_rewrite enabled? If not, then you should send a support request in to get it turned on. If you're on a virtual dedicated or dedicated server then you can enable it yourself by going to your http.conf file and uncommenting the line that looks like LoadModule rewrite_module modules/mod_rewrite.so or any line that has mod_rewrite.so in it, save the file and restart apache. If you don't see this then look up instructions for enabling it for your specific server platform. – seanbreeden Feb 20 '12 at 20:36
Hi again. Yes it has is on because the rest works. This problem with 404 appears on product pages only. – Andrei Feb 20 '12 at 20:39
Go to Admin -> Configuration -> Manage Stores. Select your store under Store Name then re-select your root category. Save and re-index. I apologize for all these troubleshooting steps but without any type of log output I'm just running through anything I can think of :) – seanbreeden Feb 20 '12 at 20:56
Not working. If it helps you, here is an exception log: pastebin.com/STM2yS15 – Andrei Feb 20 '12 at 21:10
show 4 more comments

If pages are giving you a 404 after a server transfer, check your:

  1. .htaccess files
  2. apache settings/magento URL rewrite configuration setting
  3. template files to ensure they are using the $this->getUrl('') url generators (some themes have hard coded links)

Since the error is occuring on reindex, I'm inclined to say that your Apache or Magento URL rewrites aren't configured correctly with this new server.

share|improve this answer
1. ".htaccess" is fine. Double checked it and everything else like Categories, Pages, Cart, etc. is working. 2. I don't know what do you mean by that. 3. Template is fine – Andrei Feb 20 '12 at 20:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.