IP : 3.147.60.192Hostname : host45.registrar-servers.comKernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64Disable Function : None :) OS : Linux
PATH:
/
home/
../
var/
./
softaculous/
pie/
./
../
lime3/
../
lepton/
../
paste/
config.php/
/
<?php /* * $ID Project: Paste 2.0 - J.Samuel * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 3 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License in LIC.txt for more details. */
$currentversion = 2.2;
// Max paste size in MB. This value should always be below the value of // post_max_size in your PHP configuration settings (php.ini) or empty errors will occur. // The value we got on installation of Paste was: post_max_size = 8M // Otherwise, the maximum value that can be set is 4000 (4GB) $pastelimit = "0.5"; // 0.5 = 512 kilobytes, 1 = 1MB
// OAUTH (to enable, change to yes and edit) $enablefb = "no"; $enablegoog = "no";
// "CHANGE THIS" = Replace with your details // Facebook define('FB_APP_ID', 'CHANGE THIS'); // Your application ID, see https://developers.facebook.com/docs/apps/register define('FB_APP_SECRET', 'CHANGE THIS'); // What's your Secret key
// Google define('G_Client_ID', 'CHANGE THIS'); // Get a Client ID from https://console.developers.google.com/projectselector/apis/library define('G_Client_Secret', 'CHANGE THIS'); // What's your Secret key define('G_Redirect_Uri', '[[softurl]]/oauth/google.php'); // Leave this as is define('G_Application_Name', 'Paste'); // Make sure this matches the name of your application