Expression Engine to Craft CMS - migration

Hello I've recently migrated a website from EE to Craft using this guide :
https://docs.craftcms.com/feed-me/v4/guides/migrating-from-expressionengine.html
However the migration did not cover blog posts comments, and the client wants the comments for each post migrated as well, could you please advise me how to do that ?
Here is the information from the JSON file (I replaced the text to protect my client privacy )
https://codebeautify.org/jsonviewer/y22cc64b3
As seen in the json there is no comments saved anywhere.
And here is the code from the guide that I used
https://gist.github.com/engram-design/5fbe54ef0abb15e3ff6f667291098464
Please let me know if there is any other way of doing that.

Related

Including the minelead API in my code and how to understand its syntax

I am trying to add the Minelead API to my code to allow myself to search and find out user emails from certain domains.
I am unable to find a list of syntax or an explanation of how to implement the API into my code.
I can include the API through script tags but aside from that I am completely lost, an answer or a good API tutorial would really help,thank you.
I'm Mohamed from the Minelead Developer Team
As for your request, I need to know what programming language you're using, and what you're trying to do exactly.
we have examples in the documentation page of simple cURL requests.
Here's also a simple example in Python using the requests module
import requests as req
uri = "https://api.minelead.io/v1/search/?domain=example.com&key=yourApiKey"
response = req.get(uri)
print(response.json())

How to start ArangoDB-GraphQL-Express?

I looked at the support from ArangoDB, and google search, but it did not help me much...I am fresh in these topic, (but Polish proverb says that you should not be ashamed to ask questions).
my situation is as follows, I have quite a very extensive database, which I created by GUI-HTTP-ArangoDB (by importing further crafted JSONs, as collections of Verexs & Edges) I would like to link this database and dynamically depending on the query, display the resutat, only hmm I do not know how to connect it. is like a tutorial on the arango page to Node, but there is nothing to write like where and what to create, just they only described the next command that do something .. ech ...
I am looking for examples, or a step-by-step guide/tutorial..
I am asking you for help / support..
how in it, to find himself..
Well, there are two options I would use to connect Arango to GraphQL:
1 Use the Foxx micro services that live within Arango to create a Rest API. Then you can use wrap the Rest api in GraphQL. Here is the tutorial for creating the Foxx micro services :
https://docs.arangodb.com/3.3/Manual/Foxx/GettingStarted.html
And here is the tutorial to wrap the the rest api in GraphQL:
https://www.prisma.io/blog/how-to-wrap-a-rest-api-with-graphql-8bf3fb17547d/
2 Have the GraphQL Server be part of the Foxx microservices instead of the Rest Api as described here
https://docs.arangodb.com/3.3/Manual/Foxx/GraphQL.html
And here
https://mikewilliamson.wordpress.com/2017/03/24/arangodb-and-graphql/
Hope this helps!

How to use Entity Framework in DotNetNuke7?

I want to use Entity Framework for make Module in DotNetNuke7.I search on the internet but don't exist Helpful document in this case.
Please advice.
There is a nice little tutorial at DNNCreative.com. You have to subscribe to the site, though.
I don't recall, off the top of my head, whether there are similar tutorials at DNNHero.com, also a subscription site.
I sew DNNHero.com site .In this site exist a video tutorial for in this case but it is premium . In my country we don't access to Paypal , ... account for payment . At the result I can not use this tutorial. In DNNCreative.com have a little tutorial I use it but it is not complete tutorial and I have a problem that you see in this LINK

Multiple comment plugin loading on Blogger

on my blog I’m using from a long time the IntenseDebate pluging as commenting system in place of the default one.
I would replace it with Google+ comment system but I don’t want to lose all comments already left by the users via IntenseDebate, so I would figure out if there’s any way to load on the old posts the IntenseDebate pluging in place of the default Google+.
As possible solution, I’m thinking something like a tag in the html post code that (if defined) load the IntenseDebate pluging.
What do you think?
its not posible to migrate IntenseDebate comment on google plus. Their is one solution that you can use multiple comment system in your blogger blog. just few month ago i had written trick for the same. I hope that this will be useful to you.
http://www.tipsviablogging.com/multiple-comment-system-blogspot/

Connect android to database

I am doing a school project where we need to create an android application which needs to connect to a database. the application needs to gain and store information for people's profiles on the database. But unfortunatly we are a little bit stuck at this point because there are numerous ways to link the application such as http request through apache or through the SOAP/REST protocol.
But it's really hard to find good instructions or tutorials on the problem since I can't really find them. Maybe that's cause i'm probably using the wrong words on google. Unfortunately I have little relevant information. So if anyone can help me with finding relevant links to good online tutorials or howto's than those are very welcome.
I'd recommend using REST and JSON to communicate to a PHP script running on Apache. Don't worry about the database on the Android side of things, just focus on what kinds of queries you might need to make and what data you need returned. Then put together a PHP script to take those queries and generate the necessary SQL to query the database on the server. For example, You need look look up a person by name and show their address in your Android app. A REST Query is just a simple HTTP GET to request data. For example, to look up John Smith, you might request: http://www.example.org/lookup.php?name=John+Smith which will return a short JSON snippet generated by PHP:
{
name: "John Smith",
address: "1234 N Elm St.",
city: "New York",
state: "New York"
}
You can instruct PHP to use the content type text/plain by putting this at the top of your PHP script:
Then you can just navigate to the above URL in your browser and see your JSON response printed out nicely as a page. There should be a good JSON parser written in Java out there you can use with Android. Hopefully, this will get you started.
This tutorial really helped me: http://www.screaming-penguin.com/node/7742