Bug Occasional IPB reimport failure

Status
Not open for further replies.

Ozzy47

Former Developer
Customer
Having to reimport the games due to the broken scoring ofv32 games, I occasionally get this error:

Warning: mkdir(): File exists in [path]/stayoutofhere/arcade_admin.php on line 1300

Which is a different line number than the Mochi failure, that was same error but line 1284
 
in admincp/arcade_admin.php find

PHP:
mkdir($newfile, 0777);

replace with

PHP:
if (!is_dir($newfile)) mkdir($newfile, 0777);
 
Thanks for the quick fix, after reimporting over 1000 games with fix applied, no more warning.

I hope I don't have to reimport the games on the pages I got that error?
 
i dont think so. the warning just means it failed, but not bad enough to abort. thankfully, it failed because the directory already exists, and since the line was trying to create the directory, the end result is exactly the same anyway. should be good!
 
Status
Not open for further replies.

Similar threads

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