Jump to content
  • 0

Connect Server With Site - Status


Fizo

Question

Hi from me !!!

 

I am new to that , i wanna connect site with the server so the first step it to take a hosting ! 

 

i took hosting with cpanel ! then cpanel > Remote MySQL > Then i enter my IP 

 

Also in my Navicat i made a new User with my ip Also a custom User.

 

What infos i need to enter inside of script ?

 

My Own ip or dedicated ip from host company ? 

Link to comment
Share on other sites

Recommended Posts

  • 0

i know about db but i need to found a way to connect my site with server ! did i need to open a 3306 as a port ! also if i am right with Remote MySQL i can connect them easy !

3306 is the mysql port, if it's not open it won't make connection

Link to comment
Share on other sites

  • 0

 

with this !

<?php
/***
***/
include('conexao_PDO.php');

//Valor Minimo para realizar a SOMA ( Player FAKE )
$var_min_soma = 3;

//Valor da soma, (Player Fake)
$var_soma = 10;

$buscar_player_on = $conexao_PDO->prepare("SELECT online FROM characters WHERE online = '1'");
$buscar_player_on->execute();

if($buscar_player_on->RowCount() >= $var_min_soma){
	$resultado = $buscar_player_on->RowCount() + $var_soma;
	
	//Exibir
	echo $resultado;
}else{
	echo $buscar_player_on->RowCount();
}
?>

This... :lol:

Link to comment
Share on other sites

  • 0

it was an example from a br site  :-\

You should (if you didn't) open port 3306 on your server, not on your web hosting. Then, in your script put the server IP and the port, along with the db account data. This is it... :lol:

Link to comment
Share on other sites

  • 0

You should (if you didn't) open port 3306 on your server, not on your web hosting. Then, in your script put the server IP and the port, along with the db account data. This is it... :lol:

he has dedicated server the only he need to do is open 3306 from firewall but what protocol ? hmmm

Link to comment
Share on other sites

  • 0

well is opened by default on dedicated server , how about using the remote MySQL connection secured with SSL?

PDO accepts as a parameter an array of SSL authentication data (key, cert...).
Link to comment
Share on other sites

  • 0

yes i know , it's more secure.

But the SSL Certificate costs money (at least those with stronger encryption), and it's practically useless until you start working on something serious. :lol:
Link to comment
Share on other sites

  • 0

But the SSL Certificate costs money (at least those with stronger encryption), and it's practically useless until you start working on something serious. :lol:

My webhosting provider has SSL for free it's not about money if u want to be secured...It cost less than 0,50$ per month

Link to comment
Share on other sites

  • 0

My webhosting provider has SSL for free it's not about money if u want to be secured...It cost less than 0,50$ per month

I doubt if it gives you any warranties... :lol:
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...