Questions tagged [migrating]

Moving program from one platform to another, or replace some of the libraries with other versions or similar libraries

126 questions
0
votes
2 answers

Moving yii project to another machine

I have a project, build in Yii Framework , in my machine 1. Now I moved my whole project to new laptop. But it's not running and displaying some error: Warning: require_once(D:\xampp\htdocs\rpadmin/../framework/yii.php): failed to open stream: No…
0
votes
1 answer

symbol lookup error: /usr/lib64/qt5/plugins/platforms/libqxcb.so: undefined symbol: xkb_state_key_get_utf8

while migrating my application from Qt4.7 to qt5.3 i made all the changes needed in the code according to qt5 my applications started but when i tried to login.. the application closed and it did not crashed rather it stoped with this error …
Deepti
  • 119
  • 4
  • 12
0
votes
1 answer

How do i move magento store to another domain?

I have my magento store on a subdomain, and now I chose the final domain I want the website to be on, but I don't know how to move it, what do I need to change? I tried changing the base_url in the SQl files but it doesnt seem to do the trick.…
Daniel G. Gabori
  • 65
  • 1
  • 2
  • 8
0
votes
1 answer

Migrating javaee6 to javaee7: error WELD-001408 Unsatisfied dependencies

Actually, I'm migrating an application from javaee6 to javaee7 which has ejb module with some CDI components and all business logic. In general, I had an interface to make CRUD with entities: public interface StoreManager { T create(T…
0
votes
1 answer

Migrating djangorestframework to 2.X.X

I've inherited a substantial django code base from a previous developer. We're using django-rest-framework for our api, but unfortunately the version we have is 0.4.0. I've searched for documentation on the old version and have come up empty.…
Logiraptor
  • 1,496
  • 10
  • 14
0
votes
1 answer

Migrating some code from PHP 5.2 to 5.4 — character encoding in header?

I have an old script that I did not write. I am a beginner PHP coder, so if anyone can help me with this issue. The script works fine in PHP 5.2, but error in 5.4 I am getting this error: "The character encoding of the HTML document was not…
0
votes
1 answer

Migrating from rails app to backbone.marionette app

I'm a new in backbone.marionette. I read some guides, but not enough understood how is the MVC structure implemented there. In rails I'm having structure like this: app/ assets/ controllers/ models/ views/ config/ environmrnts/ …
0
votes
0 answers

Sorting with Core Data attribute

I have a UITableView that is populated with table view cells from an NSFetchedResultsController. Each table view cell is linked to an entity object under Core Data. I recently performed a lightweight migration and added an attribute that every…
EvilAegis
  • 733
  • 1
  • 9
  • 18
0
votes
2 answers

rewrite rule for two folders

I'm migrating my web from Joomla to WordPress, in order to do so I need to set up access to a new subfolder to install WordPress. I have a .htaccess file redirecting actual Joomla app to subdirectory /joomla/. I need access to /wp/ to set up and…
0
votes
1 answer

migrating from Three.JS 51 to 54 (texture problems)

i'm having some problems migrating my code to the newest release of Three.JS. I've already tried alot, but my models keep looking black (the color function seems broken)) and as soon as I try loading a model with a texture, it crashes. I know some…
0
votes
2 answers

Migrating user accounts from Symfony2 to Silverstripe 3

I need help on migrating users from a website built using Symfony2 to Silverstripe 3. I got a table of users from a symfony built website with sha1 hashed passwords and salts. I want to import the users to a freshly setup Silverstripe 3 website. I…
0
votes
2 answers

Drupal showing blank page after migrating to a local server

Firstly some background,.. IVe started a new job as PHP developer with a company that hosts 2 Drupal (6.x) sites. While I have years of experience in PHP, Drupal ( and indeed off the shelf content management systems in general ) is a new one on me.…
Kevin Bradshaw
  • 6,327
  • 13
  • 55
  • 78
0
votes
1 answer

Can I use MSBuild 4.0 for MSBuild 2.0 XML Files and a mix of VS2010 (.NET 4.0) and VS2005 (.NET 2.0) projects?

I have a build script written for MSBuild 2.0 using .NET Framework 2.0. Now I am migrating some of my projects to use .NET Framework 4.0. So I have a mix of .NET 2.0 (Visual Studio 2005) and .NET 4.0 (Visual Studio 2010) projects. Can I use MSBuild…
Rookian
  • 19,841
  • 28
  • 110
  • 180
-1
votes
1 answer

Migrating from .travis CI to GITHUB action

migrating to the GitHub action from Travis CI, there is a line 'git diff --name-only "$TRAVIS_COMMIT_RANGE"' but it is for Travis and while running on GitHub action not getting the value of this variable "$TRAVIS_COMMIT_RANGE" what should we use…
avnshrai
  • 73
  • 6
-1
votes
2 answers

I got a syntax error during migration, functions Python3 to python2

def create_msg(content: bytes) -> bytes: size = len(content) return encode_msg_size(size) + content def encode_msg_size(size: int) -> bytes: return struct.pack("
1 2 3
8
9