Bug Warning message

Status
Not open for further replies.

DxtGaming

Customer
I have another warning error:

When I am on import page for games .tar .zip etc

and I change the value of 25 to any other like 150 I have this
Only with this game "CryptRaider"

Code:
Warning: file_put_contents([path]/dbtech/vbarcade/import/temp/game_cryptraiderv32/ne&169=none&170=none&171=none&172=none&173=none&174=none&175=none&176=none&time=60&eof=true&) [function.file-put-contents]: failed to open stream: Permission denied in [path]/dbtech/vbarcade/functions_arcade.php on line 119

I am not sure what happen there but the game is working
I attached the game below (extract the .tar from the .zip):


2m3oUc.png
 

Attachments

Last edited:
for this, in addition to the other fixes, you need this:

in dbtech/vbarcade/systems/v3a.php find

PHP:
                        //copy extra junk aside from what we have already, except texts
                        foreach (arcade_scandir($path, 'txt', array($php, $game['file'], $game['stdimage'], $game['miniimage']), true) AS $file) $info['copyfile'][] = "$path/$file";

replace with

PHP:
                        foreach (arcade_scandir($path, array('html', 'txt'), array($php, $game['file'], $game['stdimage'], $game['miniimage']), true) AS $file)
                        {    //copy extra junk aside from what we have already, except texts
                            $info['copyfile'][$file] = $subdir = "$path/$file";

                            if (is_dir($subdir))
                            {    //add required files from subdirectory
                                foreach (arcade_scandir($subdir, array('html', 'txt'), array(), true) AS $subfile) $info['copyfile']["$file/$subfile"] = "$subdir/$subfile";
                            }
                        }
 
Status
Not open for further replies.

Legacy vBArcade

vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
901
Customer rating
0.00 star(s) 0 ratings
Back
Top