SphereCommunity
tag hash code problem problem. - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: tag hash code problem problem. (/Thread-tag-hash-code-problem-problem)



tag hash code problem problem. - G-Defender - 04-30-2015 11:38 AM

hello save tag pc,

Code:
src.account.tag.pc=0001067A000208000400E3BDBFEBFBFF

result,

Code:
0bfebfbff

what?


RE: tag hash code problem problem. - Coruja - 04-30-2015 12:16 PM

if the tag start with 0, sphere will save it as number (hex) instead string (pure text)

to prevent this conversion you must use " " to force sphere save the tag as string
Code:
src.account.tag.pc="0001067A000208000400E3BDBFEBFBFF"



RE: tag hash code problem problem. - G-Defender - 04-30-2015 12:42 PM

@Coruja

problem,

Code:
src.account.tag.pc="0001067A000208000400E3BDBFEBFBFF"
serv.log ## <src.account.tag.pc>

Code:
0bfebfbff

not.


RE: tag hash code problem problem. - azmanomer - 04-30-2015 01:18 PM

i think he is using 56b thats why tag.pc="0001067A000208000400E3BDBFEBFBFF" doesnt work.


RE: tag hash code problem problem. - G-Defender - 04-30-2015 01:21 PM

@azmanomer

Burada her bilgisayarın işlemci numarasını alıyor connector.

Anladın dimi?


RE: tag hash code problem problem. - Coruja - 04-30-2015 01:21 PM

try using double "" "", I dont know why but sometimes it can help if a single " " doesnt work
Code:
src.account.tag.pc=""0001067A000208000400E3BDBFEBFBFF""



RE: tag hash code problem problem. - G-Defender - 04-30-2015 02:13 PM

not "" "" it did not work.


RE: tag hash code problem problem. - Coruja - 04-30-2015 04:07 PM

I tested it here and it seems to be working fine using """ """
Code:
src.account.tag.pc="""0001067A000208000400E3BDBFEBFBFF"""



RE: tag hash code problem problem. - G-Defender - 05-01-2015 09:10 AM

Thank you. Smile