- MaNGOS ~Amber~ Releases 3.x.x

Page 75 of 84 FirstFirst ... 25656768697071727374757677787980818283 ... LastLast
Results 1,851 to 1,875 of 2095
  1. #1851
    Little kid davevleugel is offline
    MemberRank
    Apr 2004 Join Date
    netherlandsLocation
    398Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    Quote Originally Posted by itayisamunyai3 View Post
    nope can't even start mysql manually it says connection error (2001) or something
    Wrong password or username i think
    Last edited by davevleugel; 21-10-10 at 02:54 PM.

  2. #1852
    Enthusiast balonyiadam is offline
    MemberRank
    Oct 2007 Join Date
    46Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    Quote Originally Posted by davevleugel View Post
    Wrong password or username i think
    Error: 2001 (CR_SOCKET_CREATE_ERROR) Message: Can't create UNIX socket (%d)

  3. #1853
    Apprentice itayisamunyai3 is offline
    MemberRank
    Oct 2010 Join Date
    6Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    like i said everything works before the pc restart. username and passwords go though perfectly

  4. #1854
    Little kid davevleugel is offline
    MemberRank
    Apr 2004 Join Date
    netherlandsLocation
    398Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    Quote Originally Posted by itayisamunyai3 View Post
    like i said everything works before the pc restart. username and passwords go though perfectly
    Put more info about what works and what not....

    So Mysql starts perfectly? You can login perfect with a sql program?

  5. #1855
    Little kid davevleugel is offline
    MemberRank
    Apr 2004 Join Date
    netherlandsLocation
    398Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    Anybody know how to fix the hunter quest? didnt find a good solution with search.. yea need to d/l a update etc. but the most links are dead :S

  6. #1856
    Apprentice itayisamunyai3 is offline
    MemberRank
    Oct 2010 Join Date
    6Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    well everything works before i shut down how ever after i boot up again, apache, mysql and the connection program all go red and won't connect. when i try changing the realm or verseion the dropdown boxes are blank

  7. #1857
    Little kid davevleugel is offline
    MemberRank
    Apr 2004 Join Date
    netherlandsLocation
    398Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    Quote Originally Posted by itayisamunyai3 View Post
    well everything works before i shut down how ever after i boot up again, apache, mysql and the connection program all go red and won't connect. when i try changing the realm or verseion the dropdown boxes are blank
    Got the same prob when i changed the C:\MaNGOS\v10316\mangosd.conf

    I reinstalled the whole thing and now it works good. Even got it public with nod32 server security as firewall.

  8. #1858
    Apprentice itayisamunyai3 is offline
    MemberRank
    Oct 2010 Join Date
    6Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    thx guys finally found my problem :)

  9. #1859
    Member kubilius is offline
    MemberRank
    Dec 2009 Join Date
    B.C CANADALocation
    66Posts

    My Ticket Editer

    First you will need to add a colum to your characters/character_ticket db make the new colum < admin >
    or run this it's your choice...
    Code:
    ALTER TABLE character_ticket ADD admin VARCHAR(60) AFTER ticket_lastchange;
    them change templates\offlike\admin\admin.index.php to this:

    Code:
    <ul style="font-weight:bold;"><h2>Server Managment</h2>
    	  <li><a href="index.php?n=admin&sub=tickets">GM Ticket Manager</a></li>
    them change templates\offlike\admin\admin.tickets.php to this:

    Code:
    <br>
    <?php builddiv_start(1, $lang['tickets']) ?>
    <style type="text/css">
      a.server { border-style: solid; border-width: 0px 1px 1px 0px; border-color: #D8BF95; font-weight: bold; }
      td.serverStatus1 { font-size: 1.8em; border-style: solid; border-width: 0px 1px 1px 0px; border-color: #D8BF95; }
      td.serverStatus2 { font-size: 1.8em; border-style: solid; border-width: 0px 1px 1px 0px; border-color: #D8BF95; background-color: #C3AD89; }
      td.rankingHeader { color: #C7C7C7; font-size: 10pt; font-family: arial,helvetica,sans-serif; font-weight: bold; background-color: #2E2D2B; border-style: solid; border-width: 1px; border-color: #5D5D5D #5D5D5D #1E1D1C #1E1D1C; padding: 3px;}
    </style>
    <br><center><img src= "http://YOUR_SERVER/YOUR_BANNER.jpg"></br><br><br>
    <?php write_metalborder_header(); ?>
    <?php builddiv_end() ?>
    <?php
    $db="characters";
    $link = mysql_connect('localhost:3308', 'ROOT_USER', 'ROOT_PASS');
    if (! $link) die(mysql_error());
    mysql_select_db($db , $link) or die ("Couldn't open $db:".mysql_error());
    $result = mysql_query("SELECT * FROM character_ticket") or die ("SELECT Error: ".mysql_error());
    $num_rows = mysql_num_rows($result);
    echo "<table width=600 border=2>";
    echo "<tr><th>ID</th><th>Guid</th><th>Player's Ticket</th><th>Response</th><th>Date</th><th>Admin</th></tr>";
    while ($get_info = mysql_fetch_row($result)){
    echo "<tr>";
    foreach ($get_info as $field)
    echo "<td>$field</td>";
    echo "</tr>";
    }
    echo "</table>";
    mysql_close($link);
    ?>
    <?php write_metalborder_footer(); ?>
    <br><br>
    <?php echo $lang['tickets_desc']; ?><br /><br />
    
    <?php
    foreach($alltopics as $topic) {
    $topic_choose .= "<option value='".$topic['ticket_id']."'>".$topic['ticket_id']."</option>";
    }
    // We we start with our form posts
    if(isset($_POST['add'])){
    	if(isset($_POST['add_admin'])) {
    		if(isset($_POST['add_response_text'])) {
    			$ques = $_POST['add_admin'];
    			$answ = $_POST['add_response_text'];
    			$CHDB->query("INSERT INTO `character_ticket` (`admin`,`response_text`) VALUES ('". $ques ."','". $answ ."')");
    			echo "<font color=\"blue\"><center>Added Response...</center></font>";
    		}else{ echo "<font color=\"darkred\"><center>You Must Provide An Admin Name.</center></font>"; }
    	}else{ echo "<font color=\"darkred\"><center>You Must Provide A Response.</center></font>"; }
    }elseif(isset($_POST['delete'])){
    	$gid = $_POST['delete'];
    	$CHDB->query("DELETE FROM `character_ticket` WHERE `ticket_id`=?d",$gid);
    	echo "<font color=\"blue\"><center>Deleted Ticket #" . $gid . ".</center></font>";
    }elseif(isset($_POST['finishedit'])){
    	if(isset($_POST['edit_admin'])) {
    		if(isset($_POST['edit_response_text'])) {
    			$ques = $_POST['edit_admin'];
    			$answ = $_POST['edit_response_text'];
    			$gid = $_POST['edit_ticket_id'];
    			$CHDB->query("UPDATE `character_ticket` SET `admin`='". $ques ."', `response_text`='". $answ ."' WHERE `ticket_id`=?d",$gid);
    			echo "<font color=\"blue\"><center>Successfully Edited Ticket #" . $gid . ".</center></font>";
    		}
    	}
    }
    ?>
    <center>
    
    <!-- If user posted to edit -->
    <?php
    if(isset($_POST['edit'])){
    $numb = $_POST['edit'];
    $q = $CHDB->select("SELECT `admin`,`response_text` FROM `character_ticket` WHERE `ticket_id`=?d",$numb);
    foreach($q as $qs) {
    }
    ?>
    <form action="index.php?n=admin&sub=tickets" method="POST">
    <table width="600px">
    	<tr><center>Editting Ticket # <?php echo $numb ?></center></tr>
    	<tr><center><b>Name of Administrator / GM: </b><input type="text" name="edit_admin" size="50" value="<?php echo $qs['admin'] ?>"></center></tr>
    	<tr><center><b>Response to Ticket: </b><input type="text" name="edit_response_text" size="50" value="<?php echo $qs['response_text'] ?>"></center></tr>
    	<tr><center><input type="hidden" name="edit_ticket_id" value="<?php echo $numb ?>"><input type="submit" value="Finish" name="finishedit"></center></tr>
    </table>
    </form>
    </center>
    
    <?php }else{ ?>
    
    <!-- Add -->
    <form action="index.php?n=admin&sub=tickets" method="POST">
    <table width="600px">
    	<tr><H3><center>RESPOND TO A TICKET</center></h3></tr><br />
    	<tr><center><b>Name of Administrator / GM: </b><input type="text" name="add_admin" size="50"></center></tr>
    	<tr><center><b>Response to Ticket: </b><input type="text" name="add_response_text" size="50"></center></tr>
    	<tr><center><input type="submit" value="Send Answer" name="add"></center></tr>
    </table>
    </form>
    </center>
    <br /><br />
    
    <!-- Edit -->
    <center>
    <form action="index.php?n=admin&sub=tickets" method="POST">
    <table width="600px" >
    	<tr><center>Select A Ticket To Edit</center></tr>
    	<tr><center><select name='edit'><?php echo $topic_choose ?></select></center></tr>
    	<tr><center><input type="submit" value="EDIT"></center></tr>
    </table>
    </form>
    </center>
    <br /><br />
    
    <!-- Delete -->
    <center>
    <form action="index.php?n=admin&sub=tickets" method="POST">
    <table width="600px">
    	<tr><center>Delete A Ticket</center></tr>
    	<tr><center><select name='delete'><?php echo $topic_choose ?></select></center></tr>
    	<tr><center><input type="submit" value="Delete"></center></tr>
    </table>
    </form>
    </center>
    <?php 
    }
    them change components\offlike\admin\admin.tickets.php to this:

    Code:
    <?php
    if(INCLUDED!==true)exit;
    
    // ==================== //
    $pathway_info[] = array('title'=>'tickets','link'=>'');
    // ==================== //
    
    $alltopics = $CHDB->select("SELECT * FROM `character_ticket` ORDER BY `ticket_id`");
    ?>
    themadd this to your lang\en.english.lang file:

    Code:
    |=|tickets :=: Tickets
    |=|tickets_desc :=: If you have a Ticket that has not been answerd, try searching or asking in the forums or simply send in another Ticket.
    That's it Enjoy.
    Last edited by kubilius; 24-10-10 at 05:37 AM. Reason: typo

  10. #1860
    Enthusiast zysus is offline
    MemberRank
    Nov 2006 Join Date
    33Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    thx for the core

  11. #1861
    Novice Darpheous29 is offline
    MemberRank
    May 2009 Join Date
    4Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    i cant get a hold of 3.3.5 full and patches ... filebeam errors and wont let me download them ... does anyone have another mirror i can use ??

  12. #1862
    Novice TNTC4 is offline
    MemberRank
    Oct 2010 Join Date
    4Posts

    ! error during install

    i encounter this error during instalation.
    see screenshots.
    also i've attached log files for AmberGUI.exe

    if anyone know what cause this problem and how to fix it, please share to this thread.
    thanks.

    i try to install YTDB 0.13.5 CS556 + SD2 R1741 + MaNGOS 0.17.0 v10199
    my system is XP SP3
    .Net Framework 4 Extended
    Microsoft Visual C++ 2010 x86 Redistributable - 10.0.0319
    Attached Thumbnails Attached Thumbnails screen1.jpg   screen2.jpg  
    Attached Files Attached Files
    Last edited by TNTC4; 31-10-10 at 12:45 PM.

  13. #1863
    Account Upgraded | Title Enabled! shivajiva101 is offline
    MemberRank
    Oct 2006 Join Date
    DarkSide of the MoonLocation
    345Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    open amber.ini with notepad and edit the opacity value changing it to 0.9 then try launching ambergui...

    Folks I'm putting the finishing touches to multi-server code in the installer and gui so you can create/delete extra servers using the gui. The installer will detect and optionally update any servers it finds when applying updates to the primary server. The cap is currently set at 1 realm + 4 world servers but this is arbitary as its just a prefixed constant. Probably the last major overhaul the code will receive for the foreseeable, hoping to release v10672 with YTDB R570 inc. acid 3.0.6 & the usual patches asap only as a update tho as I'm still not sure what todo about website / minimanager content and what should replace it...any sensible suggestions?
    Last edited by shivajiva101; 04-11-10 at 08:21 AM. Reason: additional content

  14. #1864

    thumbs up Re: - MaNGOS ~Amber~ Releases 3.x.x

    Hi
    Glad to hear from you.
    Waiting for the update
    2 things you could add.
    1 use mangoweb enhanced for the website
    2 add the shez armoury you have to compile the patch in the mangos code.

    Other than that everything is great....as far as multi worlds ok but not really needed for now ;)
    2 realms is good enough ;)

    Again thanks for the great work!

  15. #1865
    Member kubilius is offline
    MemberRank
    Dec 2009 Join Date
    B.C CANADALocation
    66Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    It's All Good..
    I would agree with Nignthawk1000
    Thanks Shiv

  16. #1866
    Novice TNTC4 is offline
    MemberRank
    Oct 2010 Join Date
    4Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    shivajiva101: open amber.ini with notepad and edit the opacity value changing it to 0.9 then try launching ambergui...

    when i change this value to 1 then works perfectly.
    in the future you guys have a mind not all users use vista/windows 7 OS so don't use any opacity settings in any programs.

  17. #1867
    Member vermasis is offline
    MemberRank
    Aug 2004 Join Date
    WonderlandLocation
    79Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    I'm not sure how old this is but the links are dead. Thank you so much for your hard work! I wanted to get started on making this work but FileBeam I think deleted your links!

  18. #1868
    Novice TNTC4 is offline
    MemberRank
    Oct 2010 Join Date
    4Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    Quote Originally Posted by sekula View Post
    v10199_FullSetup
    [23:37:44] amber.ini settings loaded...
    Session started 11/3/2010 11:37:44 PM
    [23:37:45] Initialised...
    [23:38:58] mysqld-opt [pID:4080] started...
    [23:38:58] mysqld-opt [pID:4080] started...
    [23:38:59] on port: 3308
    [23:38:59] on port: 3308
    [23:38:59] port 80 is already in use!


    help
    variant 1: stop skype, then start abmergui.exe
    variant 2: go to skype options: tools -> options -> advanced -> connection -> uncheck "use port 80 and 445 blabla"

  19. #1869
    Novice TNTC4 is offline
    MemberRank
    Oct 2010 Join Date
    4Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    1. download this program: (CurrPorts v1.83)
    CurrPorts: Monitoring TCP/IP network connections on Windows

    2. see what program listen to the port 80

    3. kill that program or setup this program not to listen to port 80

  20. #1870

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    Hard to see some of the full GUI I dont know if it is just me or everyone have this issue I am running windows 7

  21. #1871

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    I am getting error after installing the updates
    msvcr100.dll missing and I have install .net

  22. #1872
    Novice veseljak is offline
    MemberRank
    Nov 2010 Join Date
    2Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    can't get this to work it always saz that i have intuted wrong username and password

  23. #1873
    Apprentice mantuska is offline
    MemberRank
    Sep 2008 Join Date
    5Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    i installed full 3.3.5a server. and im getting this error

    strange that my wow version is 3.3.5 too. so thats the prob?

  24. #1874
    Apprentice mantuska is offline
    MemberRank
    Sep 2008 Join Date
    5Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    this topic is dead or what?

  25. #1875
    Enthusiast balonyiadam is offline
    MemberRank
    Oct 2007 Join Date
    46Posts

    Re: - MaNGOS ~Amber~ Releases 3.x.x

    no just still waitin'



Advertisement