• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

bugs that bug me ;)

8683984

New Member
Joined
Jun 5, 2009
Messages
95
Reaction score
2
Location
Sweden
<item id="9998" article="a" name="filled jalapeño peppers">
<attribute key="description" value="The creamy cheese makes a great combination with spicy peppers."/>
<attribute key="weight" value="650"/>

----------------------------------------------------------------------------------------
[09/09/2010 13:32:05] [Warning - Items::loadFromXml] Cannot load items file.
[09/09/2010 13:32:05] Line: 21123, Info: Input is not proper UTF-8, indicate encoding


Anyone know what the problem is? Cant figure it out :p please help asap
 
Code:
<item id="9998" article="a" name="filled jalapeño peppers">
<attribute key="description" value="The creamy cheese makes a great combination with spicy peppers."/>
<attribute key="weight" value="650"/>
</item>
 
[09/09/2010 13:32:05] Line: 21123, Info: Input is not proper UTF-8, indicate encoding
Your file contains not proper characters for UTF-8 encoding or is just not encoded in UTF-8. Probably this "ñ" is a problem. Try to save file in notepad or other program with UTF-8 encoding. Or just delete "ñ".
 
PHP:
<item id="9998" article="a" name="Filled Jalapeno Peppers">
<attribute key="description" value="The creamy cheese makes a great combination with spicy peppers."/>
<attribute key="weight" value="650"/>
</item>


:)
 
30hqzrc.png


don't make random guesses plz
 
Back
Top