GOT SAME PROBLEM. can anybody check my logs and shops? LOW VERSION PROBLEM. tried every solution people gave in other threads.
PLZ HELP ME :/
Pwservproblem.rar - download. Darmowy hosting plików.
GOT SAME PROBLEM. can anybody check my logs and shops? LOW VERSION PROBLEM. tried every solution people gave in other threads.
PLZ HELP ME :/
Pwservproblem.rar - download. Darmowy hosting plików.
so many people want things handed to them..
what server release, what client version, have you stamped your gshop files properly?
server release : http://forum.ragezone.com/f751/relea...-4-6-a-956144/
client : 1.4.6. v719
and gshops are stamped. u can check it from link whcih i gave. would be nice if u check it plz. ty for help.
gshopa re good with stamps. GS is online.
the only problem i think is this translated from chinese translated by translate.google.com
Configuration file: 'gs.conf' configuration addendum: 'gsalias.conf'
Binds function opens
Babolat Genei total of 21 samples of goods
Hongli store data failed to initialize
The first step initialization failed with error number: -32
what can be the problem?
A script I wrote awhile ago when I had issues with keeping track of 'low versions' NB: this won't do jack for you if you've got items in your shop that are 0.0 cost, because you likely made them all the same .data file.
But what it will do is makes sure they are the same file as the 'source' location.
1. Copy + Paste into a file on your Linux server in my case its called 'chkgh.sh'
2. Edit the lines marked with red putting in your 'OWN PATHS' for where the data files are.
2a. -- You could get creative here if you wanted too by making the 'if' statement on the condition of them not matching
copy the SOURCE DATA, to the appropriate location.
2b. -- I've not added code for _GAME= variables, because ... well I'm lazy and you can figure it out.
Once all the paths are correct.
3. Command : chmod +x 'chkgh.sh'
4. ./chkgh.sh
It will tell you if there is a mismatch.
Enjoy.
I have absolutely no idea ...#/bin/bash
# GSHOP.DATA
GSHOPDATA_SOURCE=<where you put your "GSHOP.DATA" eg. the new one> .... /home/share/gshopsev.data
GSHOPDATA_SERVER=<where you put your "GSHOP.DATA" eg. on the server> .... /gamed/config/gshopsev.data
GSHOPDATA_GAME=<where you put your "GSHOP.DATA" eg. for the game client> .... /element/data/gshopsev.data
# GSHOPSEV.DATA
GSHOPSEVDATA_SOURCE=<same as above except gshopsev.data>
GSHOPSEVDATA_SERVER=<same as above except gshopsev.data>
GSHOPSEVDATA_GAME=<same as above except gshopsev.data>
echo ""
echo ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::"
echo " Perfect World GHSOP Checker "
echo ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::"
echo ""
function check { echo $1 $2
md5_1=$(md5sum $0 | awk '{print $1}')
md5_2=$(awk '{print $1}' $2)
[ "$md5_1" != "$md5_2" ] && { echo "MD5 doesn't match";}
}
echo ""
echo Checking : $GSHOPDATA_SOURCE
check $GSHOPDATA_SOURCE $GSHOPDATA_SERVER
echo ""
echo Checking : $GSHOPSEVDATA_SOURCE
check $GSHOPSEVDATA_SOURCE $GSHOPSEVDATA_SERVER![]()
Last edited by Timma Roughton; 12-11-13 at 11:18 PM.