jonnyb: joined #tikiwiki Tiki|bot: New Forum Posts: Broken Images - http://translation.tiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=61440
New Forum Posts: https://dev.tiki.org/Tiki16 is just a white screen - http://translation.tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=61429
New Forum Posts: JS Minify [was [Tikiwiki-cvs/svn] SF.net SVN: tikiwiki:[59865] trunk/lib/codemirror_tiki/tiki_codemirror.php] - http://translation.tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=61426
New Forum Posts: Broken Images - http://tiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=61440
New Forum Posts: https://dev.tiki.org/Tiki16 is just a white screen - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=61429
New Forum Posts: JS Minify [was [Tikiwiki-cvs/svn] SF.net SVN: tikiwiki:[59865] trunk/lib/codemirror_tiki/tiki_codemirror.php] - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=61426 rpg: joined #tikiwiki panamaus: joined #tikiwiki Tiki-KGB: 03amnabilal r59913 10trunk/ 10lib/wiki-plugins/wikiplugin_pivottable.php 10lib/core/Services/Pivot/Controller.php 10templates/wiki-plugins/pivottable.tpl
[ENH][Fix]Pivottable plugin fixes, get default column and rows if parameters is not passed. Modified plugin shortcode, fixed js files loading in tpl,multiple fixes in controller.php. NoteOn: joined #tikiwiki fabricius: joined #tikiwiki olinuxx: joined #tikiwiki MMax: joined #tikiwiki
Hi!
i want to upgrade tiki 12.2 to 15.2
but i have an Error
Fatal error: Uncaught exception 'TikiDb_Exception' with message 'Data too long for column 'pageSlug' at row 1' in tiki-15.2/lib/core/TikiDb/Exception.php:15
any idea what i have to do!?
php console.php -n database:update -> [TikiDb_Exception] Data too long for column 'pageSlug' at row 1 luciash: hi MMax
can you check what you have in pageSlug in db? iirc it is used for slugs to be filled in SEFURLs like my-fancy-page - the page slug is the "-" character here - should be just one char maybe?
MMax: or "_" NoteOn: hi
for update, ie. 15.1 to 15.2 = minor update, luciash: NoteOn: hi, yep NoteOn: installer ask setup value not in db, so we must re input setup? luciash: NoteOn: not sure I understand what you mean NoteOn: I didn't check installer php yet, values are in file.
sorry, again;)... luciash: np :)
you just run php console.php d:u
and it should do it
or the database upgrade step in tiki installer via browser NoteOn: when update, val are in db, such as site name, slogan etc. so we can use old val, but some are in file. setup php file that not in new version'ts zip.
so in normal step, we need re input setup val then installer write to file. luciash: ah, yes, you need to copy them over if you had modified files NoteOn: is there way to use val that in file, luciash: there is tiki.ini possible
but that is for new sites migrations i think
not necessary for minor site upgrades MMax: hi luciash - thx for your answer
i cant find a table with the name paheSlug
pageSlug luciash: MMax: it is not db table name
it is column MMax: and in which table? luciash: maybe in tiki_preferences table? NoteOn: luciash: huum, i will check, doing test update,
in doc says, after update, do copy extra files... but its good to keep old val that in file while update process MMax: nope - there is no column pageSlug
https://sourceforge.net/p/tikiwiki/mailman/tikiwiki-cvs/?viewmonth=201407&viewday=14
tiki_pages NoteOn: MMax: //CREATE TABLE `tiki_pages` ( MMax: there are many values NoteOn: its in `pageSlug` varchar(160) COLLATE utf8_unicode_ci DEFAULT NULL,
ah u mean there is no data? MMax: the column pageSlug is in use luciash: no, I mean it is trying to put there more than 160 characters for some reason NoteOn: ic luciash: when MMax doing site upgrade from 12.x NoteOn: ah 12x to 15.3? huum MMax: the column has 160 chars, charset utf8, collation utf8_unicode_ci
should i try 180 chars? luciash: actually it might be putting more than the slug character
MMax: you can try to increase it but it would be better if we find out why it does not fit in there while doing the upgrade - it should not happen
can you see what values it contains in 12.x ?
MMax: do you have very long page names? MMax: yes
there are long
they luciash: pageName is also limited to 160 chars?
column MMax: yes, 160 chars luciash: ah, so i wonder if it adds some more characters for the pageSlug as opposed to pageName... hmm MMax: pageName is also limited to 160 chars luciash: i thought it just replaces some spaces with the slug (underscore) MMax: but default is "empty string"
pageSlug has default "null" luciash: in 12.x you have "Page Foo Bar" and pageSlug "Page_Foo_Bar" ? or pageSlug values are empty/null there? MMax: "Page+Foo+Bar"
!? redflo: joined #tikiwiki MMax: PageName "Page Foo"
PageSlug "Page+Foo" NoteOn: huum, I used old version before, very old,, 1.7x or so, so
and re started 15x
so not for me but let me know, how installer does, dev do good job but we need care big changes?
such as version upgrade 14 to 15 or 14 to 16 luciash: MMax: looks good, so the slug character seems to be "+" by default, i see MMax: yes luciash: MMax: so I wonder why it yells "data too long" when actually the length is the same as pageName
MMax: do you have any pages with special characters (nonascii)?
in name i mean MMax: yes - i think we have pages with nonascii characters luciash: can you check what they have in there for pageSlug pls? MMax: give me a second
like this "Best_l%C3%B6schbar" luciash: aah, i see the issue now! MMax: or "Bios+%E2%80%93+Ein..." luciash: the problem is it uses urlencode function on the strings inserted in pageSlug and that makes them longer than the pageName string MMax: what does this mean :-)!? luciash: so quick fix for you is to increase the 160 chars to something more, e.g. 3-times more (to be safe) MMax: 480 chars !? luciash: and we need to fix this in Tiki - either increase it too or do not use the urlencode for pageSlug but do something else on it, which does not increase the number of chars
yep MMax: i try to increase it luciash: thanks for the report! if you have time pls add bug report to https://dev.tiki.org/file+a+bug MMax: hmmm "error: 1071 - Specified key was to long, max key length is 767 bytes" luciash: eh, ok, double then?
:D
not sure, maybe varchar has limit of 255
iirc
try 255 MMax: 255 chars works
should i try to upgrade again? luciash: yep MMax: it works :D NoteOn: huum utf-8 issue, that good point fo me also.
im japanese, and we japanese need some job for utf-8
not only tiki MMax: thx for your support NoteOn: MMax: in my case, I setup test site and pre-test site if need,
using Adminer is raid, dump and restore = backup,
then check db by Adminer etc.. thats safe way..
in local test and pre-test, then production's test, and last production site,
tiki is smart, just change local.php 's db info then all connect to other db, its simple. good dev
ie. $dbs_tiki='dbname'; MMax: but one warning is still there: ALTER TABLE `tiki_pages` ADD COLUMN `pageSlug` VARCHAR(160) NULL AFTER `pageName`, ADD UNIQUE `pageSlug` (`pageSlug`) Duplicate column name 'pageSlug' NoteOn: ? error only in tiki_pages when update all? luciash: MMax: that is because you already have it added once by the upgrade script
just ignore that warning
NoteOn: good workflow, I agree it is better to pre-test ;) NoteOn: MMax: if only at tiki_pages, so ....... try only that tables fresh install, luciash: NoteOn: where from in japan? we have a developer in Chiba ;) NoteOn: maybe now its ok but if you have same next time,
all dump xxxx.sql and edit by part or just dump tables, maybe all and edit part (pick up part) is better
then import only table data, tiki_pages, by mysql tool,
adminer is rapid only one file php,
problem is tiki is big, so we can't see all part easy, such as update process
luciash: where? in japan
Chiba? ah, not Chiba, but
I never know,, whats nick?
japanese? or not? luciash: chibaguy - he is our main theme guy ;) NoteOn: ic luciash: he is american, but living in japan for many years NoteOn: so we can off line meeting;) even 2 ppls;
ha ha luciash: yeah! little tikifest meetup :)
actually i think we should not do urlencode the pageSlug but convert to ascii instead to keep the same number of characters
(just thinking out loud)
but how do you convert japanese characters to ascii :D NoteOn: ? luciash: do you use japanese characters in urls for google friendly urls? NoteOn: in utf-8 jp chars are same as all other langs, but problem is tool not tiki, and also some old db such as not utf-8
yes, it works and google indexed so no problem
so in tiki, there is no japanse specifed issue I think.
luciash: I re-started to use tiki and some support
wait, my info luciash: hmm, then we should probably not url-encode them but keep them in utf-8 and just add dashes instead of spaces (or underscores) for the pageSlugs
NoteOn: be aware
NoteOn: this is public channel ;)
NoteOn: logged NoteOn: ah ic private
I didn't check pageSlugs, I will check,
in normal use, no problem,
not tested when update jonnyb: joined #tikiwiki luciash: hi jonnyb ! jonnyb: polom luciash NoteOn: fast check in my db, leng 160 is short.
in englsih : FaceBook removed stored images
its just news tile like
in japanse char leng 144
so it needs more
ie. pageSlug luciash: NoteOn: yeah, pageSlug should not be stored urlencoded NoteOn: pageName varchar(160) [] is OK. not short.
pageSlug must have 3x cause 1char to 3 chars as 1char to %E5%
if Name is all 2bytes chars, it needs 160x3=480 when pageName is 160
not sure way to not encorded. luciash: yep, but it would need to be changed from varchar to longtext or something else but i still think it is not good idea to store it urlencoded
because we can use utf-8 nowadays easily and the slug (for google) in japanese should be utf-8 anyway - browsers can handle that just fine NoteOn: https://news.google.co.jp/
in this news, tile leng ave is 50 to 70? so it needs 150 to 210
ah ic I will check. luciash: the pageSlug should be just dashed or underscored or _optionally_ ascii (but that would not work with japanese characters in page names)
and with any ' or " replaced of course NoteOn: luciash: im not sure pageSlug is for, so starting grep now;) Tiki|bot: New Forum Posts: Broken Images - http://translation.tiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=61440
New Forum Posts: https://dev.tiki.org/Tiki16 is just a white screen - http://translation.tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=61429
New Forum Posts: JS Minify [was [Tikiwiki-cvs/svn] SF.net SVN: tikiwiki:[59865] trunk/lib/codemirror_tiki/tiki_codemirror.php] - http://translation.tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=61426 NoteOn: function get_page_by_slug($slug) is a main part?
other part are maint lib, wikilib.php Controller.php Tiki|bot: New Forum Posts: Broken Images - http://tiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=61440
New Forum Posts: https://dev.tiki.org/Tiki16 is just a white screen - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=61429
New Forum Posts: JS Minify [was [Tikiwiki-cvs/svn] SF.net SVN: tikiwiki:[59865] trunk/lib/codemirror_tiki/tiki_codemirror.php] - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=61426 luciash: NoteOn: it is meant for URLs mainly so a page name like "Foo Foo Bar" with spaces becomes yoursite/Foo+Foo+Bar
NoteOn: when you have SEFURLs enabled
NoteOn: if you have some extra preferences enabled you can choose if you want the "+" replaced by dashes "-" or other character like "_"
NoteOn: and if you enable even more prefs, you can have special characters in page names replaced too
the problem is by default if you do not enable anything it stores the pageSlug as url-encoded value now and that causes issues with non-latin characters becoming longer string than pageName
so if you have many non-ascii charactres (like japanese) it does not fit in the database table varchar column NoteOn: ok so function get_page_by_slug($slug) only used it? luciash: jonnyb: what do you think? should be strored pageSlug as urlencoded or no?
NoteOn: nope NoteOn: ie other words when tiki needs pageSlug jonnyb: sorry, in a meeting luciash: NoteOn: for better Google SEO, for page URLs in emails, etc. NoteOn: ah ic luciash: NoteOn: or if you just want to paste a page link with spaces anywhere and be sure it is not broken NoteOn: yes, only browser does job for text to encorded so other case encorded text needs
and SEFURL is .. I think normal in 2byte use, with rewriteURL.
so just simple extend long, luciash: ok, thanks for your opinion
for reference: https://en.wikipedia.org/wiki/Semantic_URL#Slug NoteOn: thanks
huum code seems if short then tiki shows slug as key even its shorted, (such like shorted url) so
its not a prpblem now? only happend upate from old version?
anyway I do test max and over input then how it gose nelsonko: joined #tikiwiki luciash: howdy nelsonko NoteOn: luciash: found 2byte issue, after register org.. I will post
in simple here, POC is arildb: joined #tikiwiki rpg: joined #tikiwiki nelsonko: hi luciash chibaguy: joined #tikiwiki
polom jonnyb: polom
sorry, long meeting - luciash, what was the question? -: jonnyb reads NoteOn: s/156/159 Tiki|bot: New Forum Posts: strikes again! Please kill it! - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=61447
Recent Bug: - http://dev.tiki.org/item6127
Recent Bug: - http://dev.tiki.org/item6128 Tiki-KGB: 03kroky6 r59914 10branches/16.x/ 10lib/core/Services/Tracker/Controller.php 10templates/trackerinput/itemlink.tpl * [FIX] ItemLink table format add new item modal display and update of fancytable Corey_: joined #tikiwiki
Can someone inform me how change or modify the layout of tiki? Im trying to make my homepage look like this http://demo.zukathemes.com/Shapely Tiki-KGB: 03kroky6 r59915 10trunk/templates 10trunk/templates/trackerinput/itemlink.tpl 10trunk/lib/core/Services/Tracker/Controller.php 10trunk * [MRG] Automatic merge, branches/16.x 59909 to 59914 Corey_: Im currently using this theme but cant seem to figure out how to customize
can you elaborate more please? kostas_: joined #tikiwiki
hello, anyone here? chibaguy: Hi Corey_ . What customization do you want to do? luciash: hi Corey_ kostas_ chibaguy kostas_: hi luciash Corey_: Well...
To put it basic, i want it to look very similar to that demo page kostas_: luciash: my question is the same as yesterday, ldap binding error, i also installed the latest tiki wiki from svn (16) Corey_: Im wondering if there is other ways to change the theme/layout rather than customise the css/html/js chibaguy: Corey_, in general, you need to customize those to change the way things look. Tiki|bot: Recent Bug: - http://dev.tiki.org/item6129 chibaguy: Let me turn on "view page source" for that page. Corey_: there is no way to use pre exsisting code? chibaguy: What do you mean by pre-existing code? NoteOn: ho yo chibaguy: Corey_, did you download the Shapely theme files, and install them in your Tiki site? Corey_: i downloaded it and uploaded to FTP theme dir chibaguy: Ok, then you selected the theme in your Look and Feel admin page? Corey_: yup
nothing changes really
the theme file doesnt even have much meat to it chibaguy: Um, something's not right, then. I'll check the theme file again.
I just downloaded Shapely.zip and unpacked it - it seems to be normal, that is, a complete Bootstrap-equivalent style sheet.
Plus sample content, including images, etc.
Shapely.zip is about 815 KB. Unpacked, it's 922 KB. Did everything get uploaded to your site ok? Corey_: yeah luciash: Corey_: what layout do you have selected on Look and feel? Corey_: just checked again too
i have classic layout luciash: ah, maybe change that to... what do you suggest chibaguy ? Corey_: ive tired many things, and different themes. Nothing dramtically changes the look to it luciash: different themes? should change the look of the site to that theme chibaguy: Ah, for Shapely a fixed top navbar should be used, to replicate the original Shapely appearance.
Corey_, is your site public? Corey_: hudsonq.club luciash: Corey_: you sure the theme on the ftp is readable by the webserver?
Corey_: it says you are using default theme Corey_: really!
?
hold on Tiki-KGB: 03kroky6 r59916 10branches/16.x/tiki-tracker_http_request.php * [FIX] DynamicList fix to properly show dropdown type of field
03kroky6 r59917 10trunk/tiki-tracker_http_request.php 10trunk * [MRG] Automatic merge, branches/16.x 59914 to 59916 NoteOn: hi Corey_: What about now? NoteOn: that theme? wait...
http://demo.zukathemes.com/ this site use that theme. Shapely luciash: Corey_: it says the same
Corey_: in the page source chibaguy: Corey_, the Shapely demo uses the "Fixed top navbar 2" layout template, FYI. I think this is in the theme docs. NoteOn: so download and setup theme folder then you can use chibaguy: Corey_, the default theme is still being used at your site. luciash: Corey_: i suspect the theme folder is not readable so it fallbacks to the default theme NoteOn: and if you see not same even that theme its a botstrap part, not tiki's theme.
you need setup responsive part at wiki page and .... well...
for top page,home, no menu at left and right, then code resonsive inside to home wiki page luciash: Corey_: if you uploaded via FTP, can you check the folder and files have the proper permissions as the other themes? Corey_: i did chibaguy: But Corey_ said *no* theme changes made any difference, right? jonnyb: joined #tikiwiki Corey_: no theme changes that i have personally downloaded
im changing all file permissions
hold on luciash: Corey_: hmm, http://www.hudsonq.club/themes/fivealive/css/fivealive.css seems readable NoteOn: Corey_: windows? its better to test in local using such as xampp luciash: Corey_: but http://www.hudsonq.club/themes/Shapely/css/Shapely.css is not found NoteOn: cause editing theme and keep backup1 back2 .. you need while editing to fit Corey_: omg.... got it luciash: Corey_: yay! :) Corey_: theme dir was not capitaized jonnyb: repolom chibaguy: cool, the theme is changed. Corey_: thanks for the help yall jonnyb: luciash: what's going on with https://dev.tiki.org/item6129 ? ;) luciash: jonnyb: nothing special ;) NoteOn: add module "switch theme" chibaguy: Corey_ , about the Shapely front page, check the example content and so on, if you want the scrolling backgrounds. Corey_: yeah where do i find that? NoteOn: and copy folder Shapely-test-1, Shapely-test-2, Shapely-test-3 ...
and direct edit in local env(if you can), with CSS editor etc. Corey_: Noteon, that for possible errors>
? chibaguy: Corey_ , the Shapely package includes Shapely_home.html, which you can copy and edit; there are example content images, so basically you can replicate http://demo.zukathemes.com/Shapely at your site. Corey_: oh nice! NoteOn: errors? chibaguy: NoteOn, I think your instructions might be too difficult, at this stage. Simple is best. NoteOn: ok, chibaguy: But thanks for input. NoteOn: but huum after theme gose, you need lost of time to fight responsive degain..
so its save dev's life;;; chibaguy: :-) NoteOn: and you need to know, now mobile user are maybe around 50% and over, chibaguy: It should stay responsive, if the theme isn't modified, and if there is care about page content. NoteOn: so 50% user never see your left and right part.
so maybe basic tiki theme is most ok. chibaguy: True, but Tiki is bootstrap-based now, so should be responsive by default. NoteOn: ya, but we need to fight inside of wiki page
using <DIV .. etc. chibaguy: Although site editors sometimes hard-code big widths - 1200px wide, etc. NoteOn: so hey, smart phone's wide ...is just 10cm.... so.... only small area,
I think we don't need complex respo, 2x 3x 4, Corey_: Where do i put the edited HTML? chibaguy: In a wiki page. NoteOn: or maybe someone make or alredy open'd site sample, = not only theme. that include well made home page etc. Corey_: kk NoteOn: Corey_: in wiki page, allow html and then out html code Corey_: k NoteOn: /out/put chibaguy: http://demo.zukathemes.com/tiki-pagehistory.php?page=Shapely&source=0 NoteOn: but wiki syntax is better later chibaguy: True NoteOn: in simple, just copy from html that you like then paste wiki page in html mode, it works most.. and set css
this theme has own js lulu-parallax.js this is uniq than normal theme nm079: joined #tikiwiki
Polom NoteOn: so div class="parallax-container in html area you need to ajust...
huum,, maybe this theme comes from WP..
to tiki chibaguy: NoteOn, that is correct.
Corey_ , see https://themes.tiki.org/Creating+parallax+scroll+page+sections NoteOn: ya uniq means /js/ are unde theme folder not main /js folder Corey_: last time i did that it took out my site nm079: I've asked this before, and i was given a link to look at - and then my PC failed and I had to replace it and lost my internet history to go back and look at the page - hopefully somebody can help me
When a user searches for something that returns no results, I want to be able to print the search variable on the screen chibaguy: Corey_ , your site will be ok if the directions on the themes.tiki.org page are followed. The code is copy and pasted from the demo site. nm079: any ideas? Corey_: ok nm079: Effectively the same as this: https://tiki.org/tiki-searchresults.php?find=asdasf&boolean=on&boolean_last=y NoteOn: Shapely_home.html at theme, its example of home like, just copy to your home wiki page,
its wiki mode,
--- ~tc~ Use this content as a sample or base for making your own parallax scrolling sections. ~/tc~
its just js part.. ; Corey_: chibaguy, should i put <literal> .....</literal> NoteOn: ah ...... it says .. at theme.org hahaha .. WordPress port featuring parallax scrolling chibaguy: Corey_ , no, just input as it is. Corey_: Ok my test page works
i just need it full screen chibaguy: great
Corey_ , I made some docs somewhere for that. Just a minute please.... Corey_: ok cool chibaguy: This is an oldish page on that: https://themes.tiki.org/Liquid-width+section+in+page
But actually it's easier now with Shapely....
Shapely.css has rules for this type of page, but you need to make a new category named "Full_width_content".... Corey_: ok chibaguy: Then on tiki-admin.php?page=category, activate "Categories used in templates (.tpl files)" and select Full_width_content in "Categories to add as CSS classes to <body>"
And categorize your test page (or whatever page needs to have full width content) in the "Full_width_content" category. NoteOn: chibaguy: good way chibaguy: Noteon, yeah, I didn't want to add a new rule for every case of full-width content. NoteOn: anyway luciash said u in japan. Im also haha chibaguy: ah, ok, I'm in Chiba. NoteOn: im japanese in kanagawa chibaguy: I see. NoteOn: not good english ... ha ha ha chibaguy: good enough Corey_: http://www.hudsonq.club/tiki-index.php?page=Test chibaguy: woohoo, great job Corey_ Corey_: thats a big thanks to you
both NoteOn: seems ok. good chibaguy: NoteOn, do you have a Tiki site? torsten: joined #tikiwiki NoteOn: ya
laster now im editing complex chibaguy: In english or japanese? NoteOn: tomorrow maybe
jp only chibaguy: Did you translate interface text? NoteOn: but tested multi lingal, mode chibaguy: Not much of Tiki's gui is in japanese so far. NoteOn: not yet.
I was nukexxx dev and few of tiki.
now comeback; chibaguy: Nuke?
I have an Xtrato Veil theme coming soon.
Do you know/remember xtrato designs for nuke? NoteOn: phpnuke postnuke, its before WP comes up popular chibaguy: yeah, I still like some of those old themes.
retro NoteOn: anyway as test site, image is width 100% is more good
cause smartphone width is 10cm
wait.
/tikiroot/themes/custom.css
overwright img css here for all themes
allways max-width 100% is ok now I think chibaguy: to limit image width to the screen width? NoteOn: now Corey's test sites = that them shows some area left right if respo such as 500x = only center 1 colum
so since smartphone is small. its good to 100% always.
= more big and big
I do also youtube view is also 100%. so in pc mode its big.. but no problem
so that them <img class="cast-shadow img-responsive" this part
and maybe all setup 100% all time, and not more wide, = fit to 100% always. and if less than.. then fit to 100% also
thats good way, nor perfect but easy to todays looks for images. chibaguy: well, the img-responsive class already has max-width: 100%, so images with this class are ok. There's an option to make this the default for images in wikitext, IIRC. rpg: joined #tikiwiki NoteOn: yes, so it needs width: 100% !important; or so chibaguy: I'm not sure about that rule for all images. It could have unwanted effects for some images, maybe.
(depending on the site and its contents)
(unless I'm misunderstanding) NoteOn: ya, I did it at my static site, but now gose to tiki site.. so wait... soon I can find;)
anyway all images in width 100% is I will do.
for pc, its wide? no. most pc uses that uses big monitor but always using part view not full 1920x1400 wide.
so no problem
and yes, smartphone is 10cm wide. so small rpg: left #tikiwiki chibaguy: right, but using % and not px, the image size will adjust.
Actually, my thinking is that Bootstrap should handle responsive behaviors for images, etc. We shouldn't have to add rules for that.
(In principle)
(although we have added some overrides or exceptions, etc. for Tiki)
Nice talking with you. I have to take my dog out now. NoteOn: found;;;
Corey_: r you there? Corey_: yes NoteOn: as for image more wide I found Corey_: i am editing so i havent been looking in NoteOn: so ignore padding-left: 15px; padding-right: 15px; or 0px
or simple test, you use firefox, chrome,
dev mode, then find .container at css, you can find from view Corey_: ok hold on NoteOn: then just off 2 part above padding-left: padding-right:
then you can see look.
maybe it show width 100% but blank left right part is that css Corey_: <!-- /* css 0 */ @media (min-width: 1200px) { .container { width:1170px; } } .ui-autocomplete-loading { background: white url("img/spinner.gif") right center no-repeat; } .pagetitle {display: none;} .titletop {display: none;} -->
on the other hand how can i add scrolling anchor to button NoteOn: http://imgur.com/a/QOso4
disable 2 and added width 100%. but not perfect;)
for small view just resize browser or set dev view at dev mode of browser.
firefox and chrome, Ctrl-Shift-C to dev mode.
ah, I think just copy paste Shapely_home.html's. its wiki format started {HTML()} lhtseng: joined #tikiwiki jonnyb: re-hi
nelsonko: nice to see you, are you really here? I have an elastic search question... nelsonko: sure jonnyb jonnyb: we need a search for not empty text fields and content="NOT " doesn't work for ES, so i've been looking at rewriting the token to use "exist" or "missing" but was wondering if you or your guys had been down the same route? nelsonko: phone Tiki|bot: New Forum Posts: Where to place a jquery unload function - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=61449 Tiki-KGB: 03jonnybradley r59918 10branches/16.x/lib/core/Tracker/Field/Text.php * [FIX] trackers: Escape HTML in text fields (thanks luciash)
03jonnybradley r59919 10trunk/lib/core/Tracker/Field/Text.php 10trunk * [MRG] Automatic merge, branches/16.x 59916 to 59918 nelsonko: jonnyb: pat says from what he could see, "Missing" has been deprecated in ES2.2, and from what he reads "exists" is the way to go, but after trying to use it using it (it's in Tiki already), it still doesn't appear to deal with empty string (vs NULL) jonnyb: oh? It's in Tiki already? Missed that... rpg: joined #tikiwiki nelsonko: he thought he documented it but maybe not
{filter exists=y field=tracker_field_summary}
or
{filter exists=n field=tracker_field_summary}
I'm trying to find the commit jonnyb: oh right, in the list plugin only, not in lib/core/Search/Elastic/QueryBuilder.php
hmm, doesn't seem to work in 15.x for me
annoyingly i have to go out now, so more on this tomorrow, will have a dig about in the code
thanks! :) nelsonko: I have a feeling he didn't commit it, but it doesn't work with empty string anyway
(that's probably why he didn't commit it)
I think he was waiting to see if it makes sense to start indexing empty strings as NULL (so that it'll be picked up by exists), but that might have other side effects... joe___: joined #tikiwiki Tiki-KGB: 03patrick-proulx r59920 10trunk/lib/core/Services/Tracker/Controller.php
[FIX] Fixed issue with redirect not working on item update in tracker controller. ctart: joined #tikiwiki
i need help!
i went to go add in custom html and made my ite go crazy http://www.hudsonq.club/
i used the code under *Playing with Smarty* https://doc.tiki.org/Bootstrap+Navbar
NoteOn rpg: joined #tikiwiki jcwiki: joined #tikiwiki
need a little help with group permissons, how can allow a new group to see the admin welcome page without giving them full admin rights NoteOn: hi
admin welcome page?
whats url ie. under root ie. tiki-admin-xxxx.php etc
Control Panel? or genaral setting?
ctart: seems you put code to html. its template code =smarty code. so you need to add .tpl file. not html rpg: joined #tikiwiki Telesight: joined #tikiwiki corey_: joined #tikiwiki
Hello, can you set up forums so that it tweets our new threads?