• 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!

Modern Aac - Shopsystem BUG

GOD Wille

Excellent OT User
Joined
Jan 11, 2010
Messages
2,826
Solutions
2
Reaction score
815
Location
Sweden
It started with that i bought stians & paxtons shop system for 15 eur, and then i install everything and it doesn't work. Almost everything works fine, but then i discovered that when i choose any name to buy the item, the page is just blank..

What to do?
 
Be more specific, tell what you exactly do.

What you buy, item? Red skull removal? Which one?

Tell us what configuration you are running as well.
 
You still havent answered my questions.

@Edit

I've just checked and current relase is working properly.

My setup:

Zend Server Community Edition
Version 5.0.4

PHP
Version 5.3.3
PHP Configuration File /usr/local/zend/etc/php.ini

Web Server
Server Name 127.0.0.1
Server Software Apache/2.2.15 (Unix) PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/0.9.8o
OS Version: Darwin

Please post your server information, and try possibly debugging the application.

@edit 2

Actually I found some problem, page becomes blank when there is a character that doesn't exists, or when validation fails.

Open system/application/controllers/shop.php

On line: 82 you will find:

PHP:
}

Just below this paste this:

PHP:
else {
	error(validation_errors());
}

so it becomes

PHP:
}
else {
	error(validation_errors());
}
 
Last edited:
Back
Top