Bugs Report - 11/27/2020


Just wanted to start doing updates on any bugs that have been found and current status:


Bug #1:

Issue: When deleting previously uploaded files using "rce_down.php" page, an error is shown after the page refreshes. The error states "File, '******', was not found on the server, but file information was deleted from database successfully.". The deleted file also shows up on the list of files that can be deleted as well. If the page is reloaded, the file is no longer in the list confirming that it was actually deleted from the database. When the server is checked, the deleted file is still there in the RevCommServer directory under the "files" directory under the folders by their former database IDs.

Problems: Deleted files are not deleted from server. After deleting files from the Setup page, it still displays them in the file list until the page is reloaded.

Workaround: Reload Setup page after deleting files. After deleting files through the Setup page, access server and delete files manually. The Setup page deletion must occur first to make sure file records are deleted from the database before they are removed from the server.

Status: Open 

Scheduled For: Release 2.0

Evidence:



Bug #2:

Issue: In RevComEngine_Core, if you have a function called by using a timer and that function setups up another timer, the original timer will continue to exist and call its function in a unending loop even after its expiration.

Problems: The function call by the original timer will get called in repartition until the app suffers a fatal error.

Workaround: When using a timer, the function being called can not setup another timer. Example to avoid:

```
RevComEngine_Core.SetTimer("GOOD", 
                             self, 
                             "thisisgood",
                             3000)

def thisisgood
  
   RevComEngine_Core.SetTimer("BAD", 
                             self, 
                             "thisisbad",
                             3000)
end

def thisisbad
end
```

Status: Resolved

Scheduled For: Release 2.0

Get RPG Maker RevComEngine Core Plugin

Leave a comment

Log in with itch.io to leave a comment.