-- phpMyAdmin SQL Dump
-- version 4.9.7
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Tempo de geração: 02-Mar-2022 às 21:36
-- Versão do servidor: 5.7.37
-- versão do PHP: 7.3.33

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";


/*!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 utf8mb4 */;

--
-- Banco de dados: `grupo3w_mkt`
--

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

--
-- Estrutura da tabela `email_addons`
--

CREATE TABLE `email_addons` (
  `addon_id` varchar(200) NOT NULL,
  `installed` int(11) DEFAULT '0',
  `configured` int(11) DEFAULT '0',
  `enabled` int(11) DEFAULT '0',
  `addon_version` varchar(10) DEFAULT '0',
  `settings` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Extraindo dados da tabela `email_addons`
--

INSERT INTO `email_addons` (`addon_id`, `installed`, `configured`, `enabled`, `addon_version`, `settings`) VALUES
('checkpermissions', 1, 1, 1, '1.0', 'a:0:{}'),
('dbcheck', 1, 1, 1, '1.0', 'a:0:{}'),
('dynamiccontenttags', 1, 1, 1, '1.0', 'a:0:{}'),
('emaileventlog', 1, 1, 1, '1.0', 'a:0:{}'),
('splittest', 1, 1, 1, '1.0', 'a:0:{}'),
('surveys', 1, 1, 1, '1.0', 'a:0:{}'),
('systemlog', 1, 1, 0, '1.0', 'a:1:{s:7:\"logsize\";i:1000;}'),
('updatecheck', 1, 1, 1, '1.0', 'a:0:{}');

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

--
-- Estrutura da tabela `email_autoresponders`
--

CREATE TABLE `email_autoresponders` (
  `autoresponderid` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `format` char(1) DEFAULT NULL,
  `textbody` longtext,
  `htmlbody` longtext,
  `createdate` int(11) DEFAULT '0',
  `active` int(11) DEFAULT '0',
  `pause` int(11) DEFAULT '0',
  `hoursaftersubscription` int(11) DEFAULT '0',
  `ownerid` int(11) NOT NULL DEFAULT '0',
  `searchcriteria` mediumtext,
  `listid` int(11) DEFAULT '0',
  `tracklinks` char(1) DEFAULT '1',
  `trackopens` char(1) DEFAULT '1',
  `multipart` char(1) DEFAULT '1',
  `queueid` int(11) DEFAULT '0',
  `sendfromname` varchar(255) DEFAULT NULL,
  `sendfromemail` varchar(255) DEFAULT NULL,
  `replytoemail` varchar(255) DEFAULT NULL,
  `bounceemail` varchar(255) DEFAULT NULL,
  `charset` varchar(255) DEFAULT NULL,
  `embedimages` char(1) DEFAULT '0',
  `to_firstname` int(11) DEFAULT '0',
  `to_lastname` int(11) DEFAULT '0',
  `autorespondersize` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_banned_emails`
--

CREATE TABLE `email_banned_emails` (
  `banid` int(11) NOT NULL,
  `emailaddress` varchar(255) DEFAULT NULL,
  `list` varchar(10) DEFAULT NULL,
  `bandate` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_config_settings`
--

CREATE TABLE `email_config_settings` (
  `area` varchar(255) DEFAULT NULL,
  `areavalue` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Extraindo dados da tabela `email_config_settings`
--

INSERT INTO `email_config_settings` (`area`, `areavalue`) VALUES
('SMTP_SERVER', ''),
('SMTP_USERNAME', ''),
('SMTP_PASSWORD', ''),
('SMTP_PORT', '25'),
('BOUNCE_ADDRESS', ''),
('BOUNCE_SERVER', ''),
('BOUNCE_USERNAME', ''),
('BOUNCE_PASSWORD', ''),
('BOUNCE_IMAP', '0'),
('BOUNCE_EXTRASETTINGS', ''),
('BOUNCE_AGREEDELETE', ''),
('BOUNCE_AGREEDELETEALL', ''),
('HTMLFOOTER', ''),
('TEXTFOOTER', ''),
('FORCE_UNSUBLINK', ''),
('MAXHOURLYRATE', ''),
('MAXOVERSIZE', ''),
('CRON_ENABLED', ''),
('DEFAULTCHARSET', 'UTF-8'),
('EMAIL_ADDRESS', 'suporte@grupo3w.com.br'),
('IPTRACKING', '1'),
('USEMULTIPLEUNSUBSCRIBE', ''),
('CONTACTCANMODIFYEMAIL', ''),
('MAX_IMAGEWIDTH', '700'),
('MAX_IMAGEHEIGHT', '400'),
('ALLOW_EMBEDIMAGES', '1'),
('DEFAULT_EMBEDIMAGES', ''),
('ALLOW_ATTACHMENTS', ''),
('ATTACHMENT_SIZE', '2048'),
('CRON_SEND', '5'),
('CRON_AUTORESPONDER', '10'),
('CRON_BOUNCE', '60'),
('CRON_TRIGGEREMAILS_S', ''),
('CRON_TRIGGEREMAILS_P', ''),
('CRON_MAINTENANCE', ''),
('EMAILSIZE_WARNING', '500'),
('EMAILSIZE_MAXIMUM', '2048'),
('SYSTEM_MESSAGE', ''),
('SYSTEM_DATABASE_VERSION', '5.0.90-community'),
('SEND_TEST_MODE', ''),
('RESEND_MAXIMUM', '3'),
('SHOW_SMTPCOM_OPTION', ''),
('SECURITY_WRONG_LOGIN_WAIT', ''),
('SECURITY_WRONG_LOGIN_THRESHOLD_COUNT', ''),
('SECURITY_WRONG_LOGIN_THRESHOLD_DURATION', ''),
('SECURITY_BAN_DURATION', ''),
('CREDIT_INCLUDE_AUTORESPONDERS', '1'),
('CREDIT_INCLUDE_TRIGGERS', '1'),
('CREDIT_WARNINGS', '0'),
('DEFAULT_EMAILSIZE', '');

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

--
-- Estrutura da tabela `email_customfields`
--

CREATE TABLE `email_customfields` (
  `fieldid` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `fieldtype` varchar(100) DEFAULT NULL,
  `defaultvalue` varchar(255) DEFAULT NULL,
  `required` char(1) DEFAULT '0',
  `fieldsettings` mediumtext,
  `createdate` int(11) DEFAULT '0',
  `ownerid` int(11) DEFAULT '0',
  `isglobal` char(1) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Extraindo dados da tabela `email_customfields`
--

INSERT INTO `email_customfields` (`fieldid`, `name`, `fieldtype`, `defaultvalue`, `required`, `fieldsettings`, `createdate`, `ownerid`, `isglobal`) VALUES
(1, 'Title', 'dropdown', '', '0', 'a:2:{s:3:\"Key\";a:5:{i:0;s:2:\"Ms\";i:1;s:3:\"Mrs\";i:2;s:2:\"Mr\";i:3;s:2:\"Dr\";i:4;s:4:\"Prof\";}s:5:\"Value\";a:5:{i:0;s:2:\"Ms\";i:1;s:3:\"Mrs\";i:2;s:2:\"Mr\";i:3;s:2:\"Dr\";i:4;s:4:\"Prof\";}}', 1274898515, 1, '1'),
(2, 'First Name', 'text', '', '0', 'a:3:{s:11:\"FieldLength\";s:2:\"50\";s:9:\"MinLength\";s:1:\"0\";s:9:\"MaxLength\";s:1:\"0\";}', 1274898515, 1, '1'),
(3, 'Last Name', 'text', '', '0', 'a:3:{s:11:\"FieldLength\";s:2:\"50\";s:9:\"MinLength\";s:1:\"0\";s:9:\"MaxLength\";s:1:\"0\";}', 1274898515, 1, '1'),
(4, 'Phone', 'text', '', '0', 'a:3:{s:11:\"FieldLength\";s:2:\"50\";s:9:\"MinLength\";s:1:\"0\";s:9:\"MaxLength\";s:1:\"0\";}', 1274898515, 1, '1'),
(5, 'Mobile', 'text', '', '0', 'a:3:{s:11:\"FieldLength\";s:2:\"50\";s:9:\"MinLength\";s:1:\"0\";s:9:\"MaxLength\";s:1:\"0\";}', 1274898515, 1, '1'),
(6, 'Fax', 'text', '', '0', 'a:3:{s:11:\"FieldLength\";s:2:\"50\";s:9:\"MinLength\";s:1:\"0\";s:9:\"MaxLength\";s:1:\"0\";}', 1274898515, 1, '1'),
(7, 'Birth Date', 'date', '', '0', 'a:1:{s:3:\"Key\";a:5:{i:0;s:3:\"day\";i:1;s:5:\"month\";i:2;s:4:\"year\";i:3;i:1910;i:4;s:4:\"2010\";}}', 1274898515, 1, '1'),
(8, 'City', 'text', '', '0', 'a:3:{s:11:\"FieldLength\";s:2:\"50\";s:9:\"MinLength\";s:1:\"0\";s:9:\"MaxLength\";s:1:\"0\";}', 1274898515, 1, '1'),
(9, 'State', 'text', '', '0', 'a:3:{s:11:\"FieldLength\";s:2:\"50\";s:9:\"MinLength\";s:1:\"0\";s:9:\"MaxLength\";s:1:\"0\";}', 1274898515, 1, '1'),
(10, 'Postal/Zip Code', 'text', '', '0', 'a:3:{s:11:\"FieldLength\";s:2:\"50\";s:9:\"MinLength\";s:1:\"0\";s:9:\"MaxLength\";s:1:\"0\";}', 1274898515, 1, '1'),
(11, 'Country', 'dropdown', '', '0', 'a:2:{s:3:\"Key\";a:225:{i:0;s:3:\"AFG\";i:1;s:3:\"ALB\";i:2;s:3:\"DZA\";i:3;s:3:\"ASM\";i:4;s:3:\"AND\";i:5;s:3:\"AGO\";i:6;s:3:\"AIA\";i:7;s:3:\"ATG\";i:8;s:3:\"ARG\";i:9;s:3:\"ARM\";i:10;s:3:\"ABW\";i:11;s:3:\"AUS\";i:12;s:3:\"AUT\";i:13;s:3:\"AZE\";i:14;s:3:\"BHS\";i:15;s:3:\"BHR\";i:16;s:3:\"BGD\";i:17;s:3:\"BRB\";i:18;s:3:\"BLR\";i:19;s:3:\"BEL\";i:20;s:3:\"BLZ\";i:21;s:3:\"BEN\";i:22;s:3:\"BMU\";i:23;s:3:\"BTN\";i:24;s:3:\"BOL\";i:25;s:3:\"BIH\";i:26;s:3:\"BWA\";i:27;s:3:\"NUL\";i:28;s:3:\"BRA\";i:29;s:3:\"BRN\";i:30;s:3:\"BGR\";i:31;s:3:\"BFA\";i:32;s:3:\"BDI\";i:33;s:3:\"KHM\";i:34;s:3:\"CMR\";i:35;s:3:\"CAN\";i:36;s:3:\"CPV\";i:37;s:3:\"CYM\";i:38;s:3:\"CAF\";i:39;s:3:\"TCD\";i:40;s:3:\"CHL\";i:41;s:3:\"CHN\";i:42;s:3:\"COL\";i:43;s:3:\"COM\";i:44;s:3:\"COG\";i:45;s:3:\"COD\";i:46;s:3:\"COK\";i:47;s:3:\"CRI\";i:48;s:3:\"HRV\";i:49;s:3:\"CUB\";i:50;s:3:\"CYP\";i:51;s:3:\"CZE\";i:52;s:3:\"DNK\";i:53;s:3:\"DJI\";i:54;s:3:\"DMA\";i:55;s:3:\"DOM\";i:56;s:3:\"ECU\";i:57;s:3:\"EGY\";i:58;s:3:\"SLV\";i:59;s:3:\"GNQ\";i:60;s:3:\"ERI\";i:61;s:3:\"EST\";i:62;s:3:\"ETH\";i:63;s:3:\"FLK\";i:64;s:3:\"FRO\";i:65;s:3:\"FJI\";i:66;s:3:\"FIN\";i:67;s:3:\"FRA\";i:68;s:3:\"GUF\";i:69;s:3:\"PYF\";i:70;s:3:\"GAB\";i:71;s:3:\"GMB\";i:72;s:3:\"GEO\";i:73;s:3:\"DEU\";i:74;s:3:\"GHA\";i:75;s:3:\"GIB\";i:76;s:3:\"GRC\";i:77;s:3:\"GRL\";i:78;s:3:\"GRD\";i:79;s:3:\"GLP\";i:80;s:3:\"GUM\";i:81;s:3:\"GTM\";i:82;s:3:\"GIN\";i:83;s:3:\"GNB\";i:84;s:3:\"GUY\";i:85;s:3:\"HTI\";i:86;s:3:\"VAT\";i:87;s:3:\"HND\";i:88;s:3:\"HKG\";i:89;s:3:\"HUN\";i:90;s:3:\"ISL\";i:91;s:3:\"IND\";i:92;s:3:\"IDN\";i:93;s:3:\"IRN\";i:94;s:3:\"IRQ\";i:95;s:3:\"IRL\";i:96;s:3:\"ISR\";i:97;s:3:\"ITA\";i:98;s:3:\"JAM\";i:99;s:3:\"JPN\";i:100;s:3:\"JOR\";i:101;s:3:\"KAZ\";i:102;s:3:\"KEN\";i:103;s:3:\"KIR\";i:104;s:3:\"KOR\";i:105;s:3:\"KWT\";i:106;s:3:\"KGZ\";i:107;s:3:\"LVA\";i:108;s:3:\"LBN\";i:109;s:3:\"LSO\";i:110;s:3:\"LBR\";i:111;s:3:\"LBY\";i:112;s:3:\"LIE\";i:113;s:3:\"LTU\";i:114;s:3:\"LUX\";i:115;s:3:\"MAC\";i:116;s:3:\"MKD\";i:117;s:3:\"MDG\";i:118;s:3:\"MWI\";i:119;s:3:\"MYS\";i:120;s:3:\"MDV\";i:121;s:3:\"MLI\";i:122;s:3:\"MLT\";i:123;s:3:\"MHL\";i:124;s:3:\"MTQ\";i:125;s:3:\"MRT\";i:126;s:3:\"MUS\";i:127;s:3:\"MEX\";i:128;s:3:\"FSM\";i:129;s:3:\"MDA\";i:130;s:3:\"MCO\";i:131;s:3:\"MNG\";i:132;s:3:\"MSR\";i:133;s:3:\"MAR\";i:134;s:3:\"MOZ\";i:135;s:3:\"MMR\";i:136;s:3:\"NAM\";i:137;s:3:\"NRU\";i:138;s:3:\"NPL\";i:139;s:3:\"NLD\";i:140;s:3:\"ANT\";i:141;s:3:\"NCL\";i:142;s:3:\"NZL\";i:143;s:3:\"NIC\";i:144;s:3:\"NER\";i:145;s:3:\"NGA\";i:146;s:3:\"NIU\";i:147;s:3:\"NFK\";i:148;s:3:\"MNP\";i:149;s:3:\"NOR\";i:150;s:3:\"OMN\";i:151;s:3:\"PAK\";i:152;s:3:\"PLW\";i:153;s:3:\"PAN\";i:154;s:3:\"PNG\";i:155;s:3:\"PRY\";i:156;s:3:\"PER\";i:157;s:3:\"PHL\";i:158;s:3:\"PCN\";i:159;s:3:\"POL\";i:160;s:3:\"PRT\";i:161;s:3:\"PRI\";i:162;s:3:\"QAT\";i:163;s:3:\"REU\";i:164;s:3:\"ROM\";i:165;s:3:\"RUS\";i:166;s:3:\"RWA\";i:167;s:3:\"SHN\";i:168;s:3:\"KNA\";i:169;s:3:\"LCA\";i:170;s:3:\"SPM\";i:171;s:3:\"VCT\";i:172;s:3:\"WSM\";i:173;s:3:\"SMR\";i:174;s:3:\"STP\";i:175;s:3:\"SAU\";i:176;s:3:\"SEN\";i:177;s:3:\"SRB\";i:178;s:3:\"SYC\";i:179;s:3:\"SLE\";i:180;s:3:\"SGP\";i:181;s:3:\"SVK\";i:182;s:3:\"SVN\";i:183;s:3:\"SLB\";i:184;s:3:\"SOM\";i:185;s:3:\"ZAF\";i:186;s:3:\"ESP\";i:187;s:3:\"LKA\";i:188;s:3:\"SDN\";i:189;s:3:\"SUR\";i:190;s:3:\"SJM\";i:191;s:3:\"SWZ\";i:192;s:3:\"SWE\";i:193;s:3:\"CHE\";i:194;s:3:\"SYR\";i:195;s:3:\"TWN\";i:196;s:3:\"TJK\";i:197;s:3:\"TZA\";i:198;s:3:\"THA\";i:199;s:3:\"TGO\";i:200;s:3:\"TKL\";i:201;s:3:\"TON\";i:202;s:3:\"TTO\";i:203;s:3:\"TUN\";i:204;s:3:\"TUR\";i:205;s:3:\"TKM\";i:206;s:3:\"TCA\";i:207;s:3:\"TUV\";i:208;s:3:\"UGA\";i:209;s:3:\"UKR\";i:210;s:3:\"ARE\";i:211;s:3:\"GBR\";i:212;s:3:\"USA\";i:213;s:3:\"URY\";i:214;s:3:\"UZB\";i:215;s:3:\"VUT\";i:216;s:3:\"VEN\";i:217;s:3:\"VNM\";i:218;s:3:\"VGB\";i:219;s:3:\"VIR\";i:220;s:3:\"WLF\";i:221;s:3:\"ESH\";i:222;s:3:\"YEM\";i:223;s:3:\"ZMB\";i:224;s:3:\"ZWE\";}s:5:\"Value\";a:225:{i:0;s:11:\"Afghanistan\";i:1;s:7:\"Albania\";i:2;s:7:\"Algeria\";i:3;s:14:\"American Samoa\";i:4;s:7:\"Andorra\";i:5;s:6:\"Angola\";i:6;s:8:\"Anguilla\";i:7;s:19:\"Antigua and Barbuda\";i:8;s:9:\"Argentina\";i:9;s:7:\"Armenia\";i:10;s:5:\"Aruba\";i:11;s:9:\"Australia\";i:12;s:7:\"Austria\";i:13;s:10:\"Azerbaijan\";i:14;s:7:\"Bahamas\";i:15;s:7:\"Bahrain\";i:16;s:10:\"Bangladesh\";i:17;s:8:\"Barbados\";i:18;s:7:\"Belarus\";i:19;s:7:\"Belgium\";i:20;s:6:\"Belize\";i:21;s:5:\"Benin\";i:22;s:7:\"Bermuda\";i:23;s:6:\"Bhutan\";i:24;s:7:\"Bolivia\";i:25;s:22:\"Bosnia and Herzegovina\";i:26;s:8:\"Botswana\";i:27;s:11:\"Timor-Leste\";i:28;s:6:\"Brazil\";i:29;s:17:\"Brunei Darussalam\";i:30;s:8:\"Bulgaria\";i:31;s:12:\"Burkina Faso\";i:32;s:7:\"Burundi\";i:33;s:8:\"Cambodia\";i:34;s:8:\"Cameroon\";i:35;s:6:\"Canada\";i:36;s:10:\"Cape Verde\";i:37;s:14:\"Cayman Islands\";i:38;s:24:\"Central African Republic\";i:39;s:4:\"Chad\";i:40;s:5:\"Chile\";i:41;s:5:\"China\";i:42;s:8:\"Colombia\";i:43;s:7:\"Comoros\";i:44;s:5:\"Congo\";i:45;s:37:\"Congo, the Democratic Republic of the\";i:46;s:12:\"Cook Islands\";i:47;s:10:\"Costa Rica\";i:48;s:7:\"Croatia\";i:49;s:4:\"Cuba\";i:50;s:6:\"Cyprus\";i:51;s:14:\"Czech Republic\";i:52;s:7:\"Denmark\";i:53;s:8:\"Djibouti\";i:54;s:8:\"Dominica\";i:55;s:18:\"Dominican Republic\";i:56;s:7:\"Ecuador\";i:57;s:5:\"Egypt\";i:58;s:11:\"El Salvador\";i:59;s:17:\"Equatorial Guinea\";i:60;s:7:\"Eritrea\";i:61;s:7:\"Estonia\";i:62;s:8:\"Ethiopia\";i:63;s:27:\"Falkland Islands (Malvinas)\";i:64;s:13:\"Faroe Islands\";i:65;s:4:\"Fiji\";i:66;s:7:\"Finland\";i:67;s:6:\"France\";i:68;s:13:\"French Guiana\";i:69;s:16:\"French Polynesia\";i:70;s:5:\"Gabon\";i:71;s:6:\"Gambia\";i:72;s:7:\"Georgia\";i:73;s:7:\"Germany\";i:74;s:5:\"Ghana\";i:75;s:9:\"Gibraltar\";i:76;s:6:\"Greece\";i:77;s:9:\"Greenland\";i:78;s:7:\"Grenada\";i:79;s:10:\"Guadeloupe\";i:80;s:4:\"Guam\";i:81;s:9:\"Guatemala\";i:82;s:6:\"Guinea\";i:83;s:13:\"Guinea-Bissau\";i:84;s:6:\"Guyana\";i:85;s:5:\"Haiti\";i:86;s:29:\"Holy See (Vatican City State)\";i:87;s:8:\"Honduras\";i:88;s:9:\"Hong Kong\";i:89;s:7:\"Hungary\";i:90;s:7:\"Iceland\";i:91;s:5:\"India\";i:92;s:9:\"Indonesia\";i:93;s:25:\"Iran, Islamic Republic of\";i:94;s:4:\"Iraq\";i:95;s:7:\"Ireland\";i:96;s:6:\"Israel\";i:97;s:5:\"Italy\";i:98;s:7:\"Jamaica\";i:99;s:5:\"Japan\";i:100;s:6:\"Jordan\";i:101;s:10:\"Kazakhstan\";i:102;s:5:\"Kenya\";i:103;s:8:\"Kiribati\";i:104;s:18:\"Korea, Republic of\";i:105;s:6:\"Kuwait\";i:106;s:10:\"Kyrgyzstan\";i:107;s:6:\"Latvia\";i:108;s:7:\"Lebanon\";i:109;s:7:\"Lesotho\";i:110;s:7:\"Liberia\";i:111;s:22:\"Libyan Arab Jamahiriya\";i:112;s:13:\"Liechtenstein\";i:113;s:9:\"Lithuania\";i:114;s:10:\"Luxembourg\";i:115;s:5:\"Macao\";i:116;s:42:\"Macedonia, the Former Yugoslav Republic of\";i:117;s:10:\"Madagascar\";i:118;s:6:\"Malawi\";i:119;s:8:\"Malaysia\";i:120;s:8:\"Maldives\";i:121;s:4:\"Mali\";i:122;s:5:\"Malta\";i:123;s:16:\"Marshall Islands\";i:124;s:10:\"Martinique\";i:125;s:10:\"Mauritania\";i:126;s:9:\"Mauritius\";i:127;s:6:\"Mexico\";i:128;s:31:\"Micronesia, Federated States of\";i:129;s:20:\"Moldova, Republic of\";i:130;s:6:\"Monaco\";i:131;s:8:\"Mongolia\";i:132;s:10:\"Montserrat\";i:133;s:7:\"Morocco\";i:134;s:10:\"Mozambique\";i:135;s:7:\"Myanmar\";i:136;s:7:\"Namibia\";i:137;s:5:\"Nauru\";i:138;s:5:\"Nepal\";i:139;s:11:\"Netherlands\";i:140;s:20:\"Netherlands Antilles\";i:141;s:13:\"New Caledonia\";i:142;s:11:\"New Zealand\";i:143;s:9:\"Nicaragua\";i:144;s:5:\"Niger\";i:145;s:7:\"Nigeria\";i:146;s:4:\"Niue\";i:147;s:14:\"Norfolk Island\";i:148;s:24:\"Northern Mariana Islands\";i:149;s:6:\"Norway\";i:150;s:4:\"Oman\";i:151;s:8:\"Pakistan\";i:152;s:5:\"Palau\";i:153;s:6:\"Panama\";i:154;s:16:\"Papua New Guinea\";i:155;s:8:\"Paraguay\";i:156;s:4:\"Peru\";i:157;s:11:\"Philippines\";i:158;s:8:\"Pitcairn\";i:159;s:6:\"Poland\";i:160;s:8:\"Portugal\";i:161;s:11:\"Puerto Rico\";i:162;s:5:\"Qatar\";i:163;s:7:\"Reunion\";i:164;s:7:\"Romania\";i:165;s:18:\"Russian Federation\";i:166;s:6:\"Rwanda\";i:167;s:12:\"Saint Helena\";i:168;s:21:\"Saint Kitts and Nevis\";i:169;s:11:\"Saint Lucia\";i:170;s:25:\"Saint Pierre and Miquelon\";i:171;s:32:\"Saint Vincent and the Grenadines\";i:172;s:5:\"Samoa\";i:173;s:10:\"San Marino\";i:174;s:21:\"Sao Tome and Principe\";i:175;s:12:\"Saudi Arabia\";i:176;s:7:\"Senegal\";i:177;s:6:\"Serbia\";i:178;s:10:\"Seychelles\";i:179;s:12:\"Sierra Leone\";i:180;s:9:\"Singapore\";i:181;s:8:\"Slovakia\";i:182;s:8:\"Slovenia\";i:183;s:15:\"Solomon Islands\";i:184;s:7:\"Somalia\";i:185;s:12:\"South Africa\";i:186;s:5:\"Spain\";i:187;s:9:\"Sri Lanka\";i:188;s:5:\"Sudan\";i:189;s:8:\"Suriname\";i:190;s:22:\"Svalbard and Jan Mayen\";i:191;s:9:\"Swaziland\";i:192;s:6:\"Sweden\";i:193;s:11:\"Switzerland\";i:194;s:20:\"Syrian Arab Republic\";i:195;s:25:\"Taiwan, Province of China\";i:196;s:10:\"Tajikistan\";i:197;s:28:\"Tanzania, United Republic of\";i:198;s:8:\"Thailand\";i:199;s:4:\"Togo\";i:200;s:7:\"Tokelau\";i:201;s:5:\"Tonga\";i:202;s:19:\"Trinidad and Tobago\";i:203;s:7:\"Tunisia\";i:204;s:6:\"Turkey\";i:205;s:12:\"Turkmenistan\";i:206;s:24:\"Turks and Caicos Islands\";i:207;s:6:\"Tuvalu\";i:208;s:6:\"Uganda\";i:209;s:7:\"Ukraine\";i:210;s:20:\"United Arab Emirates\";i:211;s:14:\"United Kingdom\";i:212;s:13:\"United States\";i:213;s:7:\"Uruguay\";i:214;s:10:\"Uzbekistan\";i:215;s:7:\"Vanuatu\";i:216;s:9:\"Venezuela\";i:217;s:8:\"Viet Nam\";i:218;s:23:\"Virgin Islands, British\";i:219;s:20:\"Virgin Islands, U.s.\";i:220;s:17:\"Wallis and Futuna\";i:221;s:14:\"Western Sahara\";i:222;s:5:\"Yemen\";i:223;s:6:\"Zambia\";i:224;s:8:\"Zimbabwe\";}}', 1274898515, 1, '1');

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

--
-- Estrutura da tabela `email_customfield_lists`
--

CREATE TABLE `email_customfield_lists` (
  `cflid` int(11) NOT NULL,
  `fieldid` int(11) NOT NULL DEFAULT '0',
  `listid` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_dynamic_content_block`
--

CREATE TABLE `email_dynamic_content_block` (
  `blockid` int(11) UNSIGNED NOT NULL,
  `tagid` int(11) UNSIGNED NOT NULL,
  `name` varchar(255) NOT NULL,
  `rules` longtext NOT NULL,
  `activated` char(1) DEFAULT NULL,
  `sortorder` int(4) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_dynamic_content_tags`
--

CREATE TABLE `email_dynamic_content_tags` (
  `tagid` int(11) UNSIGNED NOT NULL,
  `name` varchar(255) NOT NULL,
  `createdate` int(11) UNSIGNED NOT NULL,
  `ownerid` int(11) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_folders`
--

CREATE TABLE `email_folders` (
  `folderid` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `type` char(1) DEFAULT NULL,
  `createdate` int(11) DEFAULT '0',
  `ownerid` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_folder_item`
--

CREATE TABLE `email_folder_item` (
  `folderid` int(11) NOT NULL,
  `itemid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_folder_user`
--

CREATE TABLE `email_folder_user` (
  `folderid` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `expanded` char(1) NOT NULL DEFAULT '1',
  `ordering` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_forms`
--

CREATE TABLE `email_forms` (
  `formid` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `design` varchar(255) DEFAULT NULL,
  `formhtml` longtext,
  `chooseformat` varchar(2) DEFAULT NULL,
  `changeformat` varchar(1) DEFAULT '0',
  `sendthanks` varchar(1) DEFAULT '0',
  `requireconfirm` varchar(1) DEFAULT '0',
  `ownerid` int(11) DEFAULT '0',
  `formtype` char(1) DEFAULT NULL,
  `createdate` int(11) DEFAULT '0',
  `contactform` varchar(1) DEFAULT '0',
  `usecaptcha` varchar(1) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_form_customfields`
--

CREATE TABLE `email_form_customfields` (
  `formid` int(11) DEFAULT '0',
  `fieldid` varchar(10) DEFAULT '0',
  `fieldorder` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_form_lists`
--

CREATE TABLE `email_form_lists` (
  `formid` int(11) DEFAULT '0',
  `listid` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_form_pages`
--

CREATE TABLE `email_form_pages` (
  `pageid` int(11) NOT NULL,
  `formid` int(11) DEFAULT '0',
  `pagetype` varchar(100) DEFAULT NULL,
  `html` longtext,
  `url` varchar(255) DEFAULT NULL,
  `sendfromname` varchar(255) DEFAULT NULL,
  `sendfromemail` varchar(255) DEFAULT NULL,
  `replytoemail` varchar(255) DEFAULT NULL,
  `bounceemail` varchar(255) DEFAULT NULL,
  `emailsubject` varchar(255) DEFAULT NULL,
  `emailhtml` longtext,
  `emailtext` longtext
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_jobs`
--

CREATE TABLE `email_jobs` (
  `jobid` int(11) NOT NULL,
  `jobtype` varchar(255) DEFAULT NULL,
  `jobstatus` char(1) DEFAULT NULL,
  `jobtime` int(11) DEFAULT '0',
  `jobdetails` text,
  `fkid` int(11) DEFAULT '0',
  `lastupdatetime` int(11) DEFAULT '0',
  `fktype` varchar(255) DEFAULT NULL,
  `queueid` int(11) DEFAULT '0',
  `ownerid` int(11) DEFAULT '0',
  `approved` int(11) DEFAULT '0',
  `authorisedtosend` int(11) DEFAULT '0',
  `resendcount` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_jobs_lists`
--

CREATE TABLE `email_jobs_lists` (
  `jobid` int(11) DEFAULT '0',
  `listid` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_links`
--

CREATE TABLE `email_links` (
  `linkid` int(11) NOT NULL,
  `url` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_lists`
--

CREATE TABLE `email_lists` (
  `listid` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `ownername` varchar(255) DEFAULT NULL,
  `owneremail` varchar(100) DEFAULT NULL,
  `bounceemail` varchar(100) DEFAULT NULL,
  `replytoemail` varchar(100) DEFAULT NULL,
  `bounceserver` varchar(100) DEFAULT NULL,
  `bounceusername` varchar(100) DEFAULT NULL,
  `bouncepassword` varchar(100) DEFAULT NULL,
  `extramailsettings` varchar(100) DEFAULT NULL,
  `companyname` varchar(255) DEFAULT NULL,
  `companyaddress` varchar(255) DEFAULT NULL,
  `companyphone` varchar(20) DEFAULT NULL,
  `format` char(1) DEFAULT NULL,
  `notifyowner` char(1) DEFAULT '0',
  `imapaccount` char(1) DEFAULT '0',
  `createdate` int(11) DEFAULT '0',
  `subscribecount` int(11) DEFAULT '0',
  `unsubscribecount` int(11) DEFAULT '0',
  `bouncecount` int(11) DEFAULT '0',
  `processbounce` char(1) DEFAULT '0',
  `agreedelete` char(1) DEFAULT '0',
  `agreedeleteall` char(1) DEFAULT '0',
  `visiblefields` text NOT NULL,
  `ownerid` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_list_subscribers`
--

CREATE TABLE `email_list_subscribers` (
  `subscriberid` int(11) NOT NULL,
  `listid` int(11) NOT NULL DEFAULT '0',
  `emailaddress` varchar(200) DEFAULT NULL,
  `domainname` varchar(100) DEFAULT NULL,
  `format` char(1) DEFAULT NULL,
  `confirmed` char(1) DEFAULT '0',
  `confirmcode` varchar(32) DEFAULT NULL,
  `requestdate` int(11) DEFAULT '0',
  `requestip` varchar(20) DEFAULT NULL,
  `confirmdate` int(11) DEFAULT '0',
  `confirmip` varchar(20) DEFAULT NULL,
  `subscribedate` int(11) DEFAULT '0',
  `bounced` int(11) DEFAULT '0',
  `unsubscribed` int(11) DEFAULT '0',
  `unsubscribeconfirmed` char(1) DEFAULT '0',
  `formid` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_list_subscribers_unsubscribe`
--

CREATE TABLE `email_list_subscribers_unsubscribe` (
  `subscriberid` int(11) NOT NULL DEFAULT '0',
  `unsubscribetime` int(11) NOT NULL DEFAULT '0',
  `unsubscribeip` varchar(20) DEFAULT NULL,
  `unsubscriberequesttime` int(11) DEFAULT '0',
  `unsubscriberequestip` varchar(20) DEFAULT NULL,
  `listid` int(11) NOT NULL DEFAULT '0',
  `statid` int(11) DEFAULT '0',
  `unsubscribearea` varchar(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_list_subscriber_bounces`
--

CREATE TABLE `email_list_subscriber_bounces` (
  `bounceid` int(11) NOT NULL,
  `subscriberid` int(11) DEFAULT '0',
  `statid` int(11) DEFAULT '0',
  `listid` int(11) DEFAULT '0',
  `bouncetime` int(11) DEFAULT '0',
  `bouncetype` varchar(255) DEFAULT NULL,
  `bouncerule` varchar(255) DEFAULT NULL,
  `bouncemessage` longtext
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_list_subscriber_events`
--

CREATE TABLE `email_list_subscriber_events` (
  `eventid` int(11) NOT NULL,
  `subscriberid` int(11) NOT NULL,
  `listid` int(11) NOT NULL,
  `eventtype` text NOT NULL,
  `eventsubject` text NOT NULL,
  `eventdate` int(11) NOT NULL,
  `lastupdate` int(11) NOT NULL,
  `eventownerid` int(11) NOT NULL,
  `eventnotes` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_list_tags`
--

CREATE TABLE `email_list_tags` (
  `tagid` int(11) UNSIGNED NOT NULL,
  `listid` int(11) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_login_attempt`
--

CREATE TABLE `email_login_attempt` (
  `timestamp` int(11) NOT NULL,
  `ipaddress` varchar(15) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_login_banned_ip`
--

CREATE TABLE `email_login_banned_ip` (
  `ipaddress` varchar(15) NOT NULL,
  `bantime` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_log_system_administrator`
--

CREATE TABLE `email_log_system_administrator` (
  `logid` int(11) NOT NULL,
  `loguserid` int(11) NOT NULL,
  `logip` varchar(30) NOT NULL DEFAULT '',
  `logdate` int(11) NOT NULL DEFAULT '0',
  `logtodo` varchar(100) NOT NULL DEFAULT '',
  `logdata` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_log_system_system`
--

CREATE TABLE `email_log_system_system` (
  `logid` int(11) NOT NULL,
  `logtype` varchar(20) DEFAULT NULL,
  `logmodule` varchar(100) NOT NULL DEFAULT '',
  `logseverity` char(1) NOT NULL DEFAULT '4',
  `logsummary` varchar(250) NOT NULL,
  `logmsg` text NOT NULL,
  `logdate` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Extraindo dados da tabela `email_log_system_system`
--

INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(1, 'php', '', '3', 'require_once(/home/grupo3w/public_html/mkt/admin/com/language/default/language.php) [<a href=\'function.require-once\'>function.require-once</a>]: failed to open stream: No such file or directory', 'require_once(/home/grupo3w/public_html/mkt/admin/com/language/default/language.php) [<a href=\'function.require-once\'>function.require-once</a>]: failed to open stream: No such file or directory in /home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php at 8<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">8</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">8</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::init</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">321</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::init</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">82</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1274899713),
(2, 'php', '', '2', 'Trying to get property of non-object', 'Trying to get property of non-object in /home/grupo3w/public_html/mkt/admin/functions/api/user.php at 1169<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/api/user.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1169</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/login.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">89</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">User_API->Save</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">543</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Login->Process</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">82</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417861151),
(3, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(4, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(5, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(6, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(7, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(8, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(9, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(10, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(11, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(12, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(13, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(14, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(15, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(16, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(17, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(18, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(19, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(20, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865134),
(21, 'php', '', '2', 'Constant LNG_DeleteNewsletterPrompt already defined', 'Constant LNG_DeleteNewsletterPrompt already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/newsletters.php at 207<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/newsletters.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">207</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/remote.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">43</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/remote.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">539</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">RemoteUpload->RemoteUpload</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/remote.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">19</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(22, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(23, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(24, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(25, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(26, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(27, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(28, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(29, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(30, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(31, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(32, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(33, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(34, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(35, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(36, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(37, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(38, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(39, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(40, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(41, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(42, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(43, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(44, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(45, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(46, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(47, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(48, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(49, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(50, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(51, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(52, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(53, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(54, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(55, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(56, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(57, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(58, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(59, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(60, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(61, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(62, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(63, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(64, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(65, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(66, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(67, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(68, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(69, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(70, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(71, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(72, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(73, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(74, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(75, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(76, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(77, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(78, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(79, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(80, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(81, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(82, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(83, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(84, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(85, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(86, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(87, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(88, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(89, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(90, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(91, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(92, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(93, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865135),
(94, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(95, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(96, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(97, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(98, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(99, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(100, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(101, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(102, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(103, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(104, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(105, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(106, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(107, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(108, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(109, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(110, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(111, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865136),
(112, 'php', '', '2', 'Constant LNG_ApplicationSettings_Heading already defined', 'Constant LNG_ApplicationSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865148),
(113, 'php', '', '2', 'Constant LNG_EmailSettings_Heading already defined', 'Constant LNG_EmailSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865148),
(114, 'php', '', '2', 'Constant LNG_CronSettings_Heading already defined', 'Constant LNG_CronSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 181<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">181</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865148),
(115, 'php', '', '2', 'Constant LNG_HLP_MaxHourlyRate already defined', 'Constant LNG_HLP_MaxHourlyRate already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 313<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">313</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865148),
(116, 'php', '', '2', 'Constant LNG_AddTheseFields already defined', 'Constant LNG_AddTheseFields already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/lists.php at 239<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/lists.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">239</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">58</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865148),
(117, 'php', '', '2', 'Constant LNG_DeleteListPrompt already defined', 'Constant LNG_DeleteListPrompt already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/lists.php at 240<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/lists.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">240</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">58</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865148),
(118, 'php', '', '2', 'Constant LNG_ApplicationSettings_Heading already defined', 'Constant LNG_ApplicationSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865169),
(119, 'php', '', '2', 'Constant LNG_EmailSettings_Heading already defined', 'Constant LNG_EmailSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865169),
(120, 'php', '', '2', 'Constant LNG_CronSettings_Heading already defined', 'Constant LNG_CronSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 181<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">181</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865169),
(121, 'php', '', '2', 'Constant LNG_HLP_MaxHourlyRate already defined', 'Constant LNG_HLP_MaxHourlyRate already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 313<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">313</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865169);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(122, 'php', '', '2', 'Constant LNG_AddTheseFields already defined', 'Constant LNG_AddTheseFields already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/lists.php at 239<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/lists.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">239</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">58</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865169),
(123, 'php', '', '2', 'Constant LNG_DeleteListPrompt already defined', 'Constant LNG_DeleteListPrompt already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/lists.php at 240<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/lists.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">240</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">58</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865169),
(124, 'php', '', '2', 'Constant LNG_ApplicationSettings_Heading already defined', 'Constant LNG_ApplicationSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865268),
(125, 'php', '', '2', 'Constant LNG_EmailSettings_Heading already defined', 'Constant LNG_EmailSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865268),
(126, 'php', '', '2', 'Constant LNG_CronSettings_Heading already defined', 'Constant LNG_CronSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 181<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">181</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865268),
(127, 'php', '', '2', 'Constant LNG_HLP_MaxHourlyRate already defined', 'Constant LNG_HLP_MaxHourlyRate already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 313<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">313</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865268),
(128, 'php', '', '2', 'Constant LNG_AddTheseFields already defined', 'Constant LNG_AddTheseFields already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/lists.php at 239<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/lists.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">239</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">58</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865268),
(129, 'php', '', '2', 'Constant LNG_DeleteListPrompt already defined', 'Constant LNG_DeleteListPrompt already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/lists.php at 240<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/lists.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">240</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">58</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865269),
(130, 'php', '', '2', 'Constant LNG_ApplicationSettings_Heading already defined', 'Constant LNG_ApplicationSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865269),
(131, 'php', '', '2', 'Constant LNG_EmailSettings_Heading already defined', 'Constant LNG_EmailSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865269),
(132, 'php', '', '2', 'Constant LNG_CronSettings_Heading already defined', 'Constant LNG_CronSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 181<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">181</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865269),
(133, 'php', '', '2', 'Constant LNG_HLP_MaxHourlyRate already defined', 'Constant LNG_HLP_MaxHourlyRate already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 313<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">313</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865269),
(134, 'php', '', '2', 'Constant LNG_AddTheseFields already defined', 'Constant LNG_AddTheseFields already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/lists.php at 239<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/lists.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">239</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">58</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865269),
(135, 'php', '', '2', 'Constant LNG_DeleteListPrompt already defined', 'Constant LNG_DeleteListPrompt already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/lists.php at 240<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/lists.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">240</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">58</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865269),
(136, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(137, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(138, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(139, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(140, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(141, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(142, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(143, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(144, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(145, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(146, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(147, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(148, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(149, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(150, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(151, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(152, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(153, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(154, 'php', '', '2', 'Constant LNG_DeleteNewsletterPrompt already defined', 'Constant LNG_DeleteNewsletterPrompt already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/newsletters.php at 207<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/newsletters.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">207</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/remote.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">43</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/remote.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">539</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">RemoteUpload->RemoteUpload</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/remote.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">19</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(155, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(156, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(157, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(158, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865342),
(159, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(160, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(161, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(162, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(163, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(164, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(165, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(166, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(167, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(168, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(169, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(170, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(171, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(172, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(173, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(174, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(175, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(176, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(177, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(178, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(179, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(180, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(181, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(182, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(183, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(184, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(185, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(186, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(187, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(188, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(189, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(190, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(191, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(192, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(193, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(194, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(195, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(196, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(197, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(198, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(199, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(200, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(201, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(202, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(203, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(204, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(205, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(206, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(207, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(208, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(209, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(210, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(211, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(212, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(213, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(214, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(215, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(216, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(217, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(218, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(219, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(220, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(221, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(222, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(223, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(224, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(225, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(226, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(227, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(228, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(229, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(230, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(231, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(232, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(233, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(234, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(235, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(236, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(237, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(238, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(239, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(240, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(241, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(242, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(243, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(244, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865343),
(245, 'php', '', '2', 'Constant LNG_ApplicationSettings_Heading already defined', 'Constant LNG_ApplicationSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865347),
(246, 'php', '', '2', 'Constant LNG_EmailSettings_Heading already defined', 'Constant LNG_EmailSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865347),
(247, 'php', '', '2', 'Constant LNG_CronSettings_Heading already defined', 'Constant LNG_CronSettings_Heading already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 181<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">181</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865347),
(248, 'php', '', '2', 'Constant LNG_HLP_MaxHourlyRate already defined', 'Constant LNG_HLP_MaxHourlyRate already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/settings.php at 313<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">313</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">55</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865347),
(249, 'php', '', '2', 'Constant LNG_AddTheseFields already defined', 'Constant LNG_AddTheseFields already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/lists.php at 239<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/lists.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">239</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">58</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865347),
(250, 'php', '', '2', 'Constant LNG_DeleteListPrompt already defined', 'Constant LNG_DeleteListPrompt already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/lists.php at 240<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/lists.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">240</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/settings.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">58</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Settings->Settings</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865347),
(251, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(252, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(253, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(254, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(255, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(256, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(257, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(258, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(259, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(260, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(261, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(262, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(263, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(264, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(265, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(266, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(267, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(268, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865387),
(269, 'php', '', '2', 'Constant LNG_DeleteNewsletterPrompt already defined', 'Constant LNG_DeleteNewsletterPrompt already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/newsletters.php at 207<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/newsletters.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">207</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/remote.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">43</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/remote.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">539</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">RemoteUpload->RemoteUpload</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/remote.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">19</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(270, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(271, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(272, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(273, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(274, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(275, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(276, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(277, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(278, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(279, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(280, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(281, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(282, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(283, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(284, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(285, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(286, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(287, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(288, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(289, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(290, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(291, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(292, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(293, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(294, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(295, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(296, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(297, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(298, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(299, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(300, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(301, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(302, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(303, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(304, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(305, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(306, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(307, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(308, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(309, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(310, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(311, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(312, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(313, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(314, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(315, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(316, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(317, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(318, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(319, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(320, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(321, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(322, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(323, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(324, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(325, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(326, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(327, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(328, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(329, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(330, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(331, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(332, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(333, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(334, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(335, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(336, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(337, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(338, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(339, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(340, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(341, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(342, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(343, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(344, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(345, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(346, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(347, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(348, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(349, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(350, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(351, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(352, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(353, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(354, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(355, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(356, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(357, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(358, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(359, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865388),
(360, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865393),
(361, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865393);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(362, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865395),
(363, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865396),
(364, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865397),
(365, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865397),
(366, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865397),
(367, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865397),
(368, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865397),
(369, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865397),
(370, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865397),
(371, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865397),
(372, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865397),
(373, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865397),
(374, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865397),
(375, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865397),
(376, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865397);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(377, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865397),
(378, 'php', '', '2', 'Constant LNG_DeleteNewsletterPrompt already defined', 'Constant LNG_DeleteNewsletterPrompt already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/newsletters.php at 207<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/newsletters.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">207</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/remote.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">43</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/remote.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">539</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">RemoteUpload->RemoteUpload</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/remote.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">19</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(379, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(380, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(381, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(382, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(383, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(384, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(385, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(386, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(387, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(388, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(389, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(390, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(391, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(392, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(393, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(394, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(395, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(396, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(397, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(398, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(399, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(400, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(401, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(402, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(403, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(404, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(405, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(406, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(407, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(408, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(409, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(410, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(411, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(412, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(413, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(414, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(415, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865399),
(416, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(417, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(418, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(419, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(420, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(421, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(422, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(423, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(424, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(425, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(426, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(427, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(428, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(429, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(430, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(431, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(432, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(433, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(434, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(435, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(436, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(437, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(438, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(439, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(440, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(441, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(442, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(443, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(444, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(445, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(446, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(447, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(448, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(449, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(450, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(451, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 109<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">109</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(452, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 110<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">110</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(453, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 113<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">113</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(454, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 118<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">118</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(455, 'php', '', '2', 'Constant LNG_GettingStarted already defined', 'Constant LNG_GettingStarted already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 130<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">130</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(456, 'php', '', '2', 'Constant LNG_GettingStarted_Intro already defined', 'Constant LNG_GettingStarted_Intro already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 131<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">131</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(457, 'php', '', '2', 'Constant LNG_GettingStarted_Video already defined', 'Constant LNG_GettingStarted_Video already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 132<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">132</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(458, 'php', '', '2', 'Constant LNG_GettingStarted_Video_Explain already defined', 'Constant LNG_GettingStarted_Video_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 133<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">133</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(459, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign already defined', 'Constant LNG_GettingStarted_Campaign already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 134<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">134</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(460, 'php', '', '2', 'Constant LNG_GettingStarted_Campaign_Explain already defined', 'Constant LNG_GettingStarted_Campaign_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 135<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">135</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(461, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Add already defined', 'Constant LNG_GettingStarted_Subscribers_Add already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 136<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">136</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(462, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Import already defined', 'Constant LNG_GettingStarted_Subscribers_Import already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 137<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">137</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(463, 'php', '', '2', 'Constant LNG_GettingStarted_Subscribers_Explain already defined', 'Constant LNG_GettingStarted_Subscribers_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 138<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">138</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(464, 'php', '', '2', 'Constant LNG_GettingStarted_Send already defined', 'Constant LNG_GettingStarted_Send already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 139<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">139</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(465, 'php', '', '2', 'Constant LNG_GettingStarted_Send_Explain already defined', 'Constant LNG_GettingStarted_Send_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 140<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">140</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(466, 'php', '', '2', 'Constant LNG_GettingStarted_Stats already defined', 'Constant LNG_GettingStarted_Stats already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 141<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">141</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401);
INSERT INTO `email_log_system_system` (`logid`, `logtype`, `logmodule`, `logseverity`, `logsummary`, `logmsg`, `logdate`) VALUES
(467, 'php', '', '2', 'Constant LNG_GettingStarted_Stats_Explain already defined', 'Constant LNG_GettingStarted_Stats_Explain already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 142<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">142</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401),
(468, 'php', '', '2', 'Constant LNG_GettingStarted_Header already defined', 'Constant LNG_GettingStarted_Header already defined in /home/grupo3w/public_html/mkt/admin/com/language/default/index.php at 143<br/>\n<table style=\"width: 100%; margin: 10px 0; border: 1px solid #aaa; border-collapse: collapse; border-bottom: 0;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n<thead><tr>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">File</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Line</th>\n<th style=\"border-bottom: 1px solid #aaa; background: #ccc; padding: 4px; text-align: left; font-size: 11px;\">Function</th>\n</tr></thead>\n<tbody>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">[PHP]</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">&nbsp;</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">HandlePHPErrors</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/language/default/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">143</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">define</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/lib/IEM.class.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">2</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">include_once</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/sendstudio_functions.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">1748</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">IEM::langLoad</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/functions/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">36</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">SendStudio_Functions->LoadLanguageFile</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/com/init.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">554</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">Index->Index</td>\n</tr>\n<tr>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">/home/grupo3w/public_html/mkt/admin/index.php</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">80</td>\n<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">require_once</td>\n</tr>\n</tbody></table>\n', 1417865401);

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

--
-- Estrutura da tabela `email_modules`
--

CREATE TABLE `email_modules` (
  `modulename` varchar(50) NOT NULL,
  `moduleversion` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_newsletters`
--

CREATE TABLE `email_newsletters` (
  `newsletterid` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `format` char(1) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `textbody` longtext,
  `htmlbody` longtext,
  `createdate` int(11) DEFAULT '0',
  `active` int(11) DEFAULT '0',
  `archive` int(11) DEFAULT '0',
  `ownerid` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_queues`
--

CREATE TABLE `email_queues` (
  `queueid` int(11) DEFAULT '0',
  `queuetype` varchar(255) DEFAULT NULL,
  `ownerid` int(11) NOT NULL DEFAULT '0',
  `recipient` int(11) DEFAULT '0',
  `processed` char(1) DEFAULT '0',
  `sent` char(1) DEFAULT '0',
  `processtime` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_queues_sequence`
--

CREATE TABLE `email_queues_sequence` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Extraindo dados da tabela `email_queues_sequence`
--

INSERT INTO `email_queues_sequence` (`id`) VALUES
(1);

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

--
-- Estrutura da tabela `email_queues_unsent`
--

CREATE TABLE `email_queues_unsent` (
  `recipient` int(11) DEFAULT '0',
  `queueid` int(11) DEFAULT '0',
  `reasoncode` int(11) DEFAULT '0',
  `reason` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_segments`
--

CREATE TABLE `email_segments` (
  `segmentid` int(11) NOT NULL,
  `segmentname` varchar(255) NOT NULL,
  `createdate` int(11) DEFAULT '0',
  `ownerid` int(11) NOT NULL,
  `searchinfo` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_settings`
--

CREATE TABLE `email_settings` (
  `cronok` char(1) DEFAULT '0',
  `cronrun1` int(11) DEFAULT '0',
  `cronrun2` int(11) DEFAULT '0',
  `database_version` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Extraindo dados da tabela `email_settings`
--

INSERT INTO `email_settings` (`cronok`, `cronrun1`, `cronrun2`, `database_version`) VALUES
('0', 0, 0, 20111011);

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

--
-- Estrutura da tabela `email_settings_credit_warnings`
--

CREATE TABLE `email_settings_credit_warnings` (
  `creditwarningid` int(11) NOT NULL,
  `enabled` char(1) NOT NULL DEFAULT '0',
  `creditlevel` int(11) NOT NULL DEFAULT '0',
  `aspercentage` char(1) NOT NULL DEFAULT '1',
  `emailsubject` varchar(255) NOT NULL,
  `emailcontents` mediumtext NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_settings_cron_schedule`
--

CREATE TABLE `email_settings_cron_schedule` (
  `jobtype` varchar(20) DEFAULT NULL,
  `lastrun` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Extraindo dados da tabela `email_settings_cron_schedule`
--

INSERT INTO `email_settings_cron_schedule` (`jobtype`, `lastrun`) VALUES
('autoresponder', 0),
('bounce', 0),
('send', 0),
('triggeremails_s', 0),
('triggeremails_p', 0),
('maintenance', 0),
('splittest', 0);

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

--
-- Estrutura da tabela `email_splittests`
--

CREATE TABLE `email_splittests` (
  `splitid` int(11) NOT NULL,
  `splitname` varchar(200) DEFAULT NULL,
  `splittype` varchar(100) DEFAULT NULL,
  `splitdetails` text,
  `createdate` int(11) DEFAULT '0',
  `userid` int(11) DEFAULT '0',
  `jobid` int(11) DEFAULT '0',
  `jobstatus` char(1) DEFAULT NULL,
  `lastsent` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_splittest_campaigns`
--

CREATE TABLE `email_splittest_campaigns` (
  `splitid` int(11) DEFAULT '0',
  `campaignid` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_splittest_statistics`
--

CREATE TABLE `email_splittest_statistics` (
  `split_statid` int(11) NOT NULL,
  `splitid` int(11) NOT NULL DEFAULT '0',
  `jobid` int(11) NOT NULL DEFAULT '0',
  `starttime` int(11) NOT NULL DEFAULT '0',
  `finishtime` int(11) NOT NULL DEFAULT '0',
  `hiddenby` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_splittest_statistics_newsletters`
--

CREATE TABLE `email_splittest_statistics_newsletters` (
  `split_statid` int(11) NOT NULL DEFAULT '0',
  `newsletter_statid` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_stats_autoresponders`
--

CREATE TABLE `email_stats_autoresponders` (
  `statid` int(11) NOT NULL DEFAULT '0',
  `htmlrecipients` int(11) DEFAULT '0',
  `textrecipients` int(11) DEFAULT '0',
  `multipartrecipients` int(11) DEFAULT '0',
  `bouncecount_soft` int(11) DEFAULT '0',
  `bouncecount_hard` int(11) DEFAULT '0',
  `bouncecount_unknown` int(11) DEFAULT '0',
  `unsubscribecount` int(11) DEFAULT '0',
  `autoresponderid` int(11) DEFAULT '0',
  `linkclicks` int(11) DEFAULT '0',
  `emailopens` int(11) DEFAULT '0',
  `emailforwards` int(11) DEFAULT '0',
  `emailopens_unique` int(11) DEFAULT '0',
  `htmlopens` int(11) DEFAULT '0',
  `htmlopens_unique` int(11) DEFAULT '0',
  `textopens` int(11) DEFAULT '0',
  `textopens_unique` int(11) DEFAULT '0',
  `hiddenby` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_stats_autoresponders_recipients`
--

CREATE TABLE `email_stats_autoresponders_recipients` (
  `statid` int(11) DEFAULT '0',
  `autoresponderid` int(11) DEFAULT '0',
  `send_status` char(1) DEFAULT NULL,
  `recipient` int(11) DEFAULT '0',
  `reason` varchar(20) DEFAULT NULL,
  `sendtime` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_stats_emailforwards`
--

CREATE TABLE `email_stats_emailforwards` (
  `forwardid` int(11) NOT NULL,
  `forwardtime` int(11) DEFAULT '0',
  `forwardip` varchar(20) DEFAULT NULL,
  `subscriberid` int(11) DEFAULT NULL,
  `statid` int(11) DEFAULT '0',
  `subscribed` int(11) DEFAULT '0',
  `listid` int(11) DEFAULT NULL,
  `emailaddress` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_stats_emailopens`
--

CREATE TABLE `email_stats_emailopens` (
  `openid` int(11) NOT NULL,
  `subscriberid` int(11) DEFAULT '0',
  `statid` int(11) DEFAULT '0',
  `opentime` int(11) DEFAULT '0',
  `openip` varchar(20) DEFAULT NULL,
  `fromlink` char(1) DEFAULT '0',
  `opentype` char(1) DEFAULT 'u'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_stats_linkclicks`
--

CREATE TABLE `email_stats_linkclicks` (
  `clickid` int(11) NOT NULL,
  `clicktime` int(11) DEFAULT '0',
  `clickip` varchar(20) DEFAULT NULL,
  `subscriberid` int(11) DEFAULT '0',
  `statid` int(11) DEFAULT '0',
  `linkid` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_stats_links`
--

CREATE TABLE `email_stats_links` (
  `statid` int(11) DEFAULT '0',
  `linkid` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_stats_newsletters`
--

CREATE TABLE `email_stats_newsletters` (
  `statid` int(11) NOT NULL DEFAULT '0',
  `queueid` int(11) DEFAULT '0',
  `jobid` int(11) DEFAULT '0',
  `starttime` int(11) DEFAULT '0',
  `finishtime` int(11) DEFAULT '0',
  `htmlrecipients` int(11) DEFAULT '0',
  `textrecipients` int(11) DEFAULT '0',
  `multipartrecipients` int(11) DEFAULT '0',
  `trackopens` char(1) DEFAULT '0',
  `tracklinks` char(1) DEFAULT '0',
  `bouncecount_soft` int(11) DEFAULT '0',
  `bouncecount_hard` int(11) DEFAULT '0',
  `bouncecount_unknown` int(11) DEFAULT '0',
  `unsubscribecount` int(11) DEFAULT '0',
  `newsletterid` int(11) DEFAULT '0',
  `sendfromname` varchar(200) DEFAULT NULL,
  `sendfromemail` varchar(200) DEFAULT NULL,
  `bounceemail` varchar(200) DEFAULT NULL,
  `replytoemail` varchar(200) DEFAULT NULL,
  `charset` varchar(200) DEFAULT NULL,
  `sendinformation` mediumtext,
  `sendsize` int(11) DEFAULT '0',
  `sentby` int(11) DEFAULT '0',
  `notifyowner` char(1) DEFAULT '0',
  `linkclicks` int(11) DEFAULT '0',
  `emailopens` int(11) DEFAULT '0',
  `emailforwards` int(11) DEFAULT '0',
  `emailopens_unique` int(11) DEFAULT '0',
  `htmlopens` int(11) DEFAULT '0',
  `htmlopens_unique` int(11) DEFAULT '0',
  `textopens` int(11) DEFAULT '0',
  `textopens_unique` int(11) DEFAULT '0',
  `hiddenby` int(11) DEFAULT '0',
  `sendtestmode` int(11) DEFAULT '0',
  `sendtype` varchar(100) DEFAULT 'newsletter'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_stats_newsletter_lists`
--

CREATE TABLE `email_stats_newsletter_lists` (
  `statid` int(11) DEFAULT NULL,
  `listid` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_stats_sequence`
--

CREATE TABLE `email_stats_sequence` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Extraindo dados da tabela `email_stats_sequence`
--

INSERT INTO `email_stats_sequence` (`id`) VALUES
(1);

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

--
-- Estrutura da tabela `email_stats_users`
--

CREATE TABLE `email_stats_users` (
  `userid` int(11) DEFAULT '0',
  `statid` int(11) DEFAULT '0',
  `jobid` int(11) DEFAULT '0',
  `queuesize` int(11) DEFAULT '0',
  `queuetime` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_subscribers_data`
--

CREATE TABLE `email_subscribers_data` (
  `subscriberid` int(11) NOT NULL DEFAULT '0',
  `fieldid` int(11) NOT NULL DEFAULT '0',
  `data` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_surveys`
--

CREATE TABLE `email_surveys` (
  `id` int(11) UNSIGNED NOT NULL,
  `userid` int(11) DEFAULT '0',
  `name` tinytext,
  `description` text,
  `created` int(11) NOT NULL,
  `updated` int(11) DEFAULT NULL,
  `surveys_header` enum('headertext','headerlogo') NOT NULL DEFAULT 'headertext',
  `surveys_header_text` varchar(255) NOT NULL,
  `surveys_header_logo` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `email_feedback` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  `after_submit` enum('show_message','show_uri') NOT NULL DEFAULT 'show_message',
  `show_message` text NOT NULL,
  `show_uri` text NOT NULL,
  `error_message` text NOT NULL,
  `submit_button_text` tinytext NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_surveys_fields`
--

CREATE TABLE `email_surveys_fields` (
  `id` int(11) UNSIGNED NOT NULL,
  `surveys_widget_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  `value` text,
  `is_selected` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  `is_other` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  `other_label_text` tinytext NOT NULL,
  `display_order` int(11) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_surveys_response`
--

CREATE TABLE `email_surveys_response` (
  `id` int(11) UNSIGNED NOT NULL,
  `surveys_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  `datetime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_surveys_response_value`
--

CREATE TABLE `email_surveys_response_value` (
  `id` int(11) UNSIGNED NOT NULL,
  `surveys_response_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  `surveys_widgets_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  `value` text,
  `is_othervalue` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  `file_value` varchar(64) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_surveys_widgets`
--

CREATE TABLE `email_surveys_widgets` (
  `id` int(11) UNSIGNED NOT NULL,
  `surveys_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  `name` tinytext,
  `description` text,
  `type` varchar(255) NOT NULL,
  `is_required` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  `is_random` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  `is_visible` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  `allowed_file_types` text,
  `display_order` int(11) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_templates`
--

CREATE TABLE `email_templates` (
  `templateid` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `format` char(1) DEFAULT NULL,
  `textbody` longtext,
  `htmlbody` longtext,
  `createdate` int(11) DEFAULT '0',
  `active` int(11) DEFAULT '0',
  `isglobal` int(11) DEFAULT '0',
  `ownerid` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_triggeremails`
--

CREATE TABLE `email_triggeremails` (
  `triggeremailsid` int(11) NOT NULL,
  `active` char(1) NOT NULL DEFAULT '0',
  `createdate` int(11) NOT NULL,
  `ownerid` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `triggertype` char(1) NOT NULL,
  `triggerhours` int(11) DEFAULT '0',
  `triggerinterval` int(11) DEFAULT '0',
  `queueid` int(11) NOT NULL,
  `statid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_triggeremails_actions`
--

CREATE TABLE `email_triggeremails_actions` (
  `triggeremailsactionid` int(11) NOT NULL,
  `triggeremailsid` int(11) NOT NULL,
  `action` varchar(25) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_triggeremails_actions_data`
--

CREATE TABLE `email_triggeremails_actions_data` (
  `triggeremailsactionid` int(11) NOT NULL,
  `datakey` varchar(25) NOT NULL,
  `datavaluestring` varchar(255) DEFAULT NULL,
  `datavalueinteger` int(11) DEFAULT NULL,
  `triggeremailsid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_triggeremails_data`
--

CREATE TABLE `email_triggeremails_data` (
  `triggeremailsid` int(11) NOT NULL,
  `datakey` varchar(25) NOT NULL,
  `datavaluestring` varchar(255) DEFAULT NULL,
  `datavalueinteger` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_triggeremails_log`
--

CREATE TABLE `email_triggeremails_log` (
  `triggeremailsid` int(11) NOT NULL,
  `subscriberid` int(11) NOT NULL,
  `action` varchar(25) NOT NULL,
  `timestamp` int(11) NOT NULL,
  `note` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_triggeremails_log_summary`
--

CREATE TABLE `email_triggeremails_log_summary` (
  `triggeremailsid` int(11) NOT NULL,
  `subscriberid` int(11) NOT NULL,
  `actionedoncount` int(11) DEFAULT '0',
  `lastactiontimestamp` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_usergroups`
--

CREATE TABLE `email_usergroups` (
  `groupid` int(11) NOT NULL,
  `groupname` varchar(255) NOT NULL,
  `createdate` int(11) NOT NULL,
  `limit_list` int(11) DEFAULT '0',
  `limit_hourlyemailsrate` int(11) DEFAULT '0',
  `limit_emailspermonth` int(11) DEFAULT '0',
  `limit_totalemailslimit` int(11) DEFAULT NULL,
  `forcedoubleoptin` char(1) DEFAULT '0',
  `forcespamcheck` char(1) DEFAULT '0',
  `systemadmin` char(1) DEFAULT '0',
  `listadmin` char(1) DEFAULT '0',
  `segmentadmin` char(1) DEFAULT '0',
  `templateadmin` char(1) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Extraindo dados da tabela `email_usergroups`
--

INSERT INTO `email_usergroups` (`groupid`, `groupname`, `createdate`, `limit_list`, `limit_hourlyemailsrate`, `limit_emailspermonth`, `limit_totalemailslimit`, `forcedoubleoptin`, `forcespamcheck`, `systemadmin`, `listadmin`, `segmentadmin`, `templateadmin`) VALUES
(1, 'System Admin', 1274887712, 0, 0, 0, NULL, '0', '0', '1', '0', '0', '0');

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

--
-- Estrutura da tabela `email_usergroups_access`
--

CREATE TABLE `email_usergroups_access` (
  `groupid` int(11) NOT NULL,
  `resourcetype` varchar(100) NOT NULL,
  `resourceid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_usergroups_permissions`
--

CREATE TABLE `email_usergroups_permissions` (
  `groupid` int(11) NOT NULL,
  `area` varchar(255) NOT NULL,
  `subarea` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_users`
--

CREATE TABLE `email_users` (
  `userid` int(11) NOT NULL,
  `groupid` int(11) NOT NULL,
  `trialuser` char(1) DEFAULT '0',
  `username` varchar(255) NOT NULL,
  `unique_token` varchar(128) DEFAULT NULL,
  `password` varchar(32) DEFAULT NULL,
  `admintype` char(1) DEFAULT NULL,
  `listadmintype` char(1) DEFAULT NULL,
  `templateadmintype` char(1) DEFAULT NULL,
  `segmentadmintype` char(1) DEFAULT NULL,
  `status` char(1) DEFAULT '0',
  `fullname` varchar(255) DEFAULT NULL,
  `emailaddress` varchar(100) DEFAULT NULL,
  `settings` text,
  `editownsettings` char(1) DEFAULT '0',
  `usertimezone` varchar(10) DEFAULT NULL,
  `textfooter` text,
  `htmlfooter` text,
  `infotips` char(1) DEFAULT '1',
  `smtpserver` varchar(255) DEFAULT NULL,
  `smtpusername` varchar(255) DEFAULT NULL,
  `smtppassword` varchar(255) DEFAULT NULL,
  `smtpport` int(11) DEFAULT '0',
  `createdate` int(11) DEFAULT '0',
  `lastloggedin` int(11) DEFAULT '0',
  `forgotpasscode` char(32) DEFAULT '',
  `usewysiwyg` char(1) DEFAULT '1',
  `enableactivitylog` char(1) DEFAULT '0',
  `xmlapi` char(1) DEFAULT '0',
  `xmltoken` char(40) DEFAULT NULL,
  `gettingstarted` int(11) NOT NULL DEFAULT '0',
  `googlecalendarusername` varchar(255) DEFAULT NULL,
  `googlecalendarpassword` varchar(255) DEFAULT NULL,
  `user_language` varchar(25) NOT NULL DEFAULT 'default',
  `eventactivitytype` longtext,
  `credit_warning_time` int(11) DEFAULT NULL,
  `credit_warning_percentage` int(11) DEFAULT NULL,
  `credit_warning_fixed` int(11) DEFAULT NULL,
  `adminnotify_email` varchar(100) DEFAULT NULL,
  `adminnotify_send_flag` char(1) DEFAULT '0',
  `adminnotify_send_threshold` int(11) DEFAULT NULL,
  `adminnotify_send_emailtext` text,
  `adminnotify_import_flag` char(1) DEFAULT '0',
  `adminnotify_import_threshold` int(11) DEFAULT NULL,
  `adminnotify_import_emailtext` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Extraindo dados da tabela `email_users`
--

INSERT INTO `email_users` (`userid`, `groupid`, `trialuser`, `username`, `unique_token`, `password`, `admintype`, `listadmintype`, `templateadmintype`, `segmentadmintype`, `status`, `fullname`, `emailaddress`, `settings`, `editownsettings`, `usertimezone`, `textfooter`, `htmlfooter`, `infotips`, `smtpserver`, `smtpusername`, `smtppassword`, `smtpport`, `createdate`, `lastloggedin`, `forgotpasscode`, `usewysiwyg`, `enableactivitylog`, `xmlapi`, `xmltoken`, `gettingstarted`, `googlecalendarusername`, `googlecalendarpassword`, `user_language`, `eventactivitytype`, `credit_warning_time`, `credit_warning_percentage`, `credit_warning_fixed`, `adminnotify_email`, `adminnotify_send_flag`, `adminnotify_send_threshold`, `adminnotify_send_emailtext`, `adminnotify_import_flag`, `adminnotify_import_threshold`, `adminnotify_import_emailtext`) VALUES
(1, 1, '0', 'admin', 'c0f1caf994ba5b8c39ec36374b29a262c2aafa5f286afaeffc94b224719cb067afaf380f21232f297a57a5a743894a0e4a801fc3', 'bbb57c1e8c541b03ad1ae06cb2de4022', 'a', 'a', 'a', NULL, '1', '', 'suporte@grupo3w.com.br', 'a:1:{s:10:\"LoginCheck\";s:14:\"15482e8aaf1ec1\";}', '0', 'GMT-3:00', '', '\n	<br>\n', '1', '', '', '', 25, 1274887712, 1417865387, 'abca60268ca25216e3eca3b69ea9a662', '1', '0', '0', '', 0, '', '', 'default', 'a:0:{}', NULL, NULL, NULL, '', '0', 0, '', '0', 0, '');

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

--
-- Estrutura da tabela `email_user_activitylog`
--

CREATE TABLE `email_user_activitylog` (
  `lastviewid` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `icon` varchar(255) DEFAULT NULL,
  `text` varchar(255) DEFAULT NULL,
  `url` varchar(255) NOT NULL,
  `viewed` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_user_credit`
--

CREATE TABLE `email_user_credit` (
  `usercreditid` bigint(20) UNSIGNED NOT NULL,
  `userid` int(11) NOT NULL,
  `transactiontype` varchar(25) NOT NULL,
  `transactiontime` int(10) UNSIGNED NOT NULL,
  `credit` bigint(20) NOT NULL,
  `jobid` int(11) DEFAULT NULL,
  `statid` int(11) DEFAULT NULL,
  `expiry` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_user_credit_summary`
--

CREATE TABLE `email_user_credit_summary` (
  `usagesummaryid` bigint(20) UNSIGNED NOT NULL,
  `userid` int(11) NOT NULL,
  `startperiod` int(11) NOT NULL,
  `credit_used` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_user_stats_emailsperhour`
--

CREATE TABLE `email_user_stats_emailsperhour` (
  `summaryid` int(11) NOT NULL,
  `statid` int(11) DEFAULT '0',
  `sendtime` int(11) DEFAULT '0',
  `emailssent` int(11) DEFAULT '0',
  `userid` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Estrutura da tabela `email_whitelabel_settings`
--

CREATE TABLE `email_whitelabel_settings` (
  `name` varchar(100) NOT NULL,
  `value` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Índices para tabelas despejadas
--

--
-- Índices para tabela `email_addons`
--
ALTER TABLE `email_addons`
  ADD PRIMARY KEY (`addon_id`);

--
-- Índices para tabela `email_autoresponders`
--
ALTER TABLE `email_autoresponders`
  ADD PRIMARY KEY (`autoresponderid`),
  ADD KEY `email_autoresponders_owner_idx` (`ownerid`),
  ADD KEY `email_autoresponders_list_idx` (`listid`),
  ADD KEY `email_autoresponders_queue_idx` (`queueid`);

--
-- Índices para tabela `email_banned_emails`
--
ALTER TABLE `email_banned_emails`
  ADD PRIMARY KEY (`banid`),
  ADD UNIQUE KEY `email_banned_emails_list_email_idx` (`list`,`emailaddress`);

--
-- Índices para tabela `email_customfields`
--
ALTER TABLE `email_customfields`
  ADD PRIMARY KEY (`fieldid`),
  ADD KEY `email_customfields_owner_idx` (`ownerid`),
  ADD KEY `email_customfield_id_name` (`fieldid`,`name`);

--
-- Índices para tabela `email_customfield_lists`
--
ALTER TABLE `email_customfield_lists`
  ADD PRIMARY KEY (`cflid`),
  ADD UNIQUE KEY `email_customfield_lists_field_list_idx` (`fieldid`,`listid`);

--
-- Índices para tabela `email_dynamic_content_block`
--
ALTER TABLE `email_dynamic_content_block`
  ADD PRIMARY KEY (`blockid`);

--
-- Índices para tabela `email_dynamic_content_tags`
--
ALTER TABLE `email_dynamic_content_tags`
  ADD PRIMARY KEY (`tagid`);

--
-- Índices para tabela `email_folders`
--
ALTER TABLE `email_folders`
  ADD PRIMARY KEY (`folderid`),
  ADD UNIQUE KEY `email_folders_name_type_ownerid_idx` (`name`,`type`,`ownerid`);

--
-- Índices para tabela `email_folder_item`
--
ALTER TABLE `email_folder_item`
  ADD PRIMARY KEY (`folderid`,`itemid`),
  ADD UNIQUE KEY `email_folder_item_folderid_itemid_idx` (`folderid`,`itemid`);

--
-- Índices para tabela `email_folder_user`
--
ALTER TABLE `email_folder_user`
  ADD PRIMARY KEY (`folderid`,`userid`),
  ADD KEY `email_folder_user_userid_folderid_idx` (`userid`,`folderid`);

--
-- Índices para tabela `email_forms`
--
ALTER TABLE `email_forms`
  ADD PRIMARY KEY (`formid`);

--
-- Índices para tabela `email_form_customfields`
--
ALTER TABLE `email_form_customfields`
  ADD UNIQUE KEY `email_form_customfields_formid_listid_idx` (`formid`,`fieldid`);

--
-- Índices para tabela `email_form_lists`
--
ALTER TABLE `email_form_lists`
  ADD UNIQUE KEY `email_form_lists_formid_listid_idx` (`formid`,`listid`);

--
-- Índices para tabela `email_form_pages`
--
ALTER TABLE `email_form_pages`
  ADD PRIMARY KEY (`pageid`),
  ADD KEY `email_form_pages_formid_idx` (`formid`);

--
-- Índices para tabela `email_jobs`
--
ALTER TABLE `email_jobs`
  ADD PRIMARY KEY (`jobid`),
  ADD KEY `email_jobs_fkid_idx` (`fkid`),
  ADD KEY `email_jobs_jobtime_idx` (`jobtime`),
  ADD KEY `email_jobs_queue_idx` (`queueid`),
  ADD KEY `email_jobs_owner_idx` (`ownerid`);

--
-- Índices para tabela `email_jobs_lists`
--
ALTER TABLE `email_jobs_lists`
  ADD UNIQUE KEY `email_jobs_lists_jobid_listid_idx` (`jobid`,`listid`),
  ADD KEY `email_jobs_lists_listid_idx` (`listid`);

--
-- Índices para tabela `email_links`
--
ALTER TABLE `email_links`
  ADD PRIMARY KEY (`linkid`);

--
-- Índices para tabela `email_lists`
--
ALTER TABLE `email_lists`
  ADD PRIMARY KEY (`listid`),
  ADD KEY `email_lists_owner_idx` (`ownerid`);

--
-- Índices para tabela `email_list_subscribers`
--
ALTER TABLE `email_list_subscribers`
  ADD PRIMARY KEY (`subscriberid`),
  ADD UNIQUE KEY `email_subscribers_email_list_idx` (`emailaddress`,`listid`),
  ADD KEY `email_list_subscribers_sub_list_idx` (`subscriberid`,`listid`),
  ADD KEY `email_subscribe_date_idx` (`subscribedate`),
  ADD KEY `email_list_subscribers_listid_idx` (`listid`),
  ADD KEY `email_confirmed_idx` (`confirmed`);

--
-- Índices para tabela `email_list_subscribers_unsubscribe`
--
ALTER TABLE `email_list_subscribers_unsubscribe`
  ADD KEY `email_list_unsubscribe_sub_list_idx` (`subscriberid`,`listid`),
  ADD KEY `email_list_subscribers_unsubscribe_statid_idx` (`statid`);

--
-- Índices para tabela `email_list_subscriber_bounces`
--
ALTER TABLE `email_list_subscriber_bounces`
  ADD PRIMARY KEY (`bounceid`),
  ADD KEY `email_list_subscriber_bounces_statid_idx` (`statid`),
  ADD KEY `email_list_subscriber_bounces_listid_idx` (`listid`),
  ADD KEY `email_list_subscriber_bounces_subscriberid_idx` (`subscriberid`);

--
-- Índices para tabela `email_list_subscriber_events`
--
ALTER TABLE `email_list_subscriber_events`
  ADD PRIMARY KEY (`eventid`),
  ADD KEY `email_list_subscriber_events_subscriberid_idx` (`subscriberid`);

--
-- Índices para tabela `email_list_tags`
--
ALTER TABLE `email_list_tags`
  ADD PRIMARY KEY (`tagid`,`listid`);

--
-- Índices para tabela `email_login_banned_ip`
--
ALTER TABLE `email_login_banned_ip`
  ADD PRIMARY KEY (`ipaddress`);

--
-- Índices para tabela `email_log_system_administrator`
--
ALTER TABLE `email_log_system_administrator`
  ADD PRIMARY KEY (`logid`);

--
-- Índices para tabela `email_log_system_system`
--
ALTER TABLE `email_log_system_system`
  ADD PRIMARY KEY (`logid`);

--
-- Índices para tabela `email_modules`
--
ALTER TABLE `email_modules`
  ADD PRIMARY KEY (`modulename`);

--
-- Índices para tabela `email_newsletters`
--
ALTER TABLE `email_newsletters`
  ADD PRIMARY KEY (`newsletterid`),
  ADD KEY `email_newsletters_owner_idx` (`ownerid`);

--
-- Índices para tabela `email_queues`
--
ALTER TABLE `email_queues`
  ADD KEY `email_queues_id_type_recip_idx` (`queueid`,`queuetype`,`recipient`),
  ADD KEY `email_queues_id_type_processed_idx` (`queueid`,`queuetype`,`processed`),
  ADD KEY `email_queuetype_recipient_idx` (`queuetype`,`recipient`);

--
-- Índices para tabela `email_queues_sequence`
--
ALTER TABLE `email_queues_sequence`
  ADD PRIMARY KEY (`id`);

--
-- Índices para tabela `email_queues_unsent`
--
ALTER TABLE `email_queues_unsent`
  ADD KEY `email_queues_unsent_queueid_idx` (`queueid`),
  ADD KEY `email_queues_unsent_recipient_idx` (`recipient`);

--
-- Índices para tabela `email_segments`
--
ALTER TABLE `email_segments`
  ADD PRIMARY KEY (`segmentid`);

--
-- Índices para tabela `email_settings_credit_warnings`
--
ALTER TABLE `email_settings_credit_warnings`
  ADD PRIMARY KEY (`creditwarningid`);

--
-- Índices para tabela `email_splittests`
--
ALTER TABLE `email_splittests`
  ADD PRIMARY KEY (`splitid`);

--
-- Índices para tabela `email_splittest_campaigns`
--
ALTER TABLE `email_splittest_campaigns`
  ADD UNIQUE KEY `email_split_campaigns_split_campaign` (`splitid`,`campaignid`);

--
-- Índices para tabela `email_splittest_statistics`
--
ALTER TABLE `email_splittest_statistics`
  ADD PRIMARY KEY (`split_statid`);

--
-- Índices para tabela `email_splittest_statistics_newsletters`
--
ALTER TABLE `email_splittest_statistics_newsletters`
  ADD UNIQUE KEY `email_split_stats_newsletters_split_news` (`split_statid`,`newsletter_statid`);

--
-- Índices para tabela `email_stats_autoresponders`
--
ALTER TABLE `email_stats_autoresponders`
  ADD PRIMARY KEY (`statid`),
  ADD KEY `email_stats_autoresponders_statid_idx` (`statid`),
  ADD KEY `email_stats_autoresponders_autoresponderid_idx` (`autoresponderid`);

--
-- Índices para tabela `email_stats_autoresponders_recipients`
--
ALTER TABLE `email_stats_autoresponders_recipients`
  ADD KEY `email_stats_autoresponders_recipients_stat_auto_recip` (`statid`,`autoresponderid`,`recipient`);

--
-- Índices para tabela `email_stats_emailforwards`
--
ALTER TABLE `email_stats_emailforwards`
  ADD PRIMARY KEY (`forwardid`),
  ADD KEY `email_stats_emailforwards_subscriberid_idx` (`subscriberid`),
  ADD KEY `email_stats_emailforwards_statid_idx` (`statid`),
  ADD KEY `email_stats_emailforwards_listid_idx` (`listid`);

--
-- Índices para tabela `email_stats_emailopens`
--
ALTER TABLE `email_stats_emailopens`
  ADD PRIMARY KEY (`openid`),
  ADD KEY `email_stats_emailopens_subscriberid_idx` (`subscriberid`),
  ADD KEY `email_stats_emailopens_statid_idx` (`statid`),
  ADD KEY `email_open_statid_subscriberid` (`subscriberid`,`statid`),
  ADD KEY `email_stats_emailopens_statid_opentime_idx` (`statid`,`opentime`);

--
-- Índices para tabela `email_stats_linkclicks`
--
ALTER TABLE `email_stats_linkclicks`
  ADD PRIMARY KEY (`clickid`),
  ADD KEY `email_stats_linkclicks_subscriberid_idx` (`subscriberid`),
  ADD KEY `email_stats_linkclicks_statid_idx` (`statid`),
  ADD KEY `email_stats_linkclicks_linkid_idx` (`linkid`),
  ADD KEY `email_stats_linkclicks_subscriberid` (`subscriberid`),
  ADD KEY `email_stats_linkclicks_statid_clicktime_idx` (`statid`,`clicktime`);

--
-- Índices para tabela `email_stats_links`
--
ALTER TABLE `email_stats_links`
  ADD KEY `email_stats_links_statid_idx` (`statid`);

--
-- Índices para tabela `email_stats_newsletters`
--
ALTER TABLE `email_stats_newsletters`
  ADD PRIMARY KEY (`statid`),
  ADD KEY `email_stats_newsletters_queue_idx` (`queueid`),
  ADD KEY `email_stats_newsletters_sentby_idx` (`sentby`);

--
-- Índices para tabela `email_stats_newsletter_lists`
--
ALTER TABLE `email_stats_newsletter_lists`
  ADD UNIQUE KEY `email_stats_newsletter_lists_list_stat_idx` (`listid`,`statid`);

--
-- Índices para tabela `email_stats_sequence`
--
ALTER TABLE `email_stats_sequence`
  ADD PRIMARY KEY (`id`);

--
-- Índices para tabela `email_stats_users`
--
ALTER TABLE `email_stats_users`
  ADD KEY `email_stats_users_all_idx` (`userid`,`queuetime`,`queuesize`),
  ADD KEY `email_stats_users_statid_idx` (`statid`);

--
-- Índices para tabela `email_subscribers_data`
--
ALTER TABLE `email_subscribers_data`
  ADD UNIQUE KEY `email_subscribers_data_subscriber_field_idx` (`subscriberid`,`fieldid`),
  ADD KEY `email_subscribers_data_data_idx` (`data`(255)),
  ADD KEY `email_subscriber_data_field_subscriber_idx` (`fieldid`,`subscriberid`);

--
-- Índices para tabela `email_surveys`
--
ALTER TABLE `email_surveys`
  ADD PRIMARY KEY (`id`);

--
-- Índices para tabela `email_surveys_fields`
--
ALTER TABLE `email_surveys_fields`
  ADD PRIMARY KEY (`id`),
  ADD KEY `surveys_widget_id` (`surveys_widget_id`);

--
-- Índices para tabela `email_surveys_response`
--
ALTER TABLE `email_surveys_response`
  ADD PRIMARY KEY (`id`),
  ADD KEY `surveys_id` (`surveys_id`);

--
-- Índices para tabela `email_surveys_response_value`
--
ALTER TABLE `email_surveys_response_value`
  ADD PRIMARY KEY (`id`),
  ADD KEY `surveys_response_id` (`surveys_response_id`),
  ADD KEY `surveys_widgets_id` (`surveys_widgets_id`);

--
-- Índices para tabela `email_surveys_widgets`
--
ALTER TABLE `email_surveys_widgets`
  ADD PRIMARY KEY (`id`),
  ADD KEY `surveys_id` (`surveys_id`);

--
-- Índices para tabela `email_templates`
--
ALTER TABLE `email_templates`
  ADD PRIMARY KEY (`templateid`),
  ADD KEY `email_templates_owner_idx` (`ownerid`);

--
-- Índices para tabela `email_triggeremails`
--
ALTER TABLE `email_triggeremails`
  ADD PRIMARY KEY (`triggeremailsid`),
  ADD UNIQUE KEY `queueid` (`queueid`),
  ADD UNIQUE KEY `statid` (`statid`);

--
-- Índices para tabela `email_triggeremails_actions`
--
ALTER TABLE `email_triggeremails_actions`
  ADD PRIMARY KEY (`triggeremailsactionid`),
  ADD UNIQUE KEY `triggeremailsid` (`triggeremailsid`,`action`);

--
-- Índices para tabela `email_triggeremails_actions_data`
--
ALTER TABLE `email_triggeremails_actions_data`
  ADD KEY `email_triggeremails_actions_data_datavaluestring_idx` (`triggeremailsactionid`,`datakey`,`datavaluestring`),
  ADD KEY `email_triggeremails_actions_data_datavalueinteger_idx` (`triggeremailsactionid`,`datakey`,`datavalueinteger`),
  ADD KEY `email_triggeremails_actions_data_triggeremailsid_idx` (`triggeremailsid`);

--
-- Índices para tabela `email_triggeremails_data`
--
ALTER TABLE `email_triggeremails_data`
  ADD KEY `email_triggeremails_data_datavaluestring_idx` (`triggeremailsid`,`datakey`,`datavaluestring`),
  ADD KEY `email_triggeremails_data_datavalueinteger_idx` (`triggeremailsid`,`datakey`,`datavalueinteger`);

--
-- Índices para tabela `email_triggeremails_log`
--
ALTER TABLE `email_triggeremails_log`
  ADD KEY `email_triggeremails_log_idx` (`triggeremailsid`,`subscriberid`,`action`,`timestamp`,`note`);

--
-- Índices para tabela `email_triggeremails_log_summary`
--
ALTER TABLE `email_triggeremails_log_summary`
  ADD PRIMARY KEY (`triggeremailsid`,`subscriberid`);

--
-- Índices para tabela `email_usergroups`
--
ALTER TABLE `email_usergroups`
  ADD PRIMARY KEY (`groupid`);

--
-- Índices para tabela `email_usergroups_access`
--
ALTER TABLE `email_usergroups_access`
  ADD KEY `groupid` (`groupid`);

--
-- Índices para tabela `email_usergroups_permissions`
--
ALTER TABLE `email_usergroups_permissions`
  ADD KEY `groupid` (`groupid`);

--
-- Índices para tabela `email_users`
--
ALTER TABLE `email_users`
  ADD PRIMARY KEY (`userid`),
  ADD KEY `groupid` (`groupid`),
  ADD KEY `email_users_logincheck_idx` (`username`,`password`);

--
-- Índices para tabela `email_user_activitylog`
--
ALTER TABLE `email_user_activitylog`
  ADD PRIMARY KEY (`lastviewid`),
  ADD KEY `email_user_activitylog_userid_viewed_idx` (`userid`,`viewed`);

--
-- Índices para tabela `email_user_credit`
--
ALTER TABLE `email_user_credit`
  ADD PRIMARY KEY (`usercreditid`),
  ADD KEY `email_user_credit_transactiontype_idx` (`transactiontype`),
  ADD KEY `email_user_credit_userid_transactiontype_idx` (`userid`,`transactiontype`),
  ADD KEY `email_user_credit_transactiontime_idx` (`transactiontime`),
  ADD KEY `email_user_credit_userid_transactiontime_idx` (`userid`,`transactiontime`),
  ADD KEY `email_user_credit_transactiontype_transactiontime_idx` (`transactiontype`,`transactiontime`),
  ADD KEY `email_user_credit_userid_transactiontype_transactiontime_idx` (`userid`,`transactiontype`,`transactiontime`);

--
-- Índices para tabela `email_user_credit_summary`
--
ALTER TABLE `email_user_credit_summary`
  ADD PRIMARY KEY (`usagesummaryid`),
  ADD UNIQUE KEY `userid` (`userid`,`startperiod`);

--
-- Índices para tabela `email_user_stats_emailsperhour`
--
ALTER TABLE `email_user_stats_emailsperhour`
  ADD PRIMARY KEY (`summaryid`),
  ADD KEY `email_user_stats_emailsperhour_statid_idx` (`statid`),
  ADD KEY `email_user_stats_emailsperhour_userid_idx` (`userid`);

--
-- Índices para tabela `email_whitelabel_settings`
--
ALTER TABLE `email_whitelabel_settings`
  ADD PRIMARY KEY (`name`);

--
-- AUTO_INCREMENT de tabelas despejadas
--

--
-- AUTO_INCREMENT de tabela `email_autoresponders`
--
ALTER TABLE `email_autoresponders`
  MODIFY `autoresponderid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_banned_emails`
--
ALTER TABLE `email_banned_emails`
  MODIFY `banid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_customfields`
--
ALTER TABLE `email_customfields`
  MODIFY `fieldid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT de tabela `email_customfield_lists`
--
ALTER TABLE `email_customfield_lists`
  MODIFY `cflid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_dynamic_content_block`
--
ALTER TABLE `email_dynamic_content_block`
  MODIFY `blockid` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_dynamic_content_tags`
--
ALTER TABLE `email_dynamic_content_tags`
  MODIFY `tagid` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_folders`
--
ALTER TABLE `email_folders`
  MODIFY `folderid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_forms`
--
ALTER TABLE `email_forms`
  MODIFY `formid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_form_pages`
--
ALTER TABLE `email_form_pages`
  MODIFY `pageid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_jobs`
--
ALTER TABLE `email_jobs`
  MODIFY `jobid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_links`
--
ALTER TABLE `email_links`
  MODIFY `linkid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_lists`
--
ALTER TABLE `email_lists`
  MODIFY `listid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_list_subscribers`
--
ALTER TABLE `email_list_subscribers`
  MODIFY `subscriberid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_list_subscriber_bounces`
--
ALTER TABLE `email_list_subscriber_bounces`
  MODIFY `bounceid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_list_subscriber_events`
--
ALTER TABLE `email_list_subscriber_events`
  MODIFY `eventid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_log_system_administrator`
--
ALTER TABLE `email_log_system_administrator`
  MODIFY `logid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_log_system_system`
--
ALTER TABLE `email_log_system_system`
  MODIFY `logid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=469;

--
-- AUTO_INCREMENT de tabela `email_newsletters`
--
ALTER TABLE `email_newsletters`
  MODIFY `newsletterid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_queues_sequence`
--
ALTER TABLE `email_queues_sequence`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT de tabela `email_segments`
--
ALTER TABLE `email_segments`
  MODIFY `segmentid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_settings_credit_warnings`
--
ALTER TABLE `email_settings_credit_warnings`
  MODIFY `creditwarningid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_splittests`
--
ALTER TABLE `email_splittests`
  MODIFY `splitid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_splittest_statistics`
--
ALTER TABLE `email_splittest_statistics`
  MODIFY `split_statid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_stats_emailforwards`
--
ALTER TABLE `email_stats_emailforwards`
  MODIFY `forwardid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_stats_emailopens`
--
ALTER TABLE `email_stats_emailopens`
  MODIFY `openid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_stats_linkclicks`
--
ALTER TABLE `email_stats_linkclicks`
  MODIFY `clickid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_stats_sequence`
--
ALTER TABLE `email_stats_sequence`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT de tabela `email_surveys`
--
ALTER TABLE `email_surveys`
  MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_surveys_fields`
--
ALTER TABLE `email_surveys_fields`
  MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_surveys_response`
--
ALTER TABLE `email_surveys_response`
  MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_surveys_response_value`
--
ALTER TABLE `email_surveys_response_value`
  MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_surveys_widgets`
--
ALTER TABLE `email_surveys_widgets`
  MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_templates`
--
ALTER TABLE `email_templates`
  MODIFY `templateid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_triggeremails`
--
ALTER TABLE `email_triggeremails`
  MODIFY `triggeremailsid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_triggeremails_actions`
--
ALTER TABLE `email_triggeremails_actions`
  MODIFY `triggeremailsactionid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_usergroups`
--
ALTER TABLE `email_usergroups`
  MODIFY `groupid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT de tabela `email_users`
--
ALTER TABLE `email_users`
  MODIFY `userid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT de tabela `email_user_activitylog`
--
ALTER TABLE `email_user_activitylog`
  MODIFY `lastviewid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_user_credit`
--
ALTER TABLE `email_user_credit`
  MODIFY `usercreditid` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_user_credit_summary`
--
ALTER TABLE `email_user_credit_summary`
  MODIFY `usagesummaryid` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `email_user_stats_emailsperhour`
--
ALTER TABLE `email_user_stats_emailsperhour`
  MODIFY `summaryid` int(11) NOT NULL AUTO_INCREMENT;

--
-- Restrições para despejos de tabelas
--

--
-- Limitadores para a tabela `email_triggeremails_actions`
--
ALTER TABLE `email_triggeremails_actions`
  ADD CONSTRAINT `email_triggeremails_actions_ibfk_1` FOREIGN KEY (`triggeremailsid`) REFERENCES `email_triggeremails` (`triggeremailsid`) ON DELETE CASCADE;

--
-- Limitadores para a tabela `email_triggeremails_actions_data`
--
ALTER TABLE `email_triggeremails_actions_data`
  ADD CONSTRAINT `email_triggeremails_actions_data_ibfk_1` FOREIGN KEY (`triggeremailsactionid`) REFERENCES `email_triggeremails_actions` (`triggeremailsactionid`) ON DELETE CASCADE,
  ADD CONSTRAINT `email_triggeremails_actions_data_ibfk_2` FOREIGN KEY (`triggeremailsid`) REFERENCES `email_triggeremails` (`triggeremailsid`) ON DELETE CASCADE;

--
-- Limitadores para a tabela `email_triggeremails_data`
--
ALTER TABLE `email_triggeremails_data`
  ADD CONSTRAINT `email_triggeremails_data_ibfk_1` FOREIGN KEY (`triggeremailsid`) REFERENCES `email_triggeremails` (`triggeremailsid`) ON DELETE CASCADE;

--
-- Limitadores para a tabela `email_triggeremails_log`
--
ALTER TABLE `email_triggeremails_log`
  ADD CONSTRAINT `email_triggeremails_log_ibfk_1` FOREIGN KEY (`triggeremailsid`) REFERENCES `email_triggeremails` (`triggeremailsid`) ON DELETE CASCADE;

--
-- Limitadores para a tabela `email_triggeremails_log_summary`
--
ALTER TABLE `email_triggeremails_log_summary`
  ADD CONSTRAINT `email_triggeremails_log_summary_ibfk_1` FOREIGN KEY (`triggeremailsid`) REFERENCES `email_triggeremails` (`triggeremailsid`) ON DELETE CASCADE;

--
-- Limitadores para a tabela `email_usergroups_access`
--
ALTER TABLE `email_usergroups_access`
  ADD CONSTRAINT `email_usergroups_access_ibfk_1` FOREIGN KEY (`groupid`) REFERENCES `email_usergroups` (`groupid`);

--
-- Limitadores para a tabela `email_usergroups_permissions`
--
ALTER TABLE `email_usergroups_permissions`
  ADD CONSTRAINT `email_usergroups_permissions_ibfk_1` FOREIGN KEY (`groupid`) REFERENCES `email_usergroups` (`groupid`) ON DELETE CASCADE;

--
-- Limitadores para a tabela `email_users`
--
ALTER TABLE `email_users`
  ADD CONSTRAINT `email_users_ibfk_1` FOREIGN KEY (`groupid`) REFERENCES `email_usergroups` (`groupid`);

--
-- Limitadores para a tabela `email_user_activitylog`
--
ALTER TABLE `email_user_activitylog`
  ADD CONSTRAINT `email_user_activitylog_ibfk_1` FOREIGN KEY (`userid`) REFERENCES `email_users` (`userid`) ON DELETE CASCADE;

--
-- Limitadores para a tabela `email_user_credit`
--
ALTER TABLE `email_user_credit`
  ADD CONSTRAINT `email_user_credit_ibfk_1` FOREIGN KEY (`userid`) REFERENCES `email_users` (`userid`) ON DELETE CASCADE;

--
-- Limitadores para a tabela `email_user_credit_summary`
--
ALTER TABLE `email_user_credit_summary`
  ADD CONSTRAINT `email_user_credit_summary_ibfk_1` FOREIGN KEY (`userid`) REFERENCES `email_users` (`userid`) ON DELETE CASCADE;
COMMIT;

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