no info baloons on mouse hower
Moderator: SEOW Developers
no info baloons on mouse hower
hi all,
i've built my self a test SEOW server so i can learn from it. everything works fine except there is no info balloons over the units, Objectives, weather ...
right click works normally. any ideas?
thx
i've built my self a test SEOW server so i can learn from it. everything works fine except there is no info balloons over the units, Objectives, weather ...
right click works normally. any ideas?
thx
-
- Posts: 2213
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
-
- Posts: 2213
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
OK, I suppose that your MP works for sectors that have no campaigns in them, right? And it only breaks for the campaign sector you are running?
That usually means that there is some new data in the DB that the MP cannot render, e.g. a special character in mission orders or some similar thing.
Things to check: the Pilot_Reports table, GroupMissionData table. Look for strange characters like ' or ^ in the text strings.
If you can tell us the last thing that was changed before the problem started, that always helps.
Cheers,
4S
That usually means that there is some new data in the DB that the MP cannot render, e.g. a special character in mission orders or some similar thing.
Things to check: the Pilot_Reports table, GroupMissionData table. Look for strange characters like ' or ^ in the text strings.
If you can tell us the last thing that was changed before the problem started, that always helps.
Cheers,
4S
IV/JG7_4Shades
SEOW Developer
SEOW Developer
Checked it.
On sectors with no campaigns i have the same problem. Except there is no units so no balloons there. Hovering over Commander Headquarters , Axis Situation Map; Objectives:, Time now is 15 Jun 1940 at 15:00 hours.,
Weather: Hazy, cloud at 2800 m little papers gives me nothing.
checked the mentioned tables for the active campaign, they are empty.
pls understand this is not a campaign that is played. it serves me for testing purposes so if needed i can reinstall all.
On sectors with no campaigns i have the same problem. Except there is no units so no balloons there. Hovering over Commander Headquarters , Axis Situation Map; Objectives:, Time now is 15 Jun 1940 at 15:00 hours.,
Weather: Hazy, cloud at 2800 m little papers gives me nothing.
checked the mentioned tables for the active campaign, they are empty.
pls understand this is not a campaign that is played. it serves me for testing purposes so if needed i can reinstall all.
-
- Posts: 2213
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
created a new setup in seow2 directory. version 4.710 works fine. after update to 4.793 and works no more.
login to MP-Admin opens but does not show database connection list. only header and Title Database Connection Definitions.
i can see some changes in MP-Connection file that test something. maybe that test goes wrong.
login to MP-Admin opens but does not show database connection list. only header and Title Database Connection Definitions.
i can see some changes in MP-Connection file that test something. maybe that test goes wrong.
-
- Posts: 2213
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
-
- Posts: 2213
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
Oh, I see it now. I wonder whether you have added the WestFront44 data to your DB. Check out this thread http://seowhq.net/seowforum/viewtopic.p ... 5&start=45 especially around July 28 2011. There is a DB script to run that adds WestFront44 support to the DB. This is *required*.
I really should issue a consolidated patch soon, but I was kind of waiting for TD 4.11 first ...
Cheers,
4S
I really should issue a consolidated patch soon, but I was kind of waiting for TD 4.11 first ...
Cheers,
4S
IV/JG7_4Shades
SEOW Developer
SEOW Developer
ok. here is what i have done:
- unzip MP 4.710
- patch to 4.793
- imported reference.sql from SEDB33A-simple to reference DB
- imported kuban.sql from SEDB33A-simple to kuban db
- imported SEDB33A_WestFront44_patch to reference db
- created AI_Crew_Disposition using code below in both databases
- opened my admin page, entered password ... nada ... blank page with header and title only
- edite MP-connection manually adding reference as a defoult db, but still nothing.
must be some stupid mistake i'm doing
- unzip MP 4.710
- patch to 4.793
- imported reference.sql from SEDB33A-simple to reference DB
- imported kuban.sql from SEDB33A-simple to kuban db
- imported SEDB33A_WestFront44_patch to reference db
- created AI_Crew_Disposition using code below in both databases
Code: Select all
Code:
CREATE TABLE `AI_Crew_Disposition` (
`Mission` varchar(255) DEFAULT NULL,
`Disposition` varchar(255) DEFAULT NULL,
`Air_Regiment` varchar(255) DEFAULT NULL,
`Alignment` varchar(10) DEFAULT NULL,
`Command_Index` varchar(10) DEFAULT NULL,
`Crew_Index` int(11) DEFAULT NULL,
`Skill` int(11) DEFAULT NULL,
`Airframe_Type` varchar(255) DEFAULT NULL,
`Airframe_Class` varchar(10) DEFAULT NULL,
`Event_Time` varchar(20) DEFAULT NULL,
`X` int(11) DEFAULT NULL,
`Y` int(11) DEFAULT NULL,
KEY `Statistics` (`Mission`,`Alignment`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- edite MP-connection manually adding reference as a defoult db, but still nothing.
must be some stupid mistake i'm doing
-
- Posts: 2213
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia