• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

ModernAAC version 1.0.2 released!

I have uploaded it to speedyshare and replaced the link in the first post, you should be able to download it again.
 
I get "Can't connect to MySQL database." after install.
but i can connect with server software(using TFS 0.2.8)
what have i done wrong?
 
Hello!

Im using TFS 0.4 and the installing of this went fine. But now to the problem, It seems dont work to create account :/
 
Hello!

Im using TFS 0.4 and the installing of this went fine. But now to the problem, It seems dont work to create account :/

Is there any error?

I'm having that same problem. :(

You are not meant to have a copy of TFS 0.4, so I suggest that you wait for the official release.
 
You are not meant to have a copy of TFS 0.4, so I suggest that you wait for the official release.

Sorry, I was mistaken. I'm running 0.2.10, but I just got back to hosting, so I assumed that 0.4 was the 8.7 one because I'm a noob.
 
Hi, after the installation I've got a problem with database..

Error: Can't connect to MySQL database.

All in config.php is good, my OTS is running on that database, I don't know what is the problem.

I use OTserv *(Crystal Server) 8.7. Please help and sorry but my english is so low, because I'm from Poland.
 
Hello, I have a problem with modern aac.

When you create a character its stuck with the loadin icon. The character is created however... If I change the link you are suppose to be redirected too it will open the whole webpage again inside the "content menu"

Here is my code

Code:
<?php 
echo "<div class='errors'>";
echo error(validation_errors());
echo "</div>";
echo form_open('character/create_character', array('onSubmit'=>'createCharacter(); return false;', 'id'=>'createCharacter')); 
?>
<script>
	function createCharacter() {
		$('.loader').show();
		var form = $('#createCharacter').serialize();
		$.ajax({
			url: '<?php echo WEBSITE; ?>/index.php/character/create_character/1',
			  type: 'post',
			  data: form,
			  success: function(data) {
			  	$('.errors').html(data);
			  	$('.loader').hide();
			  }
		});
	}
</script>
<div class='message'>
<div class='title'>Create new Character</div>
<div class='content'>
<label>Character name</label><input type='text' value="<?php echo set_value('name'); ?>" name='name'><br><br>
<label>City</label><select name='city'>
<?php 
	foreach($cities as $key=>$value) {
		echo '<option value="'.$key.'">'.$value.'</option>';
	}
?>
</select><br><br>
<label>Sex</label><select name='sex'>
	<option value="1">Male</option>
	<option value="0">Female</option>
</select><br><br>
<label>Vocation</label><select name='vocation'>
<?php 
	foreach($vocations as $key=>$value) {
		echo '<option value="'.$key.'">'.$value.'</option>';
	}
?>
</select><br><br>
<label>World</label><select name='world'>
<?php 
	foreach($worlds as $key=>$value) {
		echo '<option value="'.$key.'">'.$value.'</option>';
	}
?>
</select><br><br/>
<label>&nbsp;</label>
<input type='submit' value='Create' name='submit' class='sub'/> <?php echo loader();?>
</div></div>
</form>

Anyone got a solution to this? =/

//Massen
 
If I ain't logged, and click in View comments, appear this:
(but when i try in localhost, this error don't appear)

A PHP Error was encountered

Severity: Notice

Message: Undefined index: account_id

Filename: models/home_model.php

Line Number: 56

If I search [God] Kitu in Characters, appear this:

An Error Was Encountered
The URI you submitted has disallowed characters.
 
Why do people bother coding and releasing things when they don't explain how to install and configure it properly? People will never learn this way.
 
Ready, i run the modernACC and i can use the pasword without Sha1, i use "plain".
 
Back
Top