ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-19 22:30:29
Editing: ApiWrapper.js
Cancel
Save Changes
export default { call( endpoint, method = 'GET', body = false ) { let nonce = eafl_admin.api_nonce; if ( 'object' === typeof window.wpApiSettings && window.wpApiSettings.nonce ) { nonce = window.wpApiSettings.nonce; } let args = { method, headers: { 'X-WP-Nonce': nonce, 'Accept': 'application/json', 'Content-Type': 'application/json', // Don't cache API calls. 'Cache-Control': 'no-cache, no-store, must-revalidate', 'Pragma': 'no-cache', 'Expires': 0, }, credentials: 'same-origin', }; // Use POST for PUT and DELETE and emulate for better compatibility. if ( 'PUT' === method || 'DELETE' === method ) { args.method = 'POST'; args.headers['X-HTTP-Method-Override'] = method; } // Add optional body data. if ( body ) { args.body = JSON.stringify(body); } return fetch(endpoint, args).then(function (response) { if ( response.ok ) { return response.json(); } else { // Log errors in console and try to get as much debug information as possible. console.log(endpoint, args); console.log(response); const message = "Something went wrong. Using a firewall like Cloudflare or Sucuri? Try whitelisting your IP. If that doesn't work, please contact support@bootstrapped.ventures with the following details:"; const responseDetails = `${response.url} ${response.redirected ? '(redirected)' : ''}- ${response.status} - ${response.statusText}`; try { response.text().then(text => { // Custom error messages. if ( text.includes( '"rest_post_invalid_id"' ) ) { alert( 'The Affiliate Link with this ID is not found. Was it deleted through the Affiliate Links > Manage page?' ); } else { // Default message. console.log(text); alert( `${message}\r\n\r\n${responseDetails}\r\n\r\n${text}` ); } }) } catch(e) { console.log(e); alert( `${message}\r\n\r\n${responseDetails}\r\n\r\n${e}` ); } return false; } }); }, };
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete