1 / 1

kirra
Télécharger la présentation

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. -- phpMyAdmin SQL Dump -- version 3.5.1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Dec 02, 2013 at 09:05 AM -- Server version: 5.5.33 -- PHP Version: 5.3.17 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; 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 utf8 */; -- -- Database: `socialyou` -- -- -------------------------------------------------------- -- -- Table structure for table `contact` -- CREATE TABLE IF NOT EXISTS `contact` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(250) DEFAULT NULL, `phone` varchar(50) DEFAULT NULL, `email` varchar(100) DEFAULT NULL, `metro` varchar(250) DEFAULT NULL, `bus` varchar(250) DEFAULT NULL, `tram` varchar(250) DEFAULT NULL, `google_maps` varchar(1024) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `contact` -- INSERT INTO `contact` (`id`, `title`, `phone`, `email`, `metro`, `bus`, `tram`, `google_maps`) VALUES (1, 'Учебен център Лозенец', '+359 87 99 999 47,+359 87 77 293 66', 'lozenets@advance-edu.org', 'Метростанция "Европейски Съюз"', 'Автобуси No 94 и 120', 'Трамвай No 6', 'https://maps.google.com/maps?q=%D0%B1%D1%83%D0%BB%D0%B5%D0%B2%D0%B0%D1%80%D0%B4+%E2%80%9E%D0%90%D1%80%D1%81%D0%B5%D0%BD%D0%B0%D0%BB%D1%81%D0%BA%D0%B8%E2%80%9C+5,+1421+%D0%A1%D0%BE%D1%84%D0%B8%D1%8F,+%D0%91%D1%8A%D0%BB%D0%B3%D0%B0%D1%80%D0%B8%D1%8F&hl=bg&ie=UTF8&sll=42.683003,23.321743&sspn=0.031075,0.066047&hnear=%D0%B1%D1%83%D0%BB%D0%B5%D0%B2%D0%B0%D1%80%D0%B4+%E2%80%9E%D0%90%D1%80%D1%81%D0%B5%D0%BD%D0%B0%D0%BB%D1%81%D0%BA%D0%B8%E2%80%9C+5,+1421+%D0%A1%D0%BE%D1%84%D0%B8%D1%8F,+%D0%91%D1%8A%D0%BB%D0%B3%D0%B0%D1%80%D0%B8%D1%8F&t=m&z=14&iwloc=A'); -- -------------------------------------------------------- -- -- Table structure for table `menus` -- CREATE TABLE IF NOT EXISTS `menus` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID pf the menu. Unique for every entry', `title` varchar(255) NOT NULL COMMENT 'Text of the entry', `url` varchar(1024) NOT NULL COMMENT 'URL where the menu leads', `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'The super entry. Null for top.', `minipic` varchar(255) DEFAULT NULL, `status` enum('active','nonactive') NOT NULL DEFAULT 'nonactive', `position` enum('top','left','right','bottom') NOT NULL COMMENT 'Position', `order` int(10) unsigned NOT NULL, `language` varchar(2) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=198 ; -- -- Dumping data for table `menus` -- INSERT INTO `menus` (`id`, `title`, `url`, `parent_id`, `minipic`, `status`, `position`, `order`, `language`) VALUES (38, 'За нас', '/pages/about', 18, '', 'active', 'top', 195, NULL), (48, 'Main menu', '/', NULL, NULL, 'active', 'top', 48, 'en'), (166, 'Home', '/en/welcome', 48, '', 'active', 'top', 166, NULL), (168, 'News', '/en/pages/news', 48, '', 'active', 'top', 169, NULL), (169, 'Contact Us', '/en/contact/request/contact', 48, '', 'active', 'top', 197, NULL), (170, 'About us', '/pages/about/', 48, '', 'active', 'top', 170, NULL), (174, 'Екип', '/pages/view/136/karieri', 174, '', 'active', 'top', 174, NULL), (196, 'Начало', '/welcome', 18, '', 'active', 'top', 164, NULL), (195, 'Услуги', '/pages/services/', 18, '', 'active', 'top', 173, NULL), (181, 'Контакт', '/contact/request/contact', 18, '', 'active', 'top', 196, NULL), (45, 'Новини', '/pages/news/', 18, '', 'active', 'top', 181, NULL), (18, 'Главно меню', '/', NULL, NULL, 'active', 'top', 0, 'bg'), (197, 'Services', '/en/pages/services/', 48, '', 'active', 'top', 168, NULL); -- -------------------------------------------------------- -- -- Table structure for table `pages` -- CREATE TABLE IF NOT EXISTS `pages` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title_url` varchar(255) NOT NULL COMMENT 'Title in the URL only in latin', `title` varchar(1024) NOT NULL COMMENT 'Tite attribute. No HTML', `content` text NOT NULL COMMENT 'Can be HTML', `date_create` datetime NOT NULL COMMENT 'Date of creation', `date_edit` datetime NOT NULL COMMENT 'When is page edited', `status` enum('active','nonactive') NOT NULL DEFAULT 'nonactive', `type` enum('page','news','project','advice','business','promotion') NOT NULL DEFAULT 'page' COMMENT 'Page or a news or else', `mini_pic` varchar(255) DEFAULT NULL, `top` enum('yes','no') NOT NULL DEFAULT 'no', `description_short` varchar(1400) DEFAULT NULL, `slidebar` enum('yes','no') NOT NULL DEFAULT 'no', `video` varchar(2024) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=148 ; -- -- Dumping data for table `pages` -- INSERT INTO `pages` (`id`, `title_url`, `title`, `content`, `date_create`, `date_edit`, `status`, `type`, `mini_pic`, `top`, `description_short`, `slidebar`, `video`) VALUES (140, 'Lorem-ipsum-dolor-sit-amet', 'Lorem ipsum dolor sit amet', '<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.</p>', '2013-10-27 19:20:30', '2013-10-27 19:20:30', 'active', 'page', '', '', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.', '', NULL), (144, 'monitoring-i-obratna-vryzka-s-klienta-', 'Мониторинг и обратна връзка с клиента ', '<p>Нашите социални изследвания и мониторинг на услугите ни позволяват да ви осигурим по-ясна и актуална картина на вашата операционна среда. Комуникацията&nbsp; с клиентите е от особено значение за подобряване качеството на вашите услуги или продукти, както и за подобряване на финансовия растеж на компанията ви.</p>', '2013-11-22 14:01:05', '2013-11-29 15:39:35', 'active', 'business', '', '', '', '', ''), (145, 'analiz', 'Анализ', '<p>Съвременните технологии позволяват изграждането на точен анализ за това как се възприема от потребителите вашата марка. Ние създаваме и развиваме, растежа онлайн общностите&nbsp; за вашия бранд.&nbsp; SocialYou разработва цялостното&nbsp; представяне на компаниите в социалните медии с оптимизиране на присъствието&nbsp; в социалните мрежи.&nbsp; Ние следим потребителския интерес и с подходящо управление имаме достъп до информация, с която ще изградим необходимия анализ за вашия бранд. Общностите в социалните медии, които изграждаме и развиваме специално за вас&nbsp; ще доведат до увеличаване на ангажираността и лоялността на клиентите ви. Крайната цел на този анализ е изпълнението на вашите бизнес цели и подобряване на бизнес идеите.&nbsp;</p>', '2013-11-22 14:02:40', '2013-11-29 15:57:41', 'active', 'business', '', '', '', '', ''), (146, 'izgrajdane-i-start-v-socialnite-medii', 'Изграждане и старт в социалните медии', '<p>Ние използваме опита и познанията си за цялостно изграждане, изпълнението и поддържане на вашите социални кампании в интернет пространството. Използвайки максимално влиянието, което социалните медии предлагат, ние бързо&nbsp; постигаме бизнес целите ви и&nbsp; по този начин осигуряваме възвращаемост на инвестициите ви. Ние участваме в определянето на маркетинговите цели на вашия бранд и използваме най-подходящите и успешни&nbsp; услуги на социалните медии. В зависимост от вашите изисквания и специфика ние гарантираме стратегии за популяризиране на бизнеса ви в социалните медии и създаването на подходяща социална политика за вашата марка.&nbsp;</p>', '2013-11-22 14:03:33', '2013-11-28 16:32:16', 'active', 'business', '', '', '', '', NULL), (147, 'silata-na-SocialYou-v-socialnite-mreji', 'Силата на SocialYou в социалните мрежи.', '<p>По последни данни потребителите във Facebook са над <strong>1 милиард. </strong>Предлага се в над 70 езика. Потребителите на социалната мрежа се групират по географско положение, месторабота, учебни заведения, интереси и други.</p>\n<p>През януари 2013 Фейсбук има почти 700 млн. активни потребители. Те представляват 51% от потребителите на интернет в света. Към март 2013 г. съществуват и &bdquo;Facebook приложения&ldquo; за почти всеки нов смартфон, като по този начин хората имат възможност да поддържат връзка със социалната мрежа по всяко време и място. Изграждайки репутацията на своя бранд в социалните мрежи, вие може бързо, лесно и икономично да достигнете до своите потребители. Средното време, което потребител прекарва във Facebook, е 55 минути. Българските потребители са над 2 милиона, което в цифри означава, че <strong>30.98%</strong> от населението на България използва Facebook, а <strong>65,24%</strong> от интернет потребителите в България са регистрирани в социалната мрежа и са потенциална аудитория. 31% от тези потребители са на възраст между 25 и 34 години, 26% между 35 и 44 години, а около 7% са потребителите на възраст между 45 и 54 години и под 17 годишна възраст. Информацията, която тези потребители оставят във Facebook като пол, георграфско положение, години, интереси участва в дефинирането на маркетинговите цели и откриването на ефективните канали за комуникация. Вашата реклама във Facebook може да достигне бързо до търсения от вас таргет. Освен това е много важна обратната връзка с клиентите и анализът, който помога за доразвиване на вашите продукти. Чрез Facebook вие ще откриете точния целеви пазар за вашите продукти или услуги и ще се възползвате максимално от социалните връзки между хората, за да популяризирате идеите си. Нашата цел е първо да определим основните характеристики на търсените от вас потребители и да изградим &nbsp;платформа в социалните медии, с която ще комуникираме вашите идеи. След това ние ще използваме максимално силата на социалните мрежи и безграничните рекламни пространства там, за популяризиране на бранда. Екипът на SocialYou предлага качествено и ефективно обслужване на вашето присъствие в социалните медии. &nbsp;С използването на Facebook, Twitter, Linkedln, Youtube, Google+ и всички останали популярни мрежи ние ще достигнем най- бързо до търсените цели, а именно подходяща, ефективна и работеща рекламна кампания за вашия бизнес. Същевременно ще получавате актуални анализи относно успеха, мащаба и развитието на рекламната ви кампания.&nbsp;</p>', '2013-11-24 23:00:34', '2013-11-29 16:19:25', 'active', 'news', 'http://93.152.156.134/socialyou.bg/files/image_gallery/2013-11-29-11-43-17-shutterstock_38502889.jpg', '', 'Нашите предложения', '', ''); -- -------------------------------------------------------- -- -- Table structure for table `pages_trans` -- CREATE TABLE IF NOT EXISTS `pages_trans` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `page_id` int(10) unsigned NOT NULL, `language` varchar(2) CHARACTER SET utf8 NOT NULL, `title` varchar(255) CHARACTER SET utf8 NOT NULL, `content` text CHARACTER SET utf8 NOT NULL, `description_short` varchar(1400) CHARACTER SET utf8 DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=33 ; -- -- Dumping data for table `pages_trans` -- INSERT INTO `pages_trans` (`id`, `page_id`, `language`, `title`, `content`, `description_short`) VALUES (29, 147, 'en', 'The power of SocialYou in Social Media', '<p>According to latest research, Facebook has over 1 billion users. It&rsquo;s available in more than 70 languages. Users of the social network are grouped by geographic location, employment, schools, interests and etc.<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; In January 2013, Facebook has nearly 700 million active users. They represent 51% of all internet users in the world. As of March 2013, there are applications for almost every new smartphone, so that people are able to keep in touch with the social network at any time and every place.<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Building the reputation of your brand in the social network, you can quickly, easily and economically reach your customers. The average time spent by a user in Facebook is 55 minutes. Bulgarian users are over 2 million which in numbers mean that 30.98% of Bulgaria&rsquo;s population uses Facebook, and 65.24% of internet users in Bulgaria are registered in the social network and are a potential audience. 31% of these users are between 25 and 34 years old, 26% between 35 and 44 and about 7% of users are between 45 and 54 as well as under the age of 17.</p>\n<p>The information these users put in Facebook such as gender, geographical location, age and interests takes part in defying marketing objectives and finding effective ways of communication.</p>\n<p>Your advertisement can quickly reach your desired target. Customer feedback and analysis is also very important and helps to further develop your products. Trough Facebook&nbsp; you will find the right market for your products or services and you can finally take advantage of the social connections between people to promote your ideas. Our goal is first to identify the basic characteristics of the customer you look for and to build a platform in social media, with which we will communicate your ideas. Then we will use the maximum potential of social networks and the limitless advertising spaces there to promote your brand.</p>\n<p>SocialYou&nbsp; offers&nbsp; you efficient and quality services to your presence in social media. Using Facebook, Twitter, LinkedIn, Youtube, Google+ and other popular networks we will quickly reach the desired objective, namely, appropriate, efficient and working advertisement campaign for your business. At the same time, you will receive the latest analysis regarding the success, scale and development of your advertising campaign.</p>', NULL), (30, 146, 'en', 'Build and launch social media ', '<p>We use our experience and knowledge to complete construction , implementation and maintenance of your social campaigns on the web. Using the maximum impact that social media offer , we quickly achieve your business goals and thus ensure return on your investment . We are involved in setting marketing objectives of your brand and use the most appropriate and successful services to social media. Depending on your specific requirements we guarantee strategies to promote your business on social media and the creation of appropriate public policies for your brand.</p>', NULL), (31, 144, 'en', 'Monitoring and Customer Feedback', '<p>Our social research and monitoring over services allow us to provide you with a clearer and more actual image of your operating environment. Communication with clients is essential for improving the quality of your services and products, as well as improving the financial growth of your company.</p>', NULL), (32, 145, 'en', 'Analysis', '<p>Modern technologies allow the construction of an accurate analysis of how consumers perceive your brand. We design and develop the online communities for your brand. SocialYou develops the overall performance of companies in social media optimization presence in social networks. We monitor consumer interest and appropriate management have access to information that will build the necessary analysis for your brand. Communities in social media , we build and develop for you, will increase the commitment and loyalty of your customers . The ultimate goal of this analysis is fulfilling your business goals and improve your business ideas .</p>', NULL); -- -------------------------------------------------------- -- -- Table structure for table `pictures` -- CREATE TABLE IF NOT EXISTS `pictures` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `content_id` int(10) unsigned DEFAULT NULL COMMENT 'ID to linked page', `filename_original` varchar(255) DEFAULT NULL, `filename` varchar(255) NOT NULL, `type` enum('png','jpg','gif') NOT NULL, `content_type` enum('product','page','news','slide','user','contact') DEFAULT NULL COMMENT 'Type of content to which picture is linked to.', `category` enum('main','small','gallery') NOT NULL, `main` tinyint(1) DEFAULT '0', `floorplan` tinyint(1) DEFAULT '0', `order` int(10) unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3166 ; -- -- Dumping data for table `pictures` -- INSERT INTO `pictures` (`id`, `content_id`, `filename_original`, `filename`, `type`, `content_type`, `category`, `main`, `floorplan`, `order`) VALUES (3154, NULL, 'shutterstock_38502889.jpg', '2013-11-29-11-43-17-shutterstock_38502889.jpg', 'jpg', NULL, 'gallery', 1, 0, 0), (3155, NULL, 'shutterstock_102676616.jpg', '2013-11-29-11-43-17-shutterstock_102676616.jpg', 'jpg', NULL, 'gallery', 0, 0, 0), (3156, NULL, 'shutterstock_106001615.jpg', '2013-11-29-11-43-17-shutterstock_106001615.jpg', 'jpg', NULL, 'gallery', 0, 0, 0), (3157, NULL, 'shutterstock_107929916.jpg', '2013-11-29-11-43-18-shutterstock_107929916.jpg', 'jpg', NULL, 'gallery', 0, 0, 0), (3158, NULL, 'shutterstock_109405898.jpg', '2013-11-29-11-43-18-shutterstock_109405898.jpg', 'jpg', NULL, 'gallery', 0, 0, 0), (3159, NULL, 'shutterstock_110207315.jpg', '2013-11-29-11-43-18-shutterstock_110207315.jpg', 'jpg', NULL, 'gallery', 0, 0, 0), (3160, NULL, 'shutterstock_118462969.jpg', '2013-11-29-11-43-18-shutterstock_118462969.jpg', 'jpg', NULL, 'gallery', 0, 0, 0), (3161, NULL, 'shutterstock_142027168.jpg', '2013-11-29-11-43-18-shutterstock_142027168.jpg', 'jpg', NULL, 'gallery', 0, 0, 0), (3162, NULL, 'shutterstock_142027168.jpg', '2013-11-29-11-44-49-shutterstock_142027168.jpg', 'jpg', NULL, 'gallery', 0, 0, 0), (3163, NULL, 'shutterstock_142027168_01.jpg', '2013-11-29-11-44-49-shutterstock_142027168_01.jpg', 'jpg', NULL, 'gallery', 0, 0, 0), (3164, NULL, 'shutterstock_147374900.jpg', '2013-11-29-11-44-50-shutterstock_147374900.jpg', 'jpg', NULL, 'gallery', 0, 0, 0), (3165, NULL, 'shutterstock_154457633.jpg', '2013-11-29-11-44-50-shutterstock_154457633.jpg', 'jpg', NULL, 'gallery', 0, 0, 0); -- -------------------------------------------------------- -- -- Table structure for table `questionings` -- CREATE TABLE IF NOT EXISTS `questionings` ( `id` int(10) NOT NULL AUTO_INCREMENT, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `first_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `second_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `family_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `phone` int(50) NOT NULL, `skype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `city` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `hours` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `content` text COLLATE utf8_unicode_ci NOT NULL, `type` enum('contact') CHARACTER SET utf8 NOT NULL, `q_date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `questionings` -- INSERT INTO `questionings` (`id`, `email`, `name`, `first_name`, `second_name`, `family_name`, `phone`, `skype`, `city`, `address`, `hours`, `content`, `type`, `q_date`) VALUES (1, 'galin.georgiev92@gmail.com', 'Галин', '', '', '', 0, '', '0', '', '', 'das', '', '2013-11-22 15:10:20'); -- -------------------------------------------------------- -- -- Table structure for table `settings` -- CREATE TABLE IF NOT EXISTS `settings` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `value` text NOT NULL, `language` varchar(2) DEFAULT NULL, `order` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=155 ; -- -- Dumping data for table `settings` -- INSERT INTO `settings` (`id`, `name`, `value`, `language`, `order`) VALUES (1, 'title', 'Social You', 'bg', 0), (2, 'description', 'Social You', 'bg', 0), (3, 'keywords', 'Social You', 'bg', 0), (4, 'about_us', '<p>Ние сме много повече от компания, предлагаща пълно обслужване в сферата на недвижимите имоти. Ние сме екип от талантливи хора, изпълнени с енергия и иновативен дух.</p>\n<p>От продажба или наем&nbsp;на имот, консултиране за&nbsp;ипотечен кредит,&nbsp;маркетинг и продажба на нови или съществуващи проекти в търговски, жилищни или ваканционни имоти, земеделски терени и парцели, а също и учредяване на право за строеж, ние можем да осигурим топ експерти и консултанти, които ще ви съпровождат с умение и грижа от самото начало до края на проекта или сделката с имоти.</p>\n<p>С богатия си професионален опит и знания във всеки аспект на бизнеса, силно мотивирани от&nbsp;оценката&nbsp;на клиентите, ние&nbsp;ще продължаваме и занапред да създаваме стойност в бизнеса с недвижими имоти!</p>', 'bg', 0), (54, 'email', 'office@socialyou.bg', 'bg', 0), (55, 'email', 'office@socialyou.bg', 'en', 0), (63, 'contacts', '<p>+359 87 99 999 47 - Лозенец, +359 87 94 999 47 - Младост, +359 87 95 999 47 - Плиска</p>', 'bg', 0), (56, 'contacts', '<p>+359 885 999 752</p>', 'en', 0), (72, 'title', 'Social You', 'bg', 0), (73, 'description', 'Social You', 'bg', 0), (7, 'title', 'Social You', 'en', 0), (99, 'email', 'office@socialyou.bg', 'bg', 0), (52, 'about_us', '<p><em>Идеята, която вдъхнови екипа ни да изградим<strong> ADVANCE</strong> като едно различно място за обучение, предпочитано от хората на новото време, е да насърчаваме напредъка на отделната личност, да спомагаме за възпитаването на положителни ценности, да подкрепяме цялостното, пълноценно развитие на отделния човек и така, на свой ред, да бъдем полезни за развитието и напредъка на цялото ни общество.</em></p>\n<p><em>&nbsp;За нас, важни стъпки по пътя към този напредък са натрупването на задълбочени знания, които обогатяват и разгръщат необятни хоризонти, развиването на умения и стратегии за тяхното прилагане в едно с утвърждаването на способни, мислещи, устремени и уверени в силите си личности.</em></p>', 'bg', 0), (8, 'description', 'Social You', 'en', 0), (9, 'keywords', 'Social You', 'en', 0), (98, 'keywords', 'Social You s', 'bg', 0), (10, 'about_us', '<p>Marketing is increasingly gaining popularity in social media. Beside reaching a large amount of users, there are other goals you can set up and accomplish trough us. Managing and improving the reputation of the brand, research and survey of public opinion, expanding the popularity of the brand, improving client services. These are merely a part of the result which we can achieve together. All these goals can be realized with the professional marketing strategy of SocialYou in social media, which is a key indicator for success.<br />SocialYou team assures you of our professionalism, commitment, influence and profitable operations.</p>', 'en', 0), (74, 'keywords', 'Social You', 'bg', 0), (75, 'email', 'design.force.ltd@gmail.com', 'bg', 0), (76, 'about_us', '<p>office@socialyou.bg</p>', 'bg', 0), (77, 'contacts', '<p>+359 885 999 752</p>', 'bg', 0), (78, 'title', 'Social You', 'bg', 0), (79, 'description', 'Social You', 'bg', 0), (80, 'keywords', 'Social You', 'bg', 0), (81, 'email', 'office@socialyou.bg', 'bg', 0), (82, 'about_us', '', 'bg', 0), (83, 'contacts', '<p>+359 885 999 752</p>', 'bg', 0), (84, 'title', 'Social You', 'bg', 0), (85, 'description', 'Social You', 'bg', 0), (86, 'keywords', 'Social You', 'bg', 0), (87, 'email', 'design.force.ltd@gmail.com', 'bg', 0), (88, 'about_us', '', 'bg', 0), (89, 'contacts', '<p>+359 885 999 752</p>', 'bg', 0), (90, 'title', 'Social You', 'bg', 0), (91, 'description', 'Social You', 'bg', 0), (92, 'keywords', 'Social You', 'bg', 0), (93, 'email', 'office@socialyou.bg', 'bg', 0), (94, 'about_us', '<p>zz</p>', 'bg', 0), (95, 'contacts', '<p>+359 885 999 752</p>', 'bg', 0), (96, 'title', 'Social You s', 'bg', 0), (97, 'description', 'Social You s', 'bg', 0), (65, 'start_course', '174', NULL, 0), (50, 'keywords', 'Учи английски в ADVANCE - ADVANCE - Курсове по английски език', 'bg', 0), (49, 'description', 'Учи английски в ADVANCE - ADVANCE - Курсове по английски език', 'bg', 0), (57, 'contacts', '+359 87 99 999 47 - Лозенец, +359 87 94 999 47 - Младост, +359 87 95 999 47 - Плиска ', 'bg', 0), (46, 'start_page_en', '140', NULL, 0), (36, 'description', 'Учи английски в ADVANCE - ADVANCE - Курсове по английски език', 'bg', 0), (37, 'keywords', 'Учи английски в ADVANCE - ADVANCE - Курсове по английски език', 'bg', 0), (39, 'about_us', '<p><em>Идеята, която вдъхнови екипа ни да изградим<strong> ADVANCE</strong> като едно различно място за обучение, предпочитано от хората на новото време, е да насърчаваме напредъка на отделната личност, да спомагаме за възпитаването на положителни ценности, да подкрепяме цялостното, пълноценно развитие на отделния човек и така, на свой ред, да бъдем полезни за развитието и напредъка на цялото ни общество.</em></p>\r\n<p><em>&nbsp;За нас, важни стъпки по пътя към този напредък са натрупването на задълбочени знания, които обогатяват и разгръщат необятни хоризонти, развиването на умения и стратегии за тяхното прилагане в едно с утвърждаването на способни, мислещи, устремени и уверени в силите си личности.</em></p>', 'bg', 0), (47, 'start_page_bg', '140', NULL, 0), (66, 'title', 'Social You', 'bg', 0), (67, 'description', 'Social You', 'bg', 0), (68, 'keywords', 'Social You', 'bg', 0), (69, 'email', 'office@socialyou.bg', 'bg', 0), (70, 'about_us', '', 'bg', 0), (71, 'contacts', '<p>+359 885 999 752</p>', 'bg', 0), (100, 'about_us', '', 'bg', 0), (101, 'contacts', '<p>+359 885 999 752</p>', 'bg', 0), (102, 'decision', '', 'bg', 0), (103, 'decision_text', '', 'bg', 0), (104, 'about_title', '', 'bg', 0), (105, 'about_subtitle', '', 'bg', 0), (106, 'decision', 'Effective and proven solutions', 'en', 0), (107, 'decision_text', '<p>SocialYou offers effective and proven solutions to all, who want to popularize their brand, to attract huge amount of users and clients. Using all the channels of social media, SocialYou will help you bring the attention of a larger auditory, to build durable relations with your clients, which will lead to an increase of your incomes.</p>', 'en', 0), (108, 'about_title', '', 'en', 0), (109, 'about_subtitle', 'Marketing on social networks', 'en', 0), (110, 'title', 'Social You', 'bg', 0), (111, 'description', 'Social You', 'bg', 0), (112, 'keywords', 'Social You', 'bg', 0), (113, 'email', 'office@socialyou.bg', 'bg', 0), (114, 'about_us', '<p>Все по-голяма популярност набира маркетингът в социалните медии. Освен достигането до голям брой потребители, съществуват и други цели, които да поставите и постигнете чрез нас. Управление и подобряване на репутацията на бранда, проучвания и барометър на общественото мнение, повишаване на популярността на бранда, подобряване на обслужването на клиентите. Това са само част от резултатите, до които можем да достигнем заедно. Всички тези цели могат да бъдат изпълнени с професионалните маркетингови стратегиите на SocialYou в социалните медии, което е ключов индикатор за успех.</p>', 'bg', 0), (115, 'decision', 'Ефективни и доказани решения', 'bg', 0), (116, 'decision_text', '<p>SocialYou предлага ефективни и доказани решения за всички, които искат да популяризират своя бранд, да привлекат голям брой потребители и клиенти. Чрез използването на всички канали на социалните мрежи SocialYou ще ви помогне да спечелите вниманието на по-голяма част от аудиторията, да изградите трайни взаимоотношения с клиентите си, което ще доведе до повишаване на печалбите.</p>', 'bg', 0), (117, 'about_title', 'За нас', 'bg', 0), (118, 'about_subtitle', 'Маркетингът в социалните мрежи', 'bg', 0), (119, 'contacts', '<p>+359 885 999 752</p>', 'bg', 0), (120, 'services_title', '', 'bg', 0), (121, 'services_title', 'We help your business to be more social, to build lasting relationships with customers and achieve your business goals by building a comprehensive platform in social media.', 'en', 0), (122, 'title', 'Social You', 'bg', 0), (123, 'description', 'Social You', 'bg', 0), (124, 'keywords', 'Social You', 'bg', 0), (125, 'email', 'office@socialyou.bg', 'bg', 0), (126, 'about_us', '<p>Все по-голяма популярност набира маркетингът в социалните медии. Освен достигането до голям брой потребители, съществуват и други цели, които да поставите и постигнете чрез нас. Управление и подобряване на репутацията на бранда, проучвания и барометър на общественото мнение, повишаване на популярността на бранда, подобряване на обслужването на клиентите. Това са само част от резултатите, до които можем да достигнем заедно. Всички тези цели могат да бъдат изпълнени с професионалните маркетингови стратегиите на SocialYou в социалните медии, което е ключов индикатор за успех.</p>', 'bg', 0), (127, 'decision', 'Ефективни и доказани решения', 'bg', 0), (128, 'decision_text', '<p>SocialYou предлага ефективни и доказани решения за всички, които искат да популяризират своя бранд, да привлекат голям брой потребители и клиенти. Чрез използването на всички канали на социалните мрежи SocialYou ще ви помогне да спечелите вниманието на по-голяма част от аудиторията, да изградите трайни взаимоотношения с клиентите си, което ще доведе до повишаване на печалбите.</p>', 'bg', 0), (129, 'about_title', 'За нас', 'bg', 0), (130, 'about_subtitle', 'Маркетингът в социалните мрежи', 'bg', 0), (131, 'services_title', 'Ние помагаме на вашия бизнес да бъде по-социален, да изгради трайни връзки спотребителите и да постигне желаите бизнес цели чрез изграждане на цялостна платформа в социалните медии', 'bg', 0), (132, 'contacts', '<p>+359 885 999 752</p>', 'bg', 0), (133, 'title', 'Social You', 'bg', 0), (134, 'description', 'Social You', 'bg', 0), (135, 'keywords', 'Social You', 'bg', 0), (136, 'email', 'office_o@socialyou.bg', 'bg', 0), (137, 'about_us', '<p>Все по-голяма популярност набира маркетингът в социалните медии. Освен достигането до голям брой потребители, съществуват и други цели, които да поставите и постигнете чрез нас. Управление и подобряване на репутацията на бранда, проучвания и барометър на общественото мнение, повишаване на популярността на бранда, подобряване на обслужването на клиентите. Това са само част от резултатите, до които можем да достигнем заедно. Всички тези цели могат да бъдат изпълнени с професионалните маркетингови стратегиите на SocialYou в социалните медии, което е ключов индикатор за успех.</p>', 'bg', 0), (138, 'decision', 'Ефективни и доказани решения', 'bg', 0), (139, 'decision_text', '<p>SocialYou предлага ефективни и доказани решения за всички, които искат да популяризират своя бранд, да привлекат голям брой потребители и клиенти. Чрез използването на всички канали на социалните мрежи SocialYou ще ви помогне да спечелите вниманието на по-голяма част от аудиторията, да изградите трайни взаимоотношения с клиентите си, което ще доведе до повишаване на печалбите.</p>', 'bg', 0), (140, 'about_title', 'За нас', 'bg', 0), (141, 'about_subtitle', 'Маркетингът в социалните мрежи', 'bg', 0), (142, 'services_title', 'Ние помагаме на вашия бизнес да бъде по-социален, да изгради трайни връзки спотребителите и да постигне желаите бизнес цели чрез изграждане на цялостна платформа в социалните медии', 'bg', 0), (143, 'contacts', '<p>+359 885 999 752</p>', 'bg', 0), (144, 'title', 'Social You', 'bg', 0), (145, 'description', 'Social You', 'bg', 0), (146, 'keywords', 'Social You', 'bg', 0), (147, 'email', 'office@socialyou.bg', 'bg', 0), (148, 'about_us', '<p>Все по-голяма популярност набира маркетингът в социалните медии. Освен достигането до голям брой потребители, съществуват и други цели, които да поставите и постигнете чрез нас. Управление и подобряване на репутацията на бранда, проучвания и барометър на общественото мнение, повишаване на популярността на бранда, подобряване на обслужването на клиентите. Това са само част от резултатите, до които можем да достигнем заедно. Всички тези цели могат да бъдат изпълнени с професионалните маркетингови стратегиите на SocialYou в социалните медии, което е ключов индикатор за успех.</p>', 'bg', 0), (149, 'decision', 'Ефективни и доказани решения', 'bg', 0), (150, 'decision_text', '<p>SocialYou предлага ефективни и доказани решения за всички, които искат да популяризират своя бранд, да привлекат голям брой потребители и клиенти. Чрез използването на всички канали на социалните мрежи SocialYou ще ви помогне да спечелите вниманието на по-голяма част от аудиторията, да изградите трайни взаимоотношения с клиентите си, което ще доведе до повишаване на печалбите.</p>', 'bg', 0), (151, 'about_title', 'За нас', 'bg', 0), (152, 'about_subtitle', 'Маркетингът в социалните мрежи', 'bg', 0), (153, 'services_title', 'Ние помагаме на вашия бизнес да бъде по-социален, да изгради трайни връзки спотребителите и да постигне желаите бизнес цели чрез изграждане на цялостна платформа в социалните медии', 'bg', 0), (154, 'contacts', '<p>+359 885 999 752</p>', 'bg', 0); -- -------------------------------------------------------- -- -- Table structure for table `start_page_current` -- CREATE TABLE IF NOT EXISTS `start_page_current` ( `id` int(10) NOT NULL AUTO_INCREMENT, `type` enum('left','middle','right') NOT NULL, `title` varchar(1024) DEFAULT NULL, `subtitle` varchar(1024) DEFAULT NULL, `content` text NOT NULL, `language` varchar(2) DEFAULT NULL, `link` varchar(2024) DEFAULT NULL, `picture` varchar(2048) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=59 ; -- -- Dumping data for table `start_page_current` -- INSERT INTO `start_page_current` (`id`, `type`, `title`, `subtitle`, `content`, `language`, `link`, `picture`) VALUES (1, 'left', 'Силата на SocialYou в социалните медии', '', 'С използването на Facebook, Twitter, Linkedln, Youtube, Google+ и всички останали популярни мрежи ние ще достигнем най- бързо до търсените цели, а именно подходяща, ефективна и работеща рекламна кампания за вашия бизнес. Същевременно ще получавате актуални анализи относно успеха, мащаба и развитието на рекламната ви кампания. ', 'bg', 'http://93.152.156.134/socialyou.bg/bg/pages/news/', 'http://93.152.156.134/socialyou.bg/files/image_gallery/2013-11-29-11-44-49-shutterstock_142027168_01.jpg'), (2, 'left', ' The power of SocialYou in Social Media', '', 'SocialYou offers you efficient and quality services to your presence in social media. Using Facebook, Twitter, LinkedIn, Youtube, Google+ and other popular networks we will quickly reach the desired objective, namely, appropriate, efficient and working advertisement campaign for your business. At the same time, you will receive the latest analysis regarding the success, scale and development of your advertising campaign.', 'en', 'http://93.152.156.134/socialyou.bg/en/pages/news', 'http://93.152.156.134/socialyou.bg/files/image_gallery/2013-11-29-11-44-49-shutterstock_142027168_01.jpg'), (3, 'right', 'Нашите предложения', 'Изграждане и старт в социалните медии', 'Ние помагаме на вашия бизнес да бъде по-социален, да изгради трайни връзки с потребителите и да постигне желаните бизнес цели чрез изграждане на цялостна платформа в социалните медии.', 'bg', 'http://93.152.156.134/socialyou.bg/bg/pages/services/', 'http://93.152.156.134/socialyou.bg/files/image_gallery/2013-11-29-11-43-18-shutterstock_118462969.jpg'), (4, 'right', 'Our services', 'Build and launch social media', 'We help your business to be more social, to build lasting relationships with customers and achieve your business goals by building a comprehensive platform in social media.', 'en', 'http://93.152.156.134/socialyou.bg/en/pages/services/', 'http://93.152.156.134/socialyou.bg/files/image_gallery/2013-11-29-11-43-18-shutterstock_118462969.jpg'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `first_name` varchar(255) NOT NULL, `second_name` varchar(255) DEFAULT NULL, `family_name` varchar(255) NOT NULL, `status` enum('active','nonactive') NOT NULL DEFAULT 'active', `last_login` datetime DEFAULT NULL, `type` enum('sadmin','admin','user','broker') NOT NULL DEFAULT 'user', `city` varchar(255) DEFAULT NULL, `zip` varchar(255) DEFAULT NULL, `address` varchar(255) DEFAULT NULL, `phone` varchar(255) NOT NULL, `renew_password` varchar(34) DEFAULT NULL, `company` varchar(255) DEFAULT NULL, `position` varchar(255) DEFAULT NULL, `education` varchar(255) DEFAULT NULL, `experience` varchar(255) DEFAULT NULL, `heard_from` varchar(255) DEFAULT NULL, `date_register` datetime DEFAULT NULL, `date_activate` datetime DEFAULT NULL, `about` varchar(1600) DEFAULT NULL, `order` int(10) NOT NULL DEFAULT '0', `sync_id` varchar(36) DEFAULT NULL, `administration` enum('no','yes') NOT NULL, `teacher` enum('no','yes') NOT NULL, `academic` enum('no','yes') NOT NULL, `sales_team` enum('no','yes') NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`), UNIQUE KEY `email` (`email`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=51 ; /*!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 */;

More Related