Web Administration

Added by nimbus3 over 7 years ago

After much research, and headscratching, I managed to get files compiled, Xampp, batch file and associated files fixed and Running and finally rrdtool sorted.

BUT when I come to use the administration pages, by going to http://localhost/ in a browser, I try to open a shard (i.e. open) it just returns to saying "you need to open a shard" message on screen. The first suspect thing is my shard is called open_shard not just "open". The second suspect thing is I tried to create a new shard and generate various other things via the Admin web tools with no change, I checked with mysql and no new entries under shards. I followed all config guides regarding setting ip/ mysql/ php etc to the letter.

I did try a client and could only connect to the official open_shard, but I soon realised I had missed a number of steps while doing this, but I wanted to inspect my server first.

I get no log files generated from this, which I guess is another suspected problem.

Any help with this would be greatly appreciated, or if someone could quickly write a step by step regarding admin settings just so I can confirm that mine are correct with the current version..

Regards

Numbus3


Replies (13)

RE: Web Administration - Added by ragnar-gd over 7 years ago

1. Did you try IRC to call for help? If not, try it out. There communication about problems is faster then in the forum.
2. To be able to help you, just tell on which OS client resp. server are running

RE: Web Administration - Added by nimbus3 over 7 years ago

I'm running the server/client/apache etc on windows 7. I am wondering whether it is a permissions thing, I have left UAC running atm so will try turning it off. Although I get no UAC warnings or server errors at all.

I have not tried irc yet, will head there now, if I can find the details.

RE: Web Administration - Added by ragnar-gd over 7 years ago

If you did not go to the IRC, here my questions:

In the client-log, are there a lines as this?

2010/12/08 17:42:20 DBG ec0 ryzom_client_r.exe http_client.cpp 57 CHttpClient::connect : Connected to web server '192.168.<...>.<...>:40916'
2010/12/08 17:42:20 INF ec0 ryzom_client_r.exe login.cpp 2707 checkLogin : Connected

Can you please print the client.cfg, or at least the line with:

StartupHost = "<...>:40916";

Ragnar G.D.

RE: Web Administration - Added by sfb over 7 years ago

nimbus3,

Are you still having problems?

Thanks,
sfb
/s

RE: Web Administration - Added by nimbus3 over 7 years ago

Hi sfb

I believe I have the problem resolved now. but I did get one more odd thing, I finally got client communicating with server and tried to accept the money quest from the welcomer and it crashed the aes, I will try it again when I have time later just to confirm the error I got and what it came from.

On another note, I am preparing spread sheets of data for Armour, Weapons, skills etc, but for skills I am curious whether anyone has managed to work out setting up a trainer npc and adding skills that way ??

Is there any example files i draw from ??

As you can see I have multiple things going on at once. If im not setting up my server/client I am sorting data into "laymans" readable content or causing havok creating new ideas for things (taming tool thread in open discussion) lol.

Regards

Nimbus3

RE: Web Administration - Added by molator over 7 years ago

You will find what you need for the skills here:
http://dev.ryzom.com/wiki/ryzom/AddingGameEntities

But i'm not ready yet for the trainer (didn't find time to).

RE: Web Administration - Added by nimbus3 over 7 years ago

Ok

I have been following this guide to obtain what i need so far anyway. But thx for the info Molator.

Is there any hint you could pass me so I might help with the trainer situation as I am almost done with the Armour, weapons and halfway through skills that I know of??

Thx

RE: Web Administration - Added by molator over 7 years ago

You should study code\ryzom\common\data_leveldesign\primitives\newbieland\urban_newbieland.primitive.
In that file, you will find the way to declare an armor merchant and duplicate it.
You can use world editor to place the clone.

The syntax for a trainer is something like that:

menu: MENU_WHOAMI WHOAMI_NEWB_FYROS_INSTRUCTOR_CRAFT
phrase_race_filter: 1
phrase_bot_race_filter: 0
phrase_type: craft
phrase : abcmjca01.sphrase
phrase : abcmjca02.sphrase

You will have to create a sphrase file per skill.
Each spharse file will contain a list of the skills to learn.
For example, to teach an acid spell, maybe you will teach the acid spell and a sap credit.

You've got some sphrase examples in code\ryzom\common\data_leveldesign\leveldesign\game_element\sphrase

Here the general syntax:

<?xml version="1.0"?>
<FORM Revision="$Revision: 1.4 $" State="modified">
  <STRUCT>
    <ATOM Name="brick 0" Value="myspell.sbrick"/>
    <ATOM Name="brick 1" Value="mycredit.sbrick"/>
    ...
  </STRUCT>
</FORM>

RE: Web Administration - Added by nimbus3 over 7 years ago

Thats great :)

Thank you molator, once the rest of my data is finished I will start work on this and then create the script for the spreadsheet to generate the xml's in there related forms (i.e. sitem/sbrick etc) and share with the community.

Obviously testing it all out first..

Regards

nimbus3

RE: Web Administration - Added by nimbus3 over 7 years ago

Sorry for double post I keep forgetting to ask about caster armour. I have found the sbrick but am having trouble with the Skill familyid, there seems to be no mention of them in any of the files in the guides..

RE: Web Administration - Added by molator over 7 years ago

I'm ordering my sheets and notes.
I wrote a php generator, but not ready yet to share.

The caster armor only includes pants.
Here for caster armors:
icfacp bcfaea19 FY_HOM_caster01_pantabottes.shape
icmacp bcmaea19 MA_HOM_caster01_pantabottes.shape
ictacp bctaea19 TR_HOM_caster01_pantabottes.shape
iczacp bczaea19 ZO_HOM_caster01_pantabottes.shape

RE: Web Administration - Added by nimbus3 over 7 years ago

Great stuff, thank you again :)

RE: Web Administration - Added by sfb over 7 years ago

nimbus3 wrote:

Sorry for double post I keep forgetting to ask about caster armour. I have found the sbrick but am having trouble with the Skill familyid, there seems to be no mention of them in any of the files in the guides..

nimbus, you can find the brick families cleanly illustrated in the source code. It's one of the few things that Ryzom illustrates well in source code. Check out code/ryzom/common/src/game_share/brick_families.h the comments are actually helpful.

Thank you!
sfb
/s

(1-13/13)