Questions tagged [migrating]

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

126 questions
3
votes
8 answers

Moving wordpress installation to localhost

I moved my live Wordpress site from my hosting provider to localhost but when I go to load the website it takes me to the wordpress installation page. When I try to go to wordpress install I am hit with an 403 Forbidden message. I moved wordpress by…
J Code
  • 454
  • 1
  • 7
  • 20
3
votes
0 answers

What is the dotnet 6 equivalent of localizer.WithCulture?

When my project was using netcoreapp3.1 I could get the localization injected in my page constructor: IStringLocalizer _localizer; public IndexModel(IStringLocalizer localizer) { _localizer…
Matt W
  • 11,753
  • 25
  • 118
  • 215
3
votes
1 answer

Invalid ID 0x00000001 errors after ViewPager2 migration

I have been working with a Tab layout with ViewPager for a while and it has gone deprecated. I followed the official documentation and migrated to ViewPager2, everything works but I am getting the following error on each fragment: Invalid ID…
Robin K.
  • 31
  • 1
  • 3
3
votes
1 answer

Migrating one shop from Magento multistore install

I need to export/migrate one shop from a Magento multistore install. Googled it but haven't found a quick solution to migrate only one shop. Is there anybody with any advice here on how to do it?
user1649331
2
votes
3 answers

Argument passing in C# and VB.NET

In VB.NET, can we pass an original object as an argument without instantiating it? For example, I have two forms in my project formA and formB. Now I have this code. Public Sub AddForm(Form Outer, Form Inner) Inner.FormBorderStyle =…
2
votes
1 answer

migrating accent color in flutter v2.5

after the flutter 2.5 update my theme data kinda broke and doesn't accept accentColor anymore. I took a look at the documantation and saw that is "renamed" to colorScheme.secondary. But no matter what I try, I can't get it to work for me. This is my…
Obscuritas
  • 59
  • 6
2
votes
1 answer

Why does past.builtins map behave wrongly?

Since there is some behavior difference in map (especially with three arguments between Python 2 and Python - Python 2 vs Python 3 - Difference in map behavior with three arguments?), I was trying to be "safe" by using from past.builtins import map…
Nishant
  • 20,354
  • 18
  • 69
  • 101
2
votes
1 answer

Migrating code to TF2 and not getting the ModuleNotFoundError: No module named 'tensorflow.contrib.framework'

I have this code here from https://github.com/skokec/DAU-ConvNet, which is based on this paper https://arxiv.org/abs/1902.07474 and replaces the standard grid-based filters in a convolutional block with an adaptive filter version. When I try to…
2
votes
1 answer

Downgrade Visual Studio 2019 back to Visual Studio 2017

There is a lot of answers related to upgrading a solution from Visual Studio 2017 to Visual Studio 2019 on StackOverflow. But how do I downgrade back to Visual Studio 2017? When I try to build a project in Visual Studio 2017 I get the following…
voilalex
  • 2,041
  • 2
  • 13
  • 18
2
votes
0 answers

Is there a way to search for ArgumentCountError in PHP?

Is there a way to search for ArgumentCountErrors (to few arguments passed into a function from a function call) in a project? I had no luck with PhpStorm, it only displays an error if there are too many passed arguments. We are migrating to PHP 7…
2
votes
1 answer

Composer - autoload class on specific PHP version

We are actually migrating our PHP project from PHP 5.3 to 7.2. I recently migrate many libraries to Composer. I have a problem to replace PHPExcel with PhpSpreadSheet which doesn't support PHP 5.3. I keep PHPExcel in a separate folder for the moment…
Rafik Haceb
  • 153
  • 1
  • 2
  • 14
2
votes
2 answers

Migrating C++ project to Java, protecting implementation details

I have a quite complex project to migrate from C++ (Linux) to Java Currently, the C++ version is being distributed as a shared library (.so) followed by top-level interface header class. The implementation details are fully hidden from the final…
2
votes
1 answer

Migrating GCM to FirebaseCM: onMessageReceived() not called in foreground

I'm trying to migrate Android client app from Google Cloud Messaging to Firebase Cloud Messaging. I strictly followed an official tutorial, but didn't succeed - onMessageReceived() method is not called when app in foreground. So here are code…
2
votes
2 answers

Migrating code from Magento 1.6 to 2.0

first time here. I am trying to migrate this code from Magento 1.6 to M 2.0. I have to note that I just have basic knowledge with programming so this is very hard for me. I have done some research where I found Mage change to Bootstrap in M 2.0. and…
David
  • 29
  • 2
2
votes
1 answer

Delphi: Migrating from IBO to FireDac

So, lately we (me and my coworkers) have been chatting about migrating to FireDac, we are currently using IBO and DBX, but mostly IBO. And then we decided to take everything from IBO to FireDac, but entering in every form, changing every IBOQuery,…
1
2 3
8 9