SDKiller
Moderator
   
Репутация: +273/-4
Offline
Сообщений: 2525
...но войти в неё ты должен сам
|
 |
« : 28.10.2011, 06:26:17 » |
|
09.02.2013K2 v2.6.6K2 v2.6.5K2 v2.6.4 Today we're releasing K2 version 2.6.6, a bug fix update which address redirect issues with the newly introduced Advanced SEF options, plus some minor performance improvements. For the impatient, grab the update here: http://getk2.googlecode.com/files/K2_v2.6.6.zip If you are on Joomla! 1.5, grab the zip file from the link above and install it on top of your existing K2 version. If you are on Joomla! 2.5 or 3.0, go to the Joomla! update manager, purge the update cache, re-check and you'll see the new release available to instantly update. If you are on Joomla! 1.6 or 1.7 then someone probably cut off your internet connection a year ago: upgrade to 2.5 now! So what's changed or been updated in this new release in more detail? First off, we fixed 2 bugs related to the new advanced SEF options. For existing sites that switched over to the new "Advanced SEF" options introduced in K2 2.6.4, the URL redirection from the old URL scheme for items to the new one was not working. Additionally, if the item id was removed via these options, then attachment URLs would simply fail to serve the downloads, as well as item edit forms in the frontend. All that is fixed now. We've also added some internal performance improvements and have completely removed the embedded script tag that defined the site's root path (which was used by the rating). K2 will now load 1 CSS and 1 JS file only and it does not embed any JS in the <head> of the template. It will also call the Joomla! modal only when needed (e.g. on frontend editing or in the K2 item page for the xlarge image preview). All K2 feed pages generated automatically will now properly validate their output in either Atom or RSS format. A simple ampersand (&) in the K2 category's name would previously cause that category's feed to fail validation. In the backend, we've added a handy toolbar button to quickly delete any orphan tags, aka tags that are no longer associated to any K2 item. The button is called "Delete orphan tags" and it will make sure your tags database is kept tidy. Furthermore, we've added a new control to filter the tags list by the number of items they are linked to. That way you can easily spot popular vs. unpopular tags in the backend. We have also added a new "language" colum in K2 items and categories so it's easier to spot items/categories that belong to different languages when you're not filtering a specific language. The quick icons will now properly display in Joomla! 3.0's control panel (dashboard). Finally, we have added support for the upcoming Simple Image Gallery Pro version 3, which allows for ultimate image gallery control from within K2's "Image Gallery" tab, including caption/label editing! See what we wrote on the JoomlaWorks blog about Simple Image Gallery Pro version 3. You'll be blown away!  This new release is coming out this Wednesday, April 10th 2013. There are no template changes between 2.6.6 and 2.6.5. For a full list of changes, grab a coffee and check out the list from our SVN server: http://code.google.com/p/getk2/source/list If you notice a bug, please take a moment to report it here: http://code.google.com/p/getk2/issues/list - we check this list more than email k2 2.6.3К2 2.6.2Изменения: For the impatient, grab the update here: http://getk2.googlecode.com/files/K2_v2.6.2.zip If you are on Joomla! 1.5, grab the zip file from the link above and install it on top of your existing K2 version. If you are on Joomla! 2.5 or 3.0, go to the Joomla! update manager, purge the update cache, re-check and you'll see the new release available to instantly update. If you are on Joomla! 1.6 or 1.7 then someone probably cut off your internet connection a year ago: upgrade to 2.5 now! So what's changed or been updated in this new release? Since 2.6.2 is a maintainance release (new features are being moved to the big upgrade called K2 version 3), we have improved existing features and more specifically, the "extra fields" system in K2. 2 new extra field types have been added" image & header. The "image" type uses the K2 media modal which you can use to select existing images or upload new ones by drag and drop. The "header" type is basically a "cosmetic" extra field. You can add "header" extra fields so you can group the field presented in the K2 item edit form (both in the backend and when frontend editing is enabled). This way, long forms with many extra fields are now easier to manage for content editors. There is also the option to display these "header" extra fields in the frontend, in case you also want to add meaningful headers to the extra field data you present on your site. So imagine for example a car database website that lists additional info for a car model: you can use the "header" extra field to add h4 HTML headers and therefore separate/mark/group info like "engine", "body", "tyres", "accessories" etc. It's a small addition, but it can be very helpful to have. One more improvement we've done to the Extra Fields system is the addition of a new switch inside the extra field edit form to make any extra field created required or not. Gone are the days when your content editors forgot to fill in important data into such fields. We also have this option enabled for all extra fields used here on getk2.org. If you submit a new template, extension or site showcase and forget some important fields, you'll see a nice warning informing you what you've forgotten to fill in. Makes everyone happy (including yours truly)... All Extra Fields now also have an "alias" value by default. You can let K2 fill that in or you can just edit it yourself. This is also a small but important addition, especially for template developers and other professionals who make heavy use of K2 overrides. Using these "aliases" now present on all extra fields, developers can directly output specific extra fields wherver they want, without looping through all the extra fields assigned for a given K2 item. It's what we've been doing using a few hacks here on the K2 Extend section of the site. Now things are more elegant. If we want to output just the "Demo" link for a template entry on the right of the template image, we just do that. We don't need to loop through all extra fields in that K2 item or directly check for an extra field based on its name. So how would you directly output individual extra fields in your K2 overrides? Simple. Just do something like this (e.g. in item.php) to get the extra field name: $this->item->extraFields->EXTRAFIELDALIASHERE->name To get the extra field value you would simply do this: $this->item->extraFields->EXTRAFIELDALIASHERE->value Simply replace EXTRAFIELDALIASHERE with the actual alias of the extra field you wish to output. This process is very important for template developers as it allows them to create pre-styled sets of extra fields and provide those to the end user. All they need to do is tell the end user (in the documentation pages) that in order for them to have their extra fields displayed like this or that, they need to reference their actual extra fields with specific extra field aliases. These aliases are the ones the template developers create when building the template. So you have an extra field that acts as a placeholder for "Price" (in English). You use the alias "pricefield" and then a German customer can create their own extra field "Preis", but if they use the correct alias ("pricefield"), then their extra field setup will pick up the correct styling, structure or whatever else you do with it. As you can understand, most of the times you may not even need to split the extra fields inside a given K2 item page. But the fact that you can create the setup and have it work "bulletproof" on any language for your customers, well, that's a really big deal  You will also notice that the Categories list (backend) now has a new column displaying the assigned sub-template for each category. This makes spotting the right sub-template for any category quicker, but remember this: if any of your categories inherit parameters from another one, you'll only see "default" listed for the "Template" column. That's normal, as the options in the K2 category are ignored and instead being inherited by another one. Finally, we have fixed all bugs and issues reported up until now (most related to Joomla! 3.0). For a full list of changes, grab a coffee and check out the list from our SVN server: http://code.google.com/p/getk2/source/list Note that we've updated all jQuery versions we include as well as elFinder (with all the required patches to work with jQuery 1.8.x - yeah, the folks at elFinder haven't update it yet...). If you notice a bug, please take a moment to report it here: http://code.google.com/p/getk2/issues/list - we check this list more than email  We have also updated the K2 template overrides page. You'll see that the only changes between v2.6.1 and 2.6.2 are reflected wherever we render the extra fields, due to the addition of the new "header" type which outputs its name as an <h4> HTML tag. And let's not forget that since K2 v2.6.1, Joomla! is now Varnish-friendly if you use this setup for Varnish. In other words, if K2 is on your system, with that setup we link to, your entire Joomla! site goes Varnish-friendly!  Enjoy! Два важных изменения:1) модуль mod_k2_login полностью удалён, вместо него следует использовать mod_k2_user 2) внесены изменения во все шаблоны, связанные с выводом информации по пользователю (register.php и profile.php - в компоненте, а также шаблоны модулей) в связи с изменениями в обработке полей формы в Joomla! API. Подробнее - на http://getk2.orgДля тех, кто хочет "вернуться", но не озадачился заранее сделать бекап и не может найти дистрибутив:http://getk2.googlecode.com/files/K2_v2.5.7.zip6.10.2012К2 2.6.0Не торопитесь обновляться.Видимо введение дополнительного функционала для поддержки J 3.0 не прошло гладко и вызывает проблемы совместимости с предыдущими версиями Joomla. На 3.0 тоже пока не всё идеально. 9.05.2012К2 2.5.7Исправление багов и несколько дополнительных нововведений: Главные фишки новой версии: - Мы представляем вывод контента посредством JSON и JSONP. Это первая фаза к архитектуре REST в K2.
В общем, если кратко - это будет вкусная вещь для создания мобильных приложений для публикации контента через k2 и Joomla.
We want you to be able to turn your Joomla! & K2 website into a source of content ready to be consumed or updated by third-party applications, e.g. a mobile application that reads and posts content to your K2 powered Joomla! website. Or simple stuff like AJAX calls are now a piece of cake for developers. To quickly set you up, just append 'format=json&limit=X&page=Y' to any K2 generated URL, replacing X with the number of items you want to fetch (with a forced limit of 100) and Y as the page number (if you wish to break your results in pages). At its simplest form, just append 'format=json' to get the default K2 output in JSON. The additional GET parameters mentioned above only work in categories, user pages, tags etc. If you append 'format=json' to an item URL you will get all the item's contents in JSON format. Additionally, you can pass a callback function to the above URLs in case you want to wrap the output in a function. The format is 'format=json&callback=Z', replacing Z with your callback function name. - Был исправлен противный баг, когда галереи Flickr не отображались с помощью Simple Image Gallery Pro в лицевой части сайта, но прекрасно отображались в админке! Как пишет один из разработчиков, некоторых этот тупой баг сводил с ума.
- Теперь 'content' плагины работают в описании категории в Joomla 2.5. Раньше такое работало только для Joomla 1.5. Теперь вы можете развлекаться: к примеру, использовать плагин 'loadposition' в описании категорий.
- Теперь, удаляя материал, который содержит аудио файлы, эти аудиофайлы также удаляются
- Исправлен баг с наследованием категорий (обсуждали в этой теме). Теперь, если в настройках категории стоит "наследовать параметры из определенной категории", НЕ наследуются мета-данные той категории, из которой идет наследование настроек (баг появился в версии 2.5.6). Ув. SDKiller советует вообще не наследовать настройки, а копировать категории с необходимыми настройками, чтобы не было допзапросов из БД.
- Исправлена ошибка с кнопкой "отправить по почте" в шаблоне материала (ошибка наблюдалась на сайтах, использующих Joomla! 1.5).
Для любопытных, история изменений тут: http://code.google.com/p/getk2/source/list">http://code.google.com/p/getk2/source/list Прежде чем обновляться, смотрим список появившихся багов, ориентируясь на дату релиза последней версии: http://code.google.com/p/getk2/issues/list_______________________________________________________________________ 06.04.2012К2 2.5.6Технический релиз, в основном - исправление ошибок.
Изменений в шаблоны после версии 2.5.4 не вносилось, как утверждается - можно спокойно накатить обновление. Обладатели Joomla 2.5 обновляют версию из менеджера обновлений Joomla, те, кто используют версию Joomla 1.5 - ставят "поверх" через менеджер установки и удаления программ. _______________________________________________________________________ 07.03.2012К2 2.5.5Основные нововведения:
- поддержка jUpgrade - поддержка автоматических обновлений - интеграция профилей пользователей с CommunityBuilder - обновлен медиа-менеджер K2 (в частности, добавлена возможность изменения размеров изображений)
_______________________________________________________________________ 09.12.2011К2 2.5.4Работа кипит - исправление разного рода ошибок. Информация об изменениях: оригинал (на английском), перевод на русский. _______________________________________________________________________ 28.11.2011 2.5.3Вышел К2 2.5.3, исправляющий несколько ошибок, допущенных в предыдущем 2.5.2 Исправлений и изменений довольно много, разработчики рекомендуют обновиться. Официальный changelog (на английском, версия 2.5.1 ->2.5.3). Перевод на русский информации о последних изменениях можно посмотреть здесь . _______________________________________________________________________ 26.11.2011 2.5.2
Доступен для загрузки К2 v. 2.5.2 Официальной информации об изменения пока нет. Изменения коснулись практически всех файлов ядра админки, нескольких на фронте (в основном view и шаблоны), плангина для sh404SEF, всех модулей и плагинов самого К2, нескольких языковых файлов админки. Добавлены последние версии jQuery. [/i] _______________________________________________________________________ 27.10.2011 К2 v. 2.5.1
Изменения коснулись большинства файлов ядра, также нескольких плагинов, модулей и языковых файлов. Официальный "changelog". Можно также предположить что были исправлены ошибки, выявленных в процессе массового перехода на 2.5 в течение последней недели. Более пристальное изучение покажет.[/i]
|
|
|
|
« Последнее редактирование: 28.04.2013, 12:52:49 от staticlight »
|
Записан
|
|
|
|
| |
lottis
Давно я тут
  
