How can people see my cms site?
When I'm trying to see my cms I just use 127.0.0.1 but when I try in someone's pc can't see, also using the hamachi ip.
Printable View
How can people see my cms site?
When I'm trying to see my cms I just use 127.0.0.1 but when I try in someone's pc can't see, also using the hamachi ip.
Sir , whats your software at the cms?
Nobody can enter the page when ur port forwarding it for yourself.
OPTION 1: If your trying to host your game or whatever u should put it as a selected localhost via creating a custom internet slot.
i think u rather should be pinging the websites ip then enter that one instead of 127.0.0.1 ;).
OPTION 2: if your trying to connect your site with hamachi without hosting it yourself check this one out.
how to do this :
1. Windows: Start/execute/cmd
2. typ : ping (yourwebsite here without http or www. )
Example: ping ragezone.com
3. Network ip should be shown , that is the correct ip ur looking for. i quess.
Re: Cype cms
Here my code of the cms propeties
p.s. my hamachi ip is 5.95.218.132 thanks :)!PHP Code:<?php
/*
Copyright (C) 2009 Murad <Murawd>
Josh L. <Josho192837>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
if(basename($_SERVER["PHP_SELF"]) == "database.php"){
die("403 - Access Forbidden");
}
/* MySQL Connection Information */
// Where is MySQL Hosted? If you aren`t sure, just leave it as "localhost"
$host = "localhost";
// Database Username - Usually "root"
$user = "root";
// Database Password - Usually "root". If you don`t have a password, or are not sure, leave it blank.
$pass = "";
// Database Name - Usually "odinms"
$database = "TiredStory";
// What is the server`s Wan IP
$serverip = "localhost";
// What is your server`s log in port - Don`t change if you aren`t sure.
$loginport = "7575";
// What is your server`s world port - Don`t change if you aren`t sure.
$worldport = "8484";
/* Don`t touch. */
$conn = mysql_connect($host,$user,$pass);
$db = mysql_select_db($database, $conn) or die(mysql_error());
?>
/* MySQL Connection Information */
// Where is MySQL Hosted? If you aren`t sure, just leave it as "localhost"
$host = "If u got no mysql database on a webhost or whatever u use 127.0.0.1";
// Database Username - Usually "root"
$user = "HERE IS YOUR DATABASE USERNAME U CREATED.";
// Database Password - Usually "root". If you don`t have a password, or are not sure, leave it blank.
$pass = "THE PASSWORD U MUST HAVE CREATED.";
// Database Name - Usually "odinms"
$database = "TiredStory";
// What is the server`s Wan IP
$serverip = "5.95.218.132";
// What is your server`s log in port - Don`t change if you aren`t sure.
$loginport = "7575";
// What is your server`s world port - Don`t change if you aren`t sure.
$worldport = "8484";
I changed the server ip but nothing happened, when I try to enter in my url "5.95.218.132" I get forbidden error
did u install mysql
Yes, I'm using mysql query browser and all seems fine but when i try to enter in my ip's link I can't
Also make sure that the computer is connected to the hamachi before trying to connect to the website.
Yes, cause my friends are playing by hamachi and the client's ip is 5.95.218.132
All you have to do is change some
Stuff in Wamp (I will post when I get bak from school)
Thanks everybody for helping, the bug is fixed :)