Always have been Bad Wolf I just try and keep work and play separate.
Started playing with AV shortly after getting my job at FOG to learn more about the arcade industry and how everything works![]()
Always have been Bad Wolf I just try and keep work and play separate.
Started playing with AV shortly after getting my job at FOG to learn more about the arcade industry and how everything works![]()
Wow cool job bro! Yes, I remember well when you came to the arcade industry as a site owner. Do you still run Badger Likes Games? I havent heard you mention that site since you picked up P.D.G.
Anyway back on topic lol. It is good to know the we have an AVA user that has a direct connection to our new game feed. Maybe we can actually have one now thats going to stay working. And have some kind of response from the company when its not. Poor Andy has gone through hell with some of these guys.
Last edited by Bad Wolf; 03-31-2012 at 04:14 PM.
Hi, this should be included in the update -
Delete image and file from database when a game is deleted from Submissions.
It was actually me that asked Andy to put our feeds into this script lol. Since then we have worked together a fair bit, mainly him finding issues on our end and us fixing them lol. But yeah FGFYW is one of my babies, I will be taking care of it and doing everything in my power to make it one of the best (working) feeds possible. Once we fully complete the feeds you guys may even get a simple version of our high score API... at some point lol
I still have BadgerLikesGames but I see that as something I learned from, the domain will expire pretty soon. PlayDefenseGames is the only one of my own that I'm working on right now. Also started that one from scratch, well from a new domain and AV Script lol. But it seems to be going OK so far![]()
thanks for update. Btw why you think playtomic feed does not work? First few games on list does not it's true but look
![]()
everything works fine except for the date and some settings that dont get saved when i press "Save Settings". How can i fix this issue??
Thanks In Advance
Visit My Arcade http://playgamezfree.com and http://fluckgames.com
Website http://MyiTouchExpert.com/
Blog http://irvindomin.com
Were you running version 5.5? Or a previous version? If you were running 5.5 was the date option working before?
Nice job I like the new changes
Andy were do i put the template update ?
I enter my license key but it dont works... why????????
Nice release Andy!
odd.
i uploaded the admin files and the other files and replaced everything.. i uploaded the install folder to upgrade..
but i get errors trying to upgrade from 5.5.1 to 5.6
AV Arcade: Upgrade from 5.5+
Error on sql 1: Table 'ava_spil' already exists
what do i do?
Visit my Arcade when you get the chance: Fun Chat Games and feel free to criticise anything to help me improve!
Want to link exchange? Click here to add your link to my site - I will then add yours in exchange and gain you traffic
Or how about getting paid $6 for every 1000 visitors to your arcade? Click here to sign up with epicgameads
Please ask for support in the support forum, it's hard to keep track in here.
thewolfydragon - If the table ava_spil already exists you must have already tried to run the installer at least once before. You likely got another error when you first tried. Is your site working fine?
This is how I fixed the foreign character problem, I have still an older version of AV Arcade installed (no mb_strlen check), but this can be easily adapted to the new code.
For SEO reasons, I have added a check for a whitespace so that the string will not be stripped in the middle of a word.PHP Code:function shortenStr ($str, $len) {
if (strlen($str) > $len) {
$str = utf8_encode(substr(utf8_decode($str), 0, $len));
$str = substr($str,0,strrpos($str,' '));
$str = $str."…";
}
return $str;
}
EDIT: the important part is:
PHP Code:$str = utf8_encode(substr(utf8_decode($str), 0, $len));
Thank you for the update!
Why it requires a password to open the zip file while I am a customer?
Before, there was no password to open the zip file, with previous updates, so why now?
give me an explanation, or give me the password, thank you
Is it required to run installer for updates?
Also, I'm on 5.5. Is it necessary to update to 5.5.1 and then to 5.6?
What should be upgraded first - template or av ?
belami - There's no password on the zip
mikestar - You need to run the installer for major updates. Look in the readme, it'll tell you what to do.
Hello
I've just found a small bug. It's actually also in all previous versions of the script.
It's in includes/misc/search.php, the code on line 26 and 27.
Now it's also showing the games which are not-published when the descriptions is like the search-term.Code:$sql = mysql_query("SELECT * FROM ava_games WHERE description like \"%$trimmed%\" OR name like \"%$trimmed%\" AND published=1 ORDER BY id DESC LIMIT $from, $template[games_per_page]");
It should be:
Code:$sql = mysql_query("SELECT * FROM ava_games WHERE (description like \"%$trimmed%\" OR name like \"%$trimmed%\") AND published=1 ORDER BY id DESC LIMIT $from, $template[games_per_page]");
Visit My Arcade http://playgamezfree.com and http://fluckgames.com
Website http://MyiTouchExpert.com/
Blog http://irvindomin.com