Fora

Prism GraphPad: XML data schema may have been deleted or moved

Autor Odpowiedzi
vramyabios Sunday 23 April 2017 at 9:11
vramyabiosAnonymous

I tried to install a statistical software (Prism Graph Pad) in Play on Linux. The installation was fine and opening but while opening a new data table I got the following message

"Opened file may be incomplete. Prism XML data schema file may have been deleted or moved.

Missing file: C:\Program Files\GraphPad\Prism6\Prism6XMLschema.xml

To install Prism6XMLschema.xml you need to reinstall Prism.

Do you want to import the file anyway?"

Is there any workaround to make the program working ??? I desperately need this software to work on Linux

You help is much appreciated

Thanks

 

zvasconcelos Sunday 28 July 2019 at 5:06
zvasconcelosAnonymous

You should go on configure, then click on install components

roll down until you find "msxml3" then install it and will run ok!

Can you tell me if your fonts are loaded correctly....this is my problem with playonlinux!!! Every font is displayed incorrectly!

Z.

Dadu042 Sunday 28 July 2019 at 10:26
Dadu042

You are right about installing the "msxml" component.

 

About the fonts I suggest you to install the component "corefonts", then after testing try to install the others with "font" in their name.

 

 

I wrote this this script but it does not work (read comments inside).

 

#!/bin/bash
# Date : 2017-07-28
# Last revision : see changelog
# Distribution used to test : KUbuntu 18.04 x64
# Author : see changelog
# Licence : GPLv3
 
# CHANGELOG
# [Dadu042] (2017-07-28)
#   First script. Software windows does open but closes immediately.

# KNOWN ISSUES
# - amd64 arch mode: installer don't launch (Wine 4.0.1, Prism 8.2.0.435).
# - Software windows does open but closes immediately (Wine 4.0.1, Prism 8.2.0.435).

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Prism"
PREFIX="graphpad-prism"
WORKING_WINE_VERSION="4.0.1"
PUBLISHER="GraphPad"
GAME_URL="https://www.graphpad.com"
AUTHOR="Dadu042"
 
# Setup
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$PREFIX"
 
# Components
POL_Call POL_Install_corefonts
POL_Call POL_Install_msxml6
POL_Call POL_Install_wininet

# POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
POL_SetupWindow_InstallMethod "LOCAL"

POL_SetupWindow_message "Please do not run the software as soon installed, finish the installation first." "$TITLE"

if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run:')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
 
elif [ "$INSTALL_METHOD" == "DOWNLOAD" ];then
        POL_Download ""
        POL_Wine_WaitBefore "$TITLE"
        POL_Wine "" "/SILENT"
fi
   
POL_Shortcut "prism.exe" "$TITLE" "" "" "Science;Math;"

POL_SetupWindow_message "Software installed." "$TITLE"
 
POL_System_TmpDelete
POL_SetupWindow_Close
 
exit 0

Edytowane przez Dadu042