Vertical images with no formatting

Phoca Gallery - image gallery extension
idesignit
Phoca Newbie
Phoca Newbie
Posts: 4
Joined: 27 Feb 2015, 15:34

Vertical images with no formatting

Post by idesignit »

Upgraded from Joomla 2.5.28 to Joomla 3.4. New site is not properly formatting pictures. Just a plain photo with no template formatting. Site is bulkseedsystems.com. Photos link is categories view. Viewing a category is bad too. No columns and not properly formatted. I tried downloading and installing the blue template to fix but nothing changed. Later I read that those templates are for Joomla 2.5?
Thanks for your help.
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 49144
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Vertical images with no formatting

Post by Jan »

Hi, do you mean themes? Yes, there is no theme for Joomla! 3 yet.

What exactly is wrong formatted on your site, can you paste a screenshot (e.g. per imgur). What happen when you test it with another template?

Jan
If you find Phoca extensions useful, please support the project
idesignit
Phoca Newbie
Phoca Newbie
Posts: 4
Joined: 27 Feb 2015, 15:34

Re: Vertical images with no formatting

Post by idesignit »

I did finally figure it out. I had to manually create the table column for theme but that wasn't enough, I also had to populate it with the correct information.
I found the sql code here public_html/administrator/components/com_phocagallery/install/sql/mysql/install.utf8.sql

I had done the Create Table but not the Insert Into.

CREATE TABLE IF NOT EXISTS `#__phocagallery_styles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL DEFAULT '',
`alias` varchar(255) NOT NULL DEFAULT '',
`filename` varchar(255) NOT NULL DEFAULT '',
`menulink` text,
`type` tinyint(1) NOT NULL DEFAULT '0',
`published` tinyint(1) NOT NULL DEFAULT '0',
`checked_out` int(11) unsigned NOT NULL DEFAULT '0',
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ordering` int(11) NOT NULL DEFAULT '0',
`params` text,
`language` char(7) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8 ;

INSERT INTO `#__phocagallery_styles` (`id`, `title`, `alias`, `filename`, `menulink`, `type`, `published`, `checked_out`, `checked_out_time`, `ordering`, `params`, `language`) VALUES
(1, 'Phocagallery', 'phocagallery', 'phocagallery.css', '', 1, 1, 0, '0000-00-00 00:00:00', 1, NULL, '*'),
(2, 'Rating', '', 'rating.css', NULL, 1, 1, 0, '0000-00-00 00:00:00', 2, NULL, '*'),
(3, 'Default', '', 'default.css', NULL, 2, 1, 0, '0000-00-00 00:00:00', 3, NULL, '*'),
(4, 'Bootstrap', '', 'bootstrap.min.css', NULL, 1, 0, 0, '0000-00-00 00:00:00', 4, NULL, '*');
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 49144
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Vertical images with no formatting

Post by Jan »

Ok
If you find Phoca extensions useful, please support the project
Post Reply