How to upgrade magento 1.4 1.1 to 1.7.0.2 [closed]

Database structure has major changes from 1.4.1.1 to 1.4.2 so you need to upgrade first to 1.4.2 then you can upgrade to 1.7.0.2 directly. I like the command line so I usually upgrade the system by command line, this is my procedure: Substitute file downloader/pearlib/php/Archive/Tar.php with the patched version (it has a bug): http://www.mediafire.com/?35no55xuoeek20a Prepare … Read more

How to update Mojarra version in GlassFish

GlassFish itself already ships with JSF bundled which get by default classloading precedence over the one bundled in the webapp. You basically need to tell GlassFish to use the webapp bundled JSF instead. Edit the webapp’s /WEB-INF/glassfish-web.xml (or /WEB-INF/sun-web.xml if you’re using one of the first GF3 versions) to add the following two entries: <class-loader … Read more

Want to upgrade project from Angular v5 to Angular v6

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 for basic angular 6 apps using Angular Material. ng update @angular/cli ng update @angular/core ng update @angular/material Upgrade from Angular v5 to Angular v6 … Read more

Painless way to install a new version of R?

Just for completeness, there are some ways to prevent you from having this problem. As Dirk said, save your packages in another directory on your computer. install.packages(“thepackage”,lib=”/path/to/directory/with/libraries”) You can change the default .Library value using the function .libPaths too .libPaths(“/path/to/directory/with/libraries”) This will put this path as a first value in the .Library variable, and will … Read more