Skip to main content

Version control for Flex Builder

1. Use Visual SourceSafe:
If you're familiar with Microsoft Visual SourceSafe, it's a bit difficult to apply it in your Flex project. But I think you can use it. Just create a Source Safe project to contain all files in your Flex project. After that, check-out the file you want to work and use Flex Builder to edit.
Steps:
- Install Microsoft Visual SourceSafe to create your project
- Add all of your project's folder and files into this project

2. Use Subversion:
Method 1:
- Install VisualSVN Server to create project repository URL
- Install Subclipse
- Create Flex project as SVN in File/New/Other... with the repository URL has been created.
- Working with version control inside Flex

Method 2:
- Install VisualSVN Server to create project repository URL
- Install TortoiseSVN
- Add the folder contains your Flex project into your project repository URL
- Working with version control outside Flex

3. Use CVS:
I'm not using it frequently, so I'll update it later.

Comments

Popular posts from this blog

pligg_validate does not return correct value

Pligg version 1.0.3 Before function pligg_validate(){ // returns the value for register validation return misc_validate; } After function pligg_validate(){ // returns the value for register validation global $db; $sql = "SELECT `var_value` FROM `" . table_config . "` WHERE `var_name` = '" . $db->escape('misc_validate') . "';"; $misc_validate = $db->get_var($sql); return return trim($misc_validate)=="true"?true:false; }

Wrong Referrer with Pligg

To debug the problem, edit /libs/html1.php, find the function check_referrer(). To fix this issue, replace $my_base_url value to ' http://localhost ' as the following code. $my_base_url = ' http://localhost '; $my_pligg_base = ''; $dblang = 'en'; define('table_prefix', 'pligg_'); $language = 'english'; include_once mnminclude.'settings_from_db.php';