mikeictinus
Forum Replies Created
-
Forum: Plugins
In reply to: [FG Drupal to WordPress] SQLSTATE[HY000] [2006] MySQL server has gone awayHello
Sorry it still doesn’t work. I keep getting the error.
I don’t have anything in URL of the live Drupal web site
Hostname: localhost
Port: 3306
Database: Drupal (it has prefix drupal_)
username: root
Drupal Table prefix: drupal_Php: 7.0.22
Mysql: 5.6.35=== START test_database 2018-04-13 15:59:51 ===
[ERROR] Couldn’t connect to the Drupal database. Please check your parameters. And be sure the WordPress server can access the Drupal database.SQLSTATE[HY000] [2006] MySQL server has gone away
Forum: Plugins
In reply to: [FG Drupal to WordPress] SQLSTATE[HY000] [2006] MySQL server has gone awayI believe it now works if i put a prefix in front of each table in the drupal database.
Hello
One more thing, is there a way to link an anonymous token with an already registered email?
Here is my code on a onPageFinished. Token is already created on OnCreate.
String tokenid = pn.getToken();
String email = “test@gmail.com” (already registered)pn.link(“http://website.com/pnfw/register/”,email,
new PushNotifications.LinkHandler() {
@override
public void onLinked(String email, Map<String, String> customParameters) {
// Do something
}
@override
public void onLinkFailed(String message) {
// Do something with message
}
});Is there a way to link the token id? I can’t seem to find it in the documentation. What i want to do is to link the anonymous token with the email.
Thanks
Ok thanks that fixed it.