Updating product prices in Magento in an easier & faster way

Product prices can be updated via default import profile though but this is very slow and requires lots of csv fields(besides sku & price) for updating.
Today i am going to talk about updating product prices just by using csv with two fields: sku & price(new) which is very fast enough even for thousands of products. … More Updating product prices in Magento in an easier & faster way

SPEED UP YOUR WORDPRESS DEVELOPMENT CYCLE WITH GIT

If you have developed WordPress sites for clients this process might sound familiar to you: Get a new client that wants a wordpress site Download the most recent wordpress Find a good current blank wordpress theme to start implementing the design Upload to a staging server to for client to see Client requests changes You … More SPEED UP YOUR WORDPRESS DEVELOPMENT CYCLE WITH GIT

github版本库使用详细教程(命令行及图形界面版)

Git是一个分布式的版本控制系统,作为开源代码库以及版本控制系统,Github目前拥有140多万开发者用户。随着越来越多的应用程序转移到了云上,Github已经成为了管理软件开发以及发现已有代码的首选方法。 Git是一个分布式的版本控制系统,最初由Linus Torvalds编写,用作Linux内核代码的管理。在推出后,Git在其它项目中也取得了很大成功,尤其是在Ruby社区中。目前,包括 Rubinius和Merb在内的很多知名项目都使用了Git。Git同样可以被诸如Capistrano和Vlad the Deployer这样的部署工具所使用。 如前所述,作为一个分布式的版本控制系统,在Git中并不存在主库这样的概念,每一份复制出的库都可以独立使用,任何两个库之间的不一致之处都可以进行合并。 GitHub可以托管各种git库,并提供一个web界面,但与其它像 SourceForge或Google Code这 样的服务不同,GitHub的独特卖点在于从另外一个项目进行分支的简易性。为一个项目贡献代码非常简单:首先点击项目站点的“fork”的按钮,然后将 代码检出并将修改加入到刚才分出的代码库中,最后通过内建的“pull request”机制向项目负责人申请代码合并。已经有人将GitHub称为代码玩家的MySpace。 百度百科:http://baike.baidu.com/view/3366456.htm 今天我们就来学习github的使用,我们将用它来管理我们的代码,你会发现它的好处的,当然是要在本系列教程全部完成之后,所以请紧跟站长的步伐,今天是第一天,我们来学习如何在git上建立自己的版本仓库,并将代码上传到仓库中。 教程【一】 一、注册一个免费git帐号,可以无限建立访问权限为公共的版本仓库,注册地址:https://github.com/signup/free 二、依次填写,用户名【昵称】、邮箱地址【用来登录】、密码,点击“creat an account”进行注册 三、点击右上方的”sign in”使用注册邮箱登录到git 四、点击右上方,你的用户名之后的图标,新建一个版本仓库 五、在“Repository name”一栏里填写版本仓库的名称,我们假设为”test”,Description栏是描述,可填可不填。 默认访问权限为公共,我们点击”Creating Repository”按钮,创建我们的第一个版本仓库。 接下来,我们需要在本地安装git客户端。 六、以windows为例,下载客户端:http://github-windows.s3.amazonaws.com/GitHubSetup.exe,安装完成后,会在桌面上出现两个图标,Git Shell和GitHub。 七、那两个图标分别是命令行工具和图形界面,我们先来学习使用shell。 八、双击打开Git Shell,【win7用户使用管理员权限打开】 九、输入git config –global user.name “d1php”,这里的d1php是站长注册的用户名,你得改成你自己的 十、输入git config –global user.email “studyphp@yahoo.cn”,这里的邮箱也是是站长注册的邮箱,你得改成你自己的 十一、上面两步在客户端配置你的git帐户,下面我们在本地建立自己的版本仓库,站长把版本仓库建立在D盘。输入cd d:,切换到D盘目录。 十二、输入mkdir test,建立一个test目录,注意本地仓库名要和git中建立的仓库名一样 十三、输入cd test,进入test目录 十四、输入git init,初始化版本仓库 十五、输入touch README,建立一个README文件 十六、用文本编辑器打开README文件,随便输入一点文件,比如:this is a … More github版本库使用详细教程(命令行及图形界面版)

How to Move WordPress Blog to New Domain or Location

For blogger who self-hosts the WordPress blog publishing system on a web hosting server with own registered domain name, sometimes, you may decide to reorganize the blog link URL to make it tidier or to reflect new focus or theme of the blog. If you decide to change the URL or link location of your … More How to Move WordPress Blog to New Domain or Location