Репутация: +11/-0
Offline
Пол: 
Сообщений: 200
|
 |
« Ответ #91 : 05.05.2012, 00:02:08 » |
|
всё русифицируется.
Да вы батенька гений. Сами придумали такое или кто подсказал? Найдите мне в k2_ru-RU_language_pack строку с Rate this item?
|
|
|
|
|
Записан
|
|
|
|
SDKiller
Moderator
   
Репутация: +273/-4
Offline
Сообщений: 2525
...но войти в неё ты должен сам
|
 |
« Ответ #92 : 05.05.2012, 00:08:07 » |
|
Найдите мне в k2_ru-RU_language_pack строку с Rate this item?
Не найдёте конечно. Формат языковых файлов в линейке 2.5 приведён в соответствие с J 1.6+ Так что будет что-то вроде K2_RATE_THIS_ITEM Так что если у вас выводится на фронте Rate this item - правьте шаблон, об этом уже 250 раз писали
|
|
|
|
|
Записан
|
|
|
|
lottis
Давно я тут
  
Репутация: +11/-0
Offline
Пол: 
Сообщений: 200
|
 |
« Ответ #93 : 05.05.2012, 00:16:45 » |
|
Не забывайте что тут есть люди и с Joomla 1.5 а не на 2.5!
Вот собственно я и пишу что нет под 1.5 такой локализации. Правда не отписался что у меня 1.5 но все-же.
Хорошо конечно всем у кого 2.5, но по ходу переписки я так и не понял почему нужно править шаблон. Может для знатоков линейки 2.5 это уже в порядке вещей, не спорю, но для меня пока это тайна. Хоть бы на сайте К2 указали что под 1.5. нужно что-то там переделывать. А то просто качай транслейт и компонент и ничего(кое-чего) из перевода не пашет . )))
|
|
|
|
|
Записан
|
|
|
|
staticlight
Moderator
   
