Brainless UGCC

Status
Not open for further replies.

Bill Gates

New Member
Hey,

Ich möchte das Ultimate Gameserver Control Center (UGCC) von Brainless Tech
auf meinem Server installieren nur das Problem ist ich besitze bereits einen Apache Server

Das Interface wird über eine .bat mit folgendem Inhalt gestartet

@echo off
TITLE UGCC Web Control Panel
echo Starting the panel on port 173
cd bin
httpd.exe

Habt ihr vielleicht ne Ahnung was ich machen kann ?

MfG, Bill Gates

PS: Der Entwickler schickte mir diesen Link http://www.brainless.us/forum/viewtopic.php?f=21&t=131
wusste aber nicht ganz was ich machen sollte
 
Last edited by a moderator:
Das Panel läuft doch scheinbar auf Port 173, der Apache sollte im Normalfall auf Port 80 laufen. Die beiden müssten also parallel betrieben werden können.
 
Du kannst meines Wissens nach so viele Apache's laufen lassen, wie du willst, solange alle ihren eigenen Port haben.


gruss
vb-server
 
Hab auf die .bat draufgeklickt sie öffnet sich und schliesst sich dann auch direkt wieder und billgates-world.de:173 funktioniert auch ned
 
Füg mal nach der letzten Zeile in die .bat noch
Code:
pause
ein. Dann bleibt das Fenster bestehen und du solltest den Fehler sehen können.
 
Code:
Starting the panel on port 173

und dann natürlich Press any key to continue....
 
Last edited by a moderator:
So die Error.log

Code:
[Sun Mar 14 15:02:17 2010] [notice] mod_aspdotnet: CorBindToRuntimeEx has loaded version v2.0.50727 of the .NET CLR engine.
[Sun Mar 14 15:02:17 2010] [error] (-2146290895)Unknown error: mod_aspdotnet: Could not create the .NET interface for the Apache.Web.HostFactory.
[Sun Mar 14 15:02:17 2010] [crit] (-2146290895)Unknown error: mod_aspdotnet: Failed to start Asp.Net Apache.Web host factory
Configuration Failed

Unhandled Exception: System.IO.FileLoadException: Could not load file or assembly 'Apache.Web, Version=2.2.0.2199, Culture=neutral, PublicKeyToken=9b9b842f49b86351' or one of its dependencies. This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. (Exception from HRESULT: 0x800736B1)
File name: 'Apache.Web, Version=2.2.0.2199, Culture=neutral, PublicKeyToken=9b9b842f49b86351' ---> System.Runtime.InteropServices.COMException (0x800736B1): This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. (Exception from HRESULT: 0x800736B1)
   at System.Reflection.Assembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection)
   at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection)
   at System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection)
   at System.Activator.CreateInstance(String assemblyName, String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, Evidence securityInfo, StackCrawlMark& stackMark)
   at System.Activator.CreateInstance(String assemblyName, String typeName)
   at System.AppDomain.CreateInstance(String assemblyName, String typeName)


[Sun Mar 14 15:02:23 2010] [notice] mod_aspdotnet: CorBindToRuntimeEx has loaded version v2.0.50727 of the .NET CLR engine.
[Sun Mar 14 15:02:23 2010] [error] (-2146290895)Unknown error: mod_aspdotnet: Could not create the .NET interface for the Apache.Web.HostFactory.
[Sun Mar 14 15:02:23 2010] [crit] (-2146290895)Unknown error: mod_aspdotnet: Failed to start Asp.Net Apache.Web host factory
Configuration Failed

Unhandled Exception: System.IO.FileLoadException: Could not load file or assembly 'Apache.Web, Version=2.2.0.2199, Culture=neutral, PublicKeyToken=9b9b842f49b86351' or one of its dependencies. This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. (Exception from HRESULT: 0x800736B1)
File name: 'Apache.Web, Version=2.2.0.2199, Culture=neutral, PublicKeyToken=9b9b842f49b86351' ---> System.Runtime.InteropServices.COMException (0x800736B1): This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. (Exception from HRESULT: 0x800736B1)
   at System.Reflection.Assembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection)
   at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection)
   at System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection)
   at System.Activator.CreateInstance(String assemblyName, String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, Evidence securityInfo, StackCrawlMark& stackMark)
   at System.Activator.CreateInstance(String assemblyName, String typeName)
   at System.AppDomain.CreateInstance(String assemblyName, String typeName)
 
Last edited by a moderator:
Status
Not open for further replies.
Back
Top