upgrade

Best way to Upgrade wamp 2.0 to 2.5

旧城冷巷雨未停 提交于 2019-11-26 19:15:15
问题 My wamp 2.0 is using around more than 100 large database and a lot of projects.I also made around more than 50 virtual host. Now I need to upgrade wamp 2.0 to 2.5. I got some suggestion on internet that take back up of database and files , then uninstall wamp 2.0 and install 2.5 then set up every thing again, but it seems it is not a right way. What is the best way ? 回答1: Usually I follow following steps to do it easily. Stop Wamp Service Rename the wamp folder to wamp-backup Download latest

Want to upgrade project from Angular v5 to Angular v6

大憨熊 提交于 2019-11-26 18:11:43
As Angular 6 is here, I want to upgrade or move my angular 5 client application to angular 6, but I'm not getting any tutorial or anything which can guide me through. According to me I just need to run a new Angular CLI and then have to move my older source to new project. I read the Angular 6 is using a new renderer called Ivy. Will I have to change my project according to Ivy? Upgrade from Angular v6 to Angular v7 Version 7 of Angular has been released Official Angular blog link . Visit official angular update guide https://update.angular.io for detailed information. These steps will work

How to update Python?

社会主义新天地 提交于 2019-11-26 17:56:05
问题 I have version 2.7 installed from early 2012. I can't find any consensus on whether I should completely uninstall and wipe this version before putting on the latest version. "Soft"-removing old versions? Hard-removing/wiping old versions? Installing over top? I've seen somewhere a special install/upgrade process using a "segmenting" method of Python installations, keeping different versions separate and apart, but functional. Not sure if this is the standard, de facto way. I also wonder if

What are major incentives to upgrade to D2009 (Unicode excluded)?

£可爱£侵袭症+ 提交于 2019-11-26 16:32:21
问题 I'm a hesitant upgrader when it comes to development tools. For roughly half of my product I still use D7, and for others D2006. The truth is, although Unicode support is more than welcomed and very useful, it could cause me more troubles than gains with my current projects (they are more-or-less Unicode ready already). It's especially case with one of them who's performance would suffer a lot if each string takes twice as much memory as before. So, Unicode aside, what are other major

upgrading from MVC4 to MVC5

ε祈祈猫儿з 提交于 2019-11-26 15:19:18
问题 I have made that dreadful error of upgrading from MVC4 to MVC5 pre-release by updating the razor, and mvc webpage in my references I have System.Web.Mvc , System.Web.Webpages , System.Web.Webpages.Razor and System.Web.Razor as version v4.0.30319, when I run my application I get [A]System.Web.WebPages.Razor.Configuration.HostSection cannot be cast to [B]System.Web.WebPages.Razor.Configuration.HostSection. Type A originates from 'System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral,

How to upgrade Eclipse for Java EE Developers?

泄露秘密 提交于 2019-11-26 15:12:32
问题 Is there any non-painful way to upgrade an Eclipse installation? I have tried browsing the eclipse site but I cannot find an useful description. 回答1: Add the update URL to your available sites: Window > Preferences > Install/Update > Available Software Sites > Add... Name: Oxygen Location: http://download.eclipse.org/releases/oxygen/ Then tell Eclipse to look for updates: Help > Check for updates . After the installation, Eclipse will restart and show the old splash screen. Next time you

Upgrading a WinForms app to WPF

↘锁芯ラ 提交于 2019-11-26 14:08:07
问题 I have a side project that I wrote a few years ago in WinForms. To better help me learn WPF, I would like to rewrite it in WPF. Ideally, I would like to just modify the current project that I have and rewrite the UI in WPF instead of creating a new project. I'm having some problems doing that. I did the following (using Visual Studio 2008 SP1): Changed the Target Framework from 2.0 to 3.5. Added PresentationCore, PresentationFramework, and WindowsBase references. At this point, I noticed

How do I update pip itself from inside my virtual environment?

情到浓时终转凉″ 提交于 2019-11-26 11:57:27
I'm able to update pip-managed packages, but how do I update pip itself? According to pip --version , I currently have pip 1.1 installed in my virtualenv and I want to update to the latest version. What's the command for that? Do I need to use distribute or is there a native pip or virtualenv command? I've already tried pip update and pip update pip with no success. Cairnarvon pip is just a PyPI package like any other; you could use it to upgrade itself the same way you would upgrade any package: pip install --upgrade pip On Windows the recommended command is: python -m pip install --upgrade

How to upgrade PostgreSQL from version 9.6 to version 10.1 without losing data?

会有一股神秘感。 提交于 2019-11-26 11:43:48
问题 I\'m using the PostgreSQL database for my Ruby on Rails application (on Mac OS X 10.9). Are there any detailed instructions on how to upgrade PostgreSQL database? I\'m afraid I will destroy the data in the database or mess it up. 回答1: Assuming you've used home-brew to install and upgrade Postgres, you can perform the following steps. Stop current Postgres server: launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist Initialize a new 10.1 database: initdb /usr/local/var

Upgrading Node.js to latest version

 ̄綄美尐妖づ 提交于 2019-11-26 11:27:26
So, I have Node.js installed and now when I tried to install Mongoosejs I got an error telling me that I don't have the needed version of Node.js (I have v0.4.11 and v0.4.12 is needed). How can I upgrade to this version? I suppose I just could install it again with the latest version, but I don't want to do it before I'm sure that my project folders in the folder "node" won't be deleted. Eldar Djafarov Linux/Mac: The module n makes version-management easy: sudo npm install n -g For the latest stable version: sudo n stable For the latest version: sudo n latest Windows: just reinstall node from