Репутация: +62/-0
Offline
Пол: 
Сообщений: 1097
Staticlight
|
 |
« Ответ #94 : 05.05.2012, 10:30:33 » |
|
Не забывайте что тут есть люди и с Joomla 1.5 а не на 2.5!
У меня большинство сайтов с k2 2.5 и Joomla 1.5 Вот собственно я и пишу что нет под 1.5 такой локализации. Правда не отписался что у меня 1.5 но все-же.
Какой-такой локализации? Все есть, несколько человек с форума, в том числе, из этой ветки, все перевели. Локализация прекрасно инсталлируется на J1.5-2.5 Хорошо конечно всем у кого 2.5, но по ходу переписки я так и не понял почему нужно править шаблон. Может для знатоков линейки 2.5 это уже в порядке вещей, не спорю, но для меня пока это тайна. Хоть бы на сайте К2 указали что под 1.5. нужно что-то там переделывать. А то просто качай транслейт и компонент и ничего(кое-чего) из перевода не пашет . )))
Править шаблон = заменить файлы шаблонов k2. Это написано в FAQ и написано почему, в том числе на официальном сайте k2, ссылка на материал приведена опять же в FAQ, но почему-то всем проще пожаловаться, нежели прочитать то, что пишут для вас! Обновились языковые константы, они стали универсальными для J1.5-2.5, и именно поэтому надо переписать файлы шаблона в папке /html/com_k2/.
|
|
|
|
« Последнее редактирование: 05.05.2012, 10:34:05 от staticlight »
|
Записан
|
|
|
|
lottis
Давно я тут
  
Репутация: +11/-0
Offline
Пол: 
Сообщений: 200
|
 |
« Ответ #95 : 05.05.2012, 13:45:25 » |
|
поэтому надо переписать файлы шаблона в папке /html/com_k2/.
дак если бы я это не делал, то и не писал бы сюда. Я как-то в ИТ уже не один год и квалификации хватает чтобы писать сложные компоненты. Изначально установил компонент K2 v2.5.6, затем открыл папку шаблона и в templates\шаблон\html\ скопировал то, что в находится в K2_v2.5.1_override_package.zip, точнее из папки HTML скопировал все папки com_k2, mod_k2_comments, mod_k2_content, mod_k2_login и другие в папку templates\шаблон\html\ Далее картинки из папки images K2_v2.5.1_override_package.zip закинул в папку emplates\шаблон\images, ну и стиль скопировал по аналогии. Результат - перевода нет. Правда я докапался почему его небыло - нужно было почистить кэширование. После чистки кэша - все заработало.
|
|
|
|
|
Записан
|
|
|
|
|
Очередной вебмастер
|
 |
« Ответ #96 : 09.05.2012, 21:25:26 » |
|
 Опачьки, походу нас ждет JSON в новой версии K2.5.7 сообщение от JoomlaWorksСделали видимо для удобного обмена данными с мобильными приложениями. Блин, когда они уже удосужатся сделать нормальный Roadmap, компонент развивается, а в какую сторону точной инфы нет. Я до сих пор держусь на версии 2.4...
|
|
|
|
|
Записан
|
|
|
|
|
yrygvay
|
 |
« Ответ #97 : 11.05.2012, 00:39:19 » |
|
Кто сможет сделать качественный перевод обновления?! есть у нас на форуме не Google транслит?))))
|
|
|
|
|
Записан
|
|
|
|
|
Очередной вебмастер
|
 |
« Ответ #98 : 11.05.2012, 01:52:50 » |
|
Кто сможет сделать качественный перевод обновления?! есть у нас на форуме не Google транслит?)))) Ну а что переводить, ребята сделали хорошее дело на пути к полной поддержке REST в версии K2 3.0 Теперь все данные из материалов K2 могут быть переданы через JSON (очень удобный формат для обмена данными с различными веб и мобильными приложениями) Чтоб получить вывод в JSON достаточно дописать к имеющемуся URL - format=json&limit=X&page=Y Где X - кол-во Item для отображения, Y - страница. Далее, теперь все плагины Joomla относящиеся к 'content' работают в описаниях категорий K2 (Joomla 2.5) Исправлен баг для наследования категорий - теперь meta-тэги не наследуются, у каждой категории свои. Ну и парочка дополнительных мелких фиксов. Вот вкратце самые важные новшества.
|
|
|
|
|
Записан
|
|
|
|
staticlight
Moderator
   
Репутация: +62/-0
Offline
Пол: 
Сообщений: 1097
Staticlight
|
 |
« Ответ #99 : 11.05.2012, 10:18:31 » |
|
Кстати, жду Joomla 3.0 с нетерпением, особенно, если будет все-таки "сквозная авторизация" и кнопка "редактировать" а-ля Битрикс, очень удобно будет.
|
|
|
|
|
Записан
|
|
|
|
staticlight
Moderator
   
Репутация: +62/-0
Offline
Пол: 
Сообщений: 1097
Staticlight
|
 |
« Ответ #100 : 11.05.2012, 10:20:43 » |
|
Кто сможет сделать качественный перевод обновления?! есть у нас на форуме не Google транслит?)))) Я последний раз переводил для 2.5.6, сейчас информация, что все переведено, где там Google появляется?
|
|
|
|
|
Записан
|
|
|
|
|
yrygvay
|
 |
« Ответ #101 : 11.05.2012, 20:42:30 » |
|
staticlight- я про перевод новости про обновление!
|
|
|
|
|
Записан
|
|
|
|
|
Очередной вебмастер
|
 |
« Ответ #102 : 13.05.2012, 19:41:16 » |
|
Для разработчиков, активно работающих с K2 - запущен тви-аккаунт для ответов на запросы разработчиков @k2devs
|
|
|
|
|
Записан
|
|
|
|
vadim_tula
Осваиваюсь на форуме
 
Репутация: +0/-0
Offline
Пол: 
Сообщений: 51
|
 |
« Ответ #103 : 23.08.2012, 11:59:34 » |
|
Хотел задать вопрос к ним в твит аккаунт, но я по английски не умею.
Давно работаю с k2, но никак не могу понять почему ни в одной из версий до сих пор не сделано в мета-данных поле title, которое можно было бы задать отличным от названия статьи. Мне кажется это очень важное поле для любого оптимизатора и странно что его нет не только в компоненте k2, но и во многих других компонентах Joomla. Кстати в последней версии ZOO такая функция уже есть. Подскажите пожалуйста, стоит ли ждать появление этой функции от разработчиков (идеальный вариант) или как это поле можно сделать самостоятельно. Сам я в PHP разбираюсь плохо, но если этот вопрос уже поднимался, то буду благодарен за ссылку на решение. Сам искал, ответов не нашел. Спасибо.
|
|
|
|
|
Записан
|
|
|
|
|
yrygvay
|
 |
« Ответ #104 : 06.10.2012, 09:11:01 » |
|
Вышла 2.6.0 Today we're excited to announce the release of K2 v2.6.0 for Joomla! versions 1.5, 2.5 and the newest release 3.0! For the lazy ones, here's a direct download link to v2.6.0: http://getk2.googlecode.com/files/K2_v2.6.0.zipIf we could sum up the highlights of this release, full compatibility with Joomla! 3.0 is certainly highlight no.1! Features like responsive layout, drag and drop on lists or the new combined view of the component's parameters in the backend are now standard with K2. Thanks to our Community members, we also managed to track down and fix over a dozen bugs which you can browse over at our SVN changelog. jQuery & jQueryUI have been updated to their latest releases and in Joomla! 3.0 we make sure tha the jQuery library only is not loaded as jQuery is now the main JavaScript library to power the newest Joomla! version (and future ones). We've also upgraded the Facebook meta tags to use the OpenGraph spec. Previously Facebook had stopped supporting the "image" meta tag which K2 used. So sharing on Facebook should now work as intended  We've also introduced JSON format output for the K2 Content module. If you enable the RSS feed option in the moduleparameters and then click on the generated RSS link icon in the module's output, you'll get the RSS feed for the contents of this module instance. If you swap format=feed to format=json in the browser's bar, you'll get a nice JSON interpretation (handy for building even cooler widgets with K2 Content)! Version 2.6.0 also marks the official introduction of Josetta support for K2. Josetta is a new Joomla! component that aims to make managing multi-lingual sites with Joomla! a piece of cake. Oh, and did we mention? It's built by the sh404SEF folks, Anything Digital! To the geeks among us, rest assured that K2 will now work just fine with PHP v5.4 (for Joomla! 2.5 and above - Joomla! 1.5 was not made for PHP v5.4...). Since Joomla! 3.0 is a brand new release, it's bound to change in the coming updates (to 3.0.1, 3.0.2 etc.) so we'll update K2 v2.6 accordingly. Also, K2 v2.6 is the last release to support all the major 3 Joomla! versions (1.5, 2.5 and 3.0) at the moment. And when we say "major" we mean the versions that most Joomla! sites use today... So we'll only update v2.6 to fix bugs on the way as Joomla! 3.0 progresses, but since Joomla! 1.5 is now considered "end of life", the newest K2 v3.0 currently under development will not support Joomla! 1.5. So if you plan on using K2 for many years to come, you're still on Joomla! 1.5 and was thinking of upgrading to Joomla! 2.5 or 3.0, now's the time to start planning that. K2 v2.6 will still be functional for Joomla! 1.5 but we will not introduce any new features. Actually, we're very excited on the work we're doing for K2 v3.0 as we believe it will "raise the bar" once more in the JoomlaSphere  We are putting all our focus there and gradually we will be revealing some of the cool features introduced as development of K2 v3.0 progresses. We estimate that a beta of K2 v3.0 will be released before Christmas. As always, the upgrade path from K2 v2.x to v3.x will be a piece of cake. There will be a follow-up blog post with the minor template changes from 2.5.7 to 2.6.0. But don't worry, you don't need to update your overrides anytime soon  Also expect Joomla! 3.0 compatible updates next week to AllVideos and Simple Image Gallery Pro. P.S. Our congrats to Kyle Ledbetter for leading the way to Joomla! 3.0. The big change in the UI and overall UX is very important for Joomla! if it wants to keep up with a constantly evolving market. We firmly believe that with great brains and now great looks in version 3, nothing can stop Joomla! from conquering even a bigger share in the worldwide CMS market.
|
|
|
|
|
Записан
|
|
|
|
alpeichik
Осваиваюсь на форуме
 
Репутация: +1/-0
Offline
Пол: 
Сообщений: 34
Alpei
|
 |
« Ответ #105 : 06.10.2012, 15:11:18 » |
|
Здравствуйте. Выскочило обновление K2, ну я и обновил. В панели управления Joomla 2.5.7 появилась красная надпись: Модель класса cpanelModelCpanel не найдена в файле. Причём на 2-х сайтах.
|
|
|
|
|
Записан
|
|
|
|
|
yrygvay
|
 |
« Ответ #106 : 06.10.2012, 19:46:53 » |
|
у меня такое-же! но думаю это пока не критично!
|
|
|
|
|
Записан
|
|
|
|
buba1477
Осваиваюсь на форуме
 
Репутация: +0/-0
Offline
Сообщений: 51
|
 |
« Ответ #107 : 06.10.2012, 19:54:19 » |
|
Здравствуйте не подскажите как убрать из админки "Модель класса cpanelModelCpanel не найдена в файле"?
|
|
|
|
|
Записан
|
|
|
|
SDKiller
Moderator
   
Репутация: +273/-4
Offline
Сообщений: 2525
...но войти в неё ты должен сам
|
 |
« Ответ #108 : 06.10.2012, 20:46:03 » |
|
Автообновления - зло )
|
|
|
|
|
Записан
|
|
|
|
|
yrygvay
|
 |
« Ответ #109 : 07.10.2012, 00:19:28 » |
|
Что самое интересное у меня не авто обновление, а через сайт их)
|
|
|
|
|
Записан
|
|
|
|
|
Очередной вебмастер
|
 |
« Ответ #110 : 07.10.2012, 18:18:01 » |
|
Подтверждаю cpanelModelCpanel появляется при автообновлении.
|
|
|
|
|
Записан
|
|
|
|
|
Очередной вебмастер
|
 |
« Ответ #111 : 07.10.2012, 18:21:52 » |
|
Ну наконец то бл.... хоть какая то ясность We estimate that a beta of K2 v3.0 will be released before Christmas. As always, the upgrade path from K2 v2.x to v3.x will be a piece of cake. Но учитывая как долго они под Joomla 2.5 "пилили", очень слабо вериться что смогут чем то удивить... И не дай бог я там не увижу обещанной еще 2 года назад мультикатегорийности
|
|
|
|
|
Записан
|
|
|
|
Dartveider
Осваиваюсь на форуме
 
Репутация: +1/-0
Offline
Сообщений: 27
|
 |
