403Webshell
Server IP : 103.119.228.120  /  Your IP : 18.217.132.107
Web Server : Apache
System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64
User : nobody ( 99)
PHP Version : 5.6.40
Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime
MySQL : ON |  cURL : ON |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : ON |  Pkexec : ON
Directory :  /var/softaculous/plogger/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /var/softaculous/plogger/plogger.sql
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Database: `plg`
--

-- --------------------------------------------------------

--
-- Table structure for table `plogger_albums`
--

CREATE TABLE `plogger_albums` (
  `name` varchar(128) NOT NULL DEFAULT '',
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `description` varchar(255) NOT NULL DEFAULT '',
  `path` varchar(255) NOT NULL DEFAULT '',
  `parent_id` int(11) NOT NULL DEFAULT '0',
  `thumbnail_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `pid_idx` (`parent_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `plogger_albums`
--

INSERT INTO `plogger_albums` VALUES('Plogger Test Album', 1, 'Feel free to delete it', 'plogger-test-album', 1, 0);

-- --------------------------------------------------------

--
-- Table structure for table `plogger_collections`
--

CREATE TABLE `plogger_collections` (
  `name` varchar(128) NOT NULL DEFAULT '',
  `description` varchar(255) NOT NULL DEFAULT '',
  `path` varchar(255) NOT NULL DEFAULT '',
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `thumbnail_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `plogger_collections`
--

INSERT INTO `plogger_collections` VALUES('Plogger Test Collection', 'Feel free to delete it', 'plogger-test-collection', 1, 0);

-- --------------------------------------------------------

--
-- Table structure for table `plogger_comments`
--

CREATE TABLE `plogger_comments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL DEFAULT '0',
  `author` varchar(64) NOT NULL DEFAULT '',
  `email` varchar(64) NOT NULL DEFAULT '',
  `url` varchar(64) NOT NULL DEFAULT '',
  `date` datetime NOT NULL,
  `comment` longtext NOT NULL,
  `ip` char(64) DEFAULT NULL,
  `approved` tinyint(4) DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `pid_idx` (`parent_id`),
  KEY `approved_idx` (`approved`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `plogger_comments`
--


-- --------------------------------------------------------

--
-- Table structure for table `plogger_config`
--

CREATE TABLE `plogger_config` (
  `gallery_name` varchar(255) NOT NULL DEFAULT '',
  `gallery_url` varchar(255) NOT NULL DEFAULT '',
  `admin_username` varchar(64) NOT NULL DEFAULT '',
  `admin_email` varchar(50) NOT NULL DEFAULT '',
  `admin_password` varchar(64) NOT NULL DEFAULT '',
  `activation_key` varchar(64) NOT NULL DEFAULT '',
  `date_format` varchar(64) NOT NULL DEFAULT '',
  `compression` int(11) NOT NULL DEFAULT '75',
  `thumb_num` int(11) NOT NULL DEFAULT '0',
  `default_sortby` varchar(20) NOT NULL DEFAULT '',
  `default_sortdir` varchar(5) NOT NULL DEFAULT '',
  `album_sortby` varchar(20) NOT NULL DEFAULT '',
  `album_sortdir` varchar(5) NOT NULL DEFAULT '',
  `collection_sortby` varchar(20) NOT NULL DEFAULT '',
  `collection_sortdir` varchar(5) NOT NULL DEFAULT '',
  `allow_dl` smallint(1) NOT NULL DEFAULT '0',
  `allow_comments` smallint(1) NOT NULL DEFAULT '1',
  `allow_print` smallint(1) NOT NULL DEFAULT '1',
  `truncate` int(11) NOT NULL DEFAULT '0',
  `feed_num_entries` int(15) NOT NULL DEFAULT '15',
  `feed_title` text NOT NULL,
  `feed_content` tinyint(4) NOT NULL DEFAULT '1',
  `use_mod_rewrite` tinyint(4) NOT NULL DEFAULT '0',
  `comments_notify` tinyint(4) NOT NULL DEFAULT '1',
  `comments_moderate` tinyint(4) NOT NULL DEFAULT '0',
  `theme_dir` varchar(128) NOT NULL DEFAULT '',
  `thumb_nav_range` int(11) NOT NULL DEFAULT '0',
  `allow_fullpic` tinyint(4) DEFAULT '1',
  PRIMARY KEY (`thumb_num`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `plogger_config`
--

INSERT INTO `plogger_config` VALUES('[[site_name]]', '[[softurl]]/', '[[admin_username]]', '[[admin_email]]', '[[admin_pass]]', '', 'n.j.Y', 75, 20, '', '', '', '', '', '', 0, 1, 1, 0, 15, 'Plogger Photo Feed', 1, 0, 1, 0, 'default', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `plogger_pictures`
--

CREATE TABLE `plogger_pictures` (
  `path` varchar(255) NOT NULL DEFAULT '',
  `parent_album` int(11) NOT NULL DEFAULT '0',
  `parent_collection` int(11) NOT NULL DEFAULT '0',
  `caption` mediumtext NOT NULL,
  `description` text NOT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `date_submitted` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `EXIF_date_taken` varchar(64) NOT NULL DEFAULT '',
  `EXIF_camera` varchar(64) NOT NULL DEFAULT '',
  `EXIF_shutterspeed` varchar(64) NOT NULL DEFAULT '',
  `EXIF_focallength` varchar(64) NOT NULL DEFAULT '',
  `EXIF_flash` varchar(64) NOT NULL DEFAULT '',
  `EXIF_aperture` varchar(64) NOT NULL DEFAULT '',
  `EXIF_iso` varchar(64) NOT NULL DEFAULT '',
  `allow_comments` int(11) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `pa_idx` (`parent_album`),
  KEY `pc_idx` (`parent_collection`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `plogger_pictures`
--


-- --------------------------------------------------------

--
-- Table structure for table `plogger_thumbnail_config`
--

CREATE TABLE `plogger_thumbnail_config` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `update_timestamp` int(10) unsigned DEFAULT NULL,
  `max_size` int(10) unsigned DEFAULT NULL,
  `disabled` tinyint(4) DEFAULT '0',
  `resize_option` tinyint(4) DEFAULT '2',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;

--
-- Dumping data for table `plogger_thumbnail_config`
--

INSERT INTO `plogger_thumbnail_config` VALUES(1, 1096396500, 100, 0, 3);
INSERT INTO `plogger_thumbnail_config` VALUES(2, 1096396500, 500, 0, 2);
INSERT INTO `plogger_thumbnail_config` VALUES(3, 1096396500, 400, 0, 2);
INSERT INTO `plogger_thumbnail_config` VALUES(4, 1096396500, 60, 0, 3);

Youez - 2016 - github.com/yon3zu
LinuXploit