Jump to content
The Uniform Server Community

JesseChisholm

Member
  • Posts

    2
  • Joined

  • Last visited

About JesseChisholm

  • Birthday 08/08/1957

Previous Fields

  • SourceForge ID
    jessechisholm
  • Main OS
    Windows 7

Contact Methods

  • Website URL
    http://www.ctc.volant.org/consult/

Profile Information

  • Gender
    Male
  • Location
    California

JesseChisholm's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. An alternative resolution might be to go through this once, but then reconfigure your UniServer MySQL to use a different port. Then, in theory, in later sessions the two copies of MySQL server can coexist. -Jesse
  2. Hello, There is a script buglet in .../uni_con/includes/core_function_inc.vbs circa line 421. The code assumes that there is a CommandLine to give to the Split function. Sadly, there are times when there is a null (Nothing) in that field. It can be patched in the short term by changing that line: OLD: split_array = split(item.CommandLine," ") 'Split string at " " NEW: split_array = split(item.CommandLine&" "," ") 'Split string at " " NOTE: this is NOT a long term solution. Just a patch you can apply to get past this in 8.7.3. The problem is possibly caused by there being another program hogging port 80, but it is running as a service, and you don't have permission to get its CommandLine from the OS. Running Start_as_program.exe as the local system Administrator might help. -Jesse
×
×
  • Create New...