joomla3.0 - Joomla Content builder short codes appearing on webpage -


my website has been attached malware , trying reinstate website doing fresh install. have set localhost ensure installation working before migrating host server. have done necessary installations can think of , running php v 5.6, mysql, , joomla 3.5, sppagebuilder free v 1.3., shaper_qubic - default template. set displays webpages alright sp bulder codes in front end pages. not cool , have reinstalled , updated every plug in problem doesnt go away. here screen shot of facing. enter image description here

i have no idea else , have exhausted search materials solution.

my problem above led me sp page builder section of joomla found ugly look. enter image description here

seems query sp_page builder hits snag cant think far root cause , how fix it. thought database culprit checked database section joomla , seems pretty okay per screen shot below.

enter image description here

i kindly awesome, helpful, big heart, gurus here me figure out.

thanks inputs.


my sincere amit , extending hand. have followed answer , here updates. thing, error message on sp_pagebuilder page gone. yay!... not thing, com_sppagebuilder_error_page_not_found when open website. :( guess important mention shaper_qubic - default template. how can fix please? enter image description here

enter image description here

enter image description here

i did littile snooping around , digging , found out addons installed on webhost not exist on localhost. these addons used create content on webhost , result, absence causing same contents on localhost not show well. how can addons webhost match on localhost without having purchase nor reinstall them? here of addons nicked: contact form, animated number, audio, block number, blockquote, button group, call action, clients, drop cap, google map, image content, modal popup, person, pie progress, pricing table, progress bar, raw html, soundcloud.

attached below screnshot of comparing addons on localhost , webhost respectively. enter image description here

after going throught extension have found out mistakes donein extension. first when uninstall component should uninstall uninstall file empty. if uninstall old database there. wont update when reinstall. if @ 1.0.7-2015-10-12.sql file in admin/sql/updates find line

alter table `#__sppagebuilder` add `catid` int(10) not null after `published`; 

which means added later in version 1.0.7. had earlier version not having catid.

solution:

  1. first delete sp pagebuilder tables have delete 2 tables manually phpmyadmin. tables #__sppagebuilder , #__spmedia (replace #_ table prefix. can see other tables prefix in database).

  2. after deleting 2 tables have install tables again using code. run through sql.

    create table if not exists `#__sppagebuilder` (        `id` bigint(20) unsigned not null auto_increment,        `title` varchar(255) not null,        `alias` varchar(255) not null default '',        `text` mediumtext not null,        `published` tinyint(3) not null default '1',        `catid` int(10) not null default '0',        `access` int(10) not null default '0',        `ordering` int(11) not null default '0',        `created_time` datetime not null default '0000-00-00 00:00:00',        `created_user_id` bigint(20) not null default '0',        `modified_time` datetime not null default '0000-00-00 00:00:00',        `modified_user_id` bigint(20) not null default '0',        `og_title` varchar(255) not null,        `og_image` varchar(255) not null,        `og_description` varchar(255) not null,        `page_layout` varchar(55) default null,        `language` char(7) not null,        `hits` bigint(20) not null default '0',        primary key (`id`)      ) engine=innodb default charset=utf8;                  create table if not exists `#__spmedia` (        `id` bigint(20) unsigned not null auto_increment,        `title` varchar(255) not null,        `path` varchar(255) not null,        `thumb` varchar(255) not null,        `alt` varchar(255) not null,        `caption` varchar(2048) not null,        `description` mediumtext not null,        `type` varchar(100) not null default 'image',        `extension` varchar(100) not null,        `created_on` datetime not null default '0000-00-00 00:00:00',        `created_by` bigint(20) not null default '0',        `modified_on` datetime not null default '0000-00-00 00:00:00',        `modified_by` bigint(20) not null default '0',        primary key (`id`)      ) engine=innodb default charset=utf8;

replace #_ table prefix. enter image description here


Comments

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -