Why when i try to open my site with my own ip it displays :
"Forbidden .You don't have permission to access / on this server."
But when i type http://127.0.0.1/ it opens ?
Please help . Thanks
Printable View
Why when i try to open my site with my own ip it displays :
"Forbidden .You don't have permission to access / on this server."
But when i type http://127.0.0.1/ it opens ?
Please help . Thanks
Thank you gregon13. The 3.3.0a patch I downloaded was corrupted and didn't install. I didn't notice it until it was to late and already posted 3 times. :mad: I redownloaded the patch from a different server and its working now. Thank you very much and god bless all of you for your comments and hard work for keeping private servers alive.:thumbup:
i have 2 problems:
1)When i run AmberGUI and click on desktop or anywhere it disapear to taskbar but when i click icon it isnt apear. (i have win 7 32bit).
2)On website i clicked add realm (i didnt know and still dont know what it doing) and now when i go to http://localhost i seeonly blank, white site (and favicon from wow on browser tab).
I try Reinstall to repair website ut whats wrong with this disapearing GUI ?
Is there anyway to change the port of the webserver? because 80 is already in use.
We have been using Ambers since 2.4.3, we love the releases.
However theres a major problem we are getting on the 3.2.2a.
Everytime we add a Vendor, items wont add too him. We can actually see the items being added to him however when we spawn him, they aren't there. Any Ideas?
Just a note to anyone that is having troubles getting the forums to work in mangosweb here is a simple fix... goto index.php and at line 211 you will see the following...
//Load characters list
if (isset($user['id']) && $user['id']>0) {
$characters = $CHDB->select('SELECT guid,name FROM `characters` WHERE account=?d', $user['id']);
if (isset($_REQUEST['cur_selected_character'])) {
foreach($characters as $character) {
if ($character['guid']==$_REQUEST['cur_selected_character']) {
$DB->query('UPDATE account_extend SET character_id=?d,character_name=? WHERE account_id=?d', $character['guid'], $character['name'], $user['id']);
}
Change it to this...
//Load characters list
if (isset($user['id']) && $user['id']>0) {
$characters = $CHDB->select('SELECT guid,name FROM `characters` WHERE account=?d', $user['id']);
if (isset($_COOKIE['cur_selected_character'])) {
foreach($characters as $character) {
if ($character['guid']==$_COOKIE['cur_selected_character']) {
$DB->query('UPDATE account_extend SET character_id=?d,character_name=? WHERE account_id=?d', $character['guid'], $character['name'], $user['id']);
}
Seems to work just fine...:thumbup1: Shiv if this is not the place for this info just delete it :(
The solution for this is as simple as close or disable the other program when you need to use Apache. If you don't know what program is using that port, you can use an utility like Active Ports or TCPView for getting the list of programs associated to any active port in the system.
If for some reason you need to maintain the other program running in the port 80, you can change the port number in which Apache will listen for connections. You can use any port number that is not already used by another program between 1024 and 65535 (e.g. 8080, 8000, 10080, 12345...). For doing that open the httpd.conf file and find the following lines (they are located in different parts of the file):
Listen 80
ServerName your-server-name:80
and then replace the 80 with the port number you want to use:
Listen 8080
ServerName your-server-name:8080
After this you can access to the server using the host name plus the port number separated by a colon, like this:
http://localhost:8080/
http://your-server-name:8080/
Hope this helps...:ott1:
anyone can upload updatepack 380 .sqls for UDB ? i need them separately
First i'd like to say THANKS! for this repack. after figuring out which files i needed to run in which order, the setup and running of the server itself went flawlessly. this has got to be the single most comprehensive setup for a wow server in existence to date..
however i do have one question and forgive me if it seems noobish but after hours of reading the setup, messing with settings, and searching on forums for a possible answer, i still cant seem to figure out how to make my account page visible to the net. localhost works fine but my external ip tells me "i dont have permission to access / on this server"
i dont have anything else using port 80 and everything is forwarded properly. i actually had no troubles getting the account page to work in previous repacks so i know its got to be a setting i have wrong in this one.
everything is setup to run on localhost with the exception of the realm, so my friends can connect to my server just fine, they just cant access the website. it seems like anything else i change results in me not being able to run mysql or apache.
if anyone can offer me some help on this subject it is greatly appreciated
hi guys
I have a problems ,in real it is an beatuy error . So when i run the webserver , i got a nice read error line at the webpage error mysql: line bla bla etc. But it's still work , i can do everything but this really frustate me, somedbody can help me?
In your mangos/miniserver/www folder find .htaccess and make the 3 changes...
#Order Deny,Allow
#Deny from all
#Allow from 127.0.0.1
Hope this helps.:):
---------- Post added at 08:03 PM ---------- Previous post was at 08:01 PM ----------
Need more information, Post the error.
@kubilius: that did the trick.. thank you sir!!
Goto index.php and at line 211 you will see the following...
//Load characters list
if (isset($user['id']) && $user['id']>0) {
$characters = $CHDB->select('SELECT guid,name FROM `characters` WHERE account=?d', $user['id']);
if (isset($_REQUEST['cur_selected_character'])) {
foreach($characters as $character) {
if ($character['guid']==$_REQUEST['cur_selected_character']) {
$DB->query('UPDATE account_extend SET character_id=?d,character_name=? WHERE account_id=?d', $character['guid'], $character['name'], $user['id']);
}
Change it to this...
//Load characters list
if (isset($user['id']) && $user['id']>0) {
$characters = $CHDB->select('SELECT guid,name FROM `characters` WHERE account=?d', $user['id']);
if (isset($_COOKIE['cur_selected_character'])) {
foreach($characters as $character) {
if ($character['guid']==$_COOKIE['cur_selected_character']) {
$DB->query('UPDATE account_extend SET character_id=?d,character_name=? WHERE account_id=?d', $character['guid'], $character['name'], $user['id']);
}
Thanks for the releases! :)