otzstzzn
Total Posts: 1071
Joined: 2009-07-13
Thank you very much !
Signature
Never touch a running system !
Magento 1.5.1.0. BLANK THEME | Mac OSX 10.68 | Safari 5.05 | Firefox 5.0
Posted: January 9 2010
| top
| # 31
jontas
Total Posts: 34
Joined: 2009-11-16
There was a question about MagentoConnect.
I have used the command “./pear mage-setup .” (using ssh from the installed dir) and then MagentoConnect worked for me.
Another thing that is important to do if you are copying the whole dir (or copying over an old version) is to clear the var/cache folder.
Hope this helps someone
Signature
My misc Magento tips, tricks, hacks etc
Posted: January 15 2010
| top
| # 32
John.J
Total Posts: 8
Joined: 2010-01-18
Damián Culotta - 01 January 2009 04:04 PM
If you want to move your installation form directory or domain, you need to follow this setps.
1) Delete the content of the folder /var
2) Change the values of the file /app/etc/local.xml
There you can find your connection string data (database user, host and name).
3) Once you got your database uploaded, you need to make some changes.
- Run this query:
SELECT * FROM core_config_data WHERE path = 'web/unsecure/base_url' OR path = 'web/secure/base_url' ;
You gonna get something like this:
+-----------+---------+----------+-----------------------+--------------------------------------+ | config_id | scope | scope_id | path | value | +-----------+---------+----------+-----------------------+--------------------------------------+ | 2 | default | 0 | web / unsecure / base_url | http : //www.tudominio.com.ar/magento/ | | 3 | default | 0 | web / secure / base_url | http : //www.tudominio.com.ar/magento/ | +-----------+---------+----------+-----------------------+--------------------------------------+
- Now, change that values for your new url.
UPDATE core_config_data SET value = 'http://www.tudominio.com.ar/' WHERE path LIKE 'web/%/base_url' ;
If you run the first query, now you gonna get something like this:
+-----------+---------+----------+-----------------------+------------------------------+ | config_id | scope | scope_id | path | value | +-----------+---------+----------+-----------------------+------------------------------+ | 2 | default | 0 | web / unsecure / base_url | http : //www.tudominio.com.ar/ | | 3 | default | 0 | web / secure / base_url | http : //www.tudominio.com.ar/ | +-----------+---------+----------+-----------------------+------------------------------+
That’s all.
Of ocurse, the url’s that I’ve used are just examples.
In Magento 1.3.2.4, you may simply change the above url setting by going to backend panel : System -> Configuration -> Web (tab).
This will be easier than modify database. (Making sure you are able to login to backend admin panel)
Posted: January 21 2010
| top
| # 33
John.J
Total Posts: 8
Joined: 2010-01-18
Damián Culotta - 01 January 2009 04:04 PM
If you want to move your installation form directory or domain, you need to follow this setps.
1) Delete the content of the folder /var
2) Change the values of the file /app/etc/local.xml
There you can find your connection string data (database user, host and name).
3) Once you got your database uploaded, you need to make some changes.
- Run this query:
SELECT * FROM core_config_data WHERE path = 'web/unsecure/base_url' OR path = 'web/secure/base_url' ;
You gonna get something like this:
+-----------+---------+----------+-----------------------+--------------------------------------+ | config_id | scope | scope_id | path | value | +-----------+---------+----------+-----------------------+--------------------------------------+ | 2 | default | 0 | web / unsecure / base_url | http : //www.tudominio.com.ar/magento/ | | 3 | default | 0 | web / secure / base_url | http : //www.tudominio.com.ar/magento/ | +-----------+---------+----------+-----------------------+--------------------------------------+
.........
In Magento 1.3.2.4, you may simply change the above url setting by going to backend panel : System -> Configuration -> Web (tab).
This will be easier than modify database. (Making sure you are able to login to backend admin panel)
Posted: January 21 2010
| top
| # 34
Paulmobba
Total Posts: 17
Joined: 2010-03-10
Could anyone tell me if it is possible to create my site locally and then upload it to my server as I have a Site which is currently functioning but I need to updae it with a Magento site ?
Thanks
Canvas Prints
Signature
SEO LTD
Brent W Peterson
Total Posts: 3117
Joined: 2009-02-26
Minneapolis MN
Paul, of course this is possible and recommended! The first part of this post describes how you can update your site after you upload.
I will make one more comment, remember to delete your cache directory after you change URLs
Brent
Signature
Brent W. Peterson
Chief Magento Evangelist at Wagento.com a Magento Silver Partner
==========
Follow me on Twitter @brentwpeterson
**Always remember to backup before trying anything new
arunadevkar
Total Posts: 1
Joined: 2011-08-23
Hi,
Thanks a lot for this great work..
This is very helpful
Posted: September 7 2011
| top
| # 40