kbudiarto
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't Enter my website!!!!! Please Help!!!Yes, James is right. The problem lies on the other end–not yours. You should contact your hosting provider and include the traceroute results in your e-mail.
Forum: Fixing WordPress
In reply to: Can't Enter my website!!!!! Please Help!!!You can also do traceroutes to your web domain and find out which part of your connection is giving you problems to the server.
If you don’t know how, here are the steps (if you are using Windows XP/7):
– Click the Start button
– In Windows XP, choose Run. Then type “cmd” without the quotes. In Windows 7, type “cmd” in the Search programs and files box. This will open a black window called the DOS prompt.
– Type “tracert yourwebsite.com” without quotes. Make sure you change yourwebsite.com to your domain.
– Wait until the command is complete. This should take a while. You should see something like this:Tracing route to gamepath.net [74.207.244.70]
over a maximum of 30 hops:1 1 ms <1 ms <1 ms 192.168.1.1
2 8 ms 9 ms 7 ms 10.16.0.1
3 16 ms 23 ms 17 ms fm-ip-202.73.96.6.fast.net.id [202.73.96.6]
4 13 ms 16 ms 10 ms fm-ip-202.73.96.5.fast.net.id [202.73.96.5]
5 11 ms 9 ms 10 ms fm-ip-202.73.96.9.fast.net.id [202.73.96.9]
6 11 ms 14 ms 9 ms IP-120-33.MCS.napinfo.net [119.110.120.33]
7 12 ms 9 ms 15 ms IP-112-249.MCS.napinfo.net [119.110.112.249]
8 21 ms 23 ms 23 ms 203.208.131.53
9 20 ms 23 ms 22 ms xe-1-0-0-0.sngtp-cr2.ix.singtel.com [203.208.183
.65]
10 211 ms 220 ms 212 ms so-2-0-1-0.plapx-cr3.ix.singtel.com [203.208.151
.94]
11 212 ms 215 ms 212 ms ge-4-0-0-0.plapx-dr1.ix.singtel.com [203.208.149
.5]
12 210 ms 215 ms 211 ms paix.he.net [198.32.176.20]
13 217 ms 222 ms 223 ms 10gigabitethernet1-2.core1.fmt1.he.net [66.160.1
58.241]
14 237 ms 228 ms 239 ms gige-g1-1.core2.fmt1.he.net [72.52.92.246]
15 214 ms 211 ms 211 ms li86-70.members.linode.com [74.207.244.70]Trace complete.
Copy and paste the result in here so we can help you determine if your connection is having problems.
Forum: Fixing WordPress
In reply to: Can't Enter my website!!!!! Please Help!!!You should consider moving to a new hosting provider. It seems that you get connection timeouts from your area to the server because, perhaps, your distance is too great. This happens when you live in a distant area like say Russia with a poor internet connection and the server is in Los Angeles, USA. Anyone near L.A. can view your web site just fine. But you, on the other hand, might have troubles looking at your own site.
In my opinion, find a decent hosting provider that’s closest to your area and then look at one of their customers’ website to see if it gives any connection issue such as the one you are experiencing.
Hope that helps.
Forum: Fixing WordPress
In reply to: Can't Enter my website!!!!! Please Help!!!I can see your website, except a lot of things are broken. Looks like your wordpress configuration is wrong so that your links refer to the wrong URLs.
I can see your content just fine–just your wordpress theme isn’t showing.
Forum: Fixing WordPress
In reply to: has_cap was called with an argument that is deprecatedMake sure to turn off your debug mode in your wp-config.php file. To do this, edit your wp-config.php in your wordpress root folder. Go to the line that says (around line 81):
define(‘WP_DEBUG’, true);
and change it to:
define(‘WP_DEBUG’, false);
You should do this for your production site.