====Change Last Update Token Validation A Month Ago UPDATE accounts SET last_updated = DATE_SUB(NOW(), INTERVAL 1 MONTH); ==== Change Account Status UPDATE accounts SET status = 'idle'; ====Change Wait Delay Time in uploadReceipt.js: for (let j = 0; j < 60; j++) { 60 is secound ====Change Weekly Limit -Initial Weekly Limit Check , in uploadReceipt.js Change This : if (images.length === 0 || points >= 120) { Change: Replace 120 with 150. AND -Recheck Weekly Limit in Loop if (newPoints >= 120) break; Change: Replace 120 with 150. C:\xampp\htdocs\receipt-jar-backend>node server.js