« Ответ #112 : 07.10.2012, 22:11:22 » |
|
Народ помогите - появилось обновление в панели управления Joomla 2.5 k2 - попытался обновится пишет что загрузка не удалась ошибка 1 - после подумал ну и фиг с ним потом обновлюсь - полез дальше - сайт еще на стадии разработки... попытался посмотреть страницу в мой-сайт.ру - а там пишет что страница не найдена - попытался что то сделать - админ ка работает а посмотрел все функции - сайт включен - а главная не отображается попытался очистить кэш обновления ...непомогло...может кто сталкивался ?
|
|
|
|
|
Записан
|
|
|
|
Morh
Осваиваюсь на форуме
 
Репутация: +5/-0
Offline
Пол: 
Сообщений: 87
|
 |
« Ответ #113 : 07.10.2012, 22:24:38 » |
|
Обновился на 2.6.0. Помимо "cpanelModelCpanel" поплыл дизайн в разделах к2. Как откатить на 2.5.7 ?
Заморачиваться не стал. Снес к2 полностью и установил с нуля. Настраиваю вот теперь. Благо статей было не так уж много.
|
|
|
|
« Последнее редактирование: 07.10.2012, 22:57:03 от Morh »
|
Записан
|
|
|
|
|
Очередной вебмастер
|
 |
« Ответ #114 : 07.10.2012, 22:58:27 » |
|
Обновился на 2.6.0. Помимо "cpanelModelCpanel" поплыл дизайн в разделах к2. Как откатить на 2.5.7 ?
100 раз говорено - ДЕЛАЙТЕ BACKUP перед значительными обновлениями на сайте. There will be a follow-up blog post with the minor template changes from 2.5.7 to 2.6.0. But don't worry, you don't need to update your overrides anytime soon Походу шаблоны вывода несколько поменялись, судя из блога разработчиков.
|
|
|
|
|
Записан
|
|
|
|
|
Dorfman
|
 |
« Ответ #115 : 08.10.2012, 12:44:29 » |
|
Походу шаблоны вывода несколько поменялись, судя из блога разработчиков.
Говнюки они, в таком случае... Это что, с каждой версией шаблоны перепиливать придётся? Буду сидеть на старой версии. Если, конечно, радикальных полезностей не добавят.
|
|
|
|
|
Записан
|
|
|
|
SDKiller
Moderator
   
Репутация: +273/-4
Offline
Сообщений: 2525
...но войти в неё ты должен сам
|
 |
« Ответ #116 : 08.10.2012, 14:49:55 » |
|
Буду сидеть на старой версии. Если, конечно, радикальных полезностей не добавят.
Пока не наблюдал, правда времени не было изучить досконально. В любом случае, думаю что по сложившейся традиции как минимум 2.6.1 будет ещё 
|
|
|
|
|
Записан
|
|
|
|
Nikoz
Осваиваюсь на форуме
 
Репутация: +2/-0
Offline
Сообщений: 116
|
 |
« Ответ #117 : 09.10.2012, 00:53:09 » |
|
Мультикатегорий так и нету..
|
|
|
|
|
Записан
|
|
|
|
|
Очередной вебмастер
|
 |
« Ответ #118 : 09.10.2012, 11:47:43 » |
|
Один из разработчиков предложил решение проблемы Model class cpanelModelCpanel not found Подключаемся по FTP к своему сайту на Joomla Переходим по адресу /administrator/components/com_k2/models Удаляем или переименовываем файл "cpanel.php" Все, сообщение об ошибке должно исчезнуть. По словам вебмастера, этот файл был нужен в старых версиях K2 для совместимости, если вы используете последнюю версию - то он не нужен.
|
|
|
|
|
Записан
|
|
|
|
|
|
SDKiller
Moderator
   
Репутация: +273/-4
Offline
Сообщений: 2525
...но войти в неё ты должен сам
|
 |
« Ответ #120 : 11.10.2012, 09:22:05 » |
|
Ага, ждём теперь 2.6.2 Joomla! released 3.0.1 just yesterday so don't be surprise for a 2.6.2 in the weeks to come 
|
|
|
|
|
Записан
|
|
|
|
|