Page 4 of 7

Re: New Editor Feedback & Bug Reports

PostPosted: Sat Mar 09, 2013 12:15 am
by Noondueler
Montana Matt wrote:
Old School WB wrote:Matt, photo size was big and small, as low as 100 Kb and the most was about 5 M. All photos were JPEG format.

I was able to have string of no issues and upload the photos I wanted. I did stop cut and pasting text, not sure if this was the problem? Not sure if y'all need to worry about it since my photos did eventually upload. I will let you know if this error shows up again.

Please do. I'm sure it will. It could be something to do with an odd character (apostrophe, etc.). I don't know. I took the information from your query and added an image with it and it worked fine, so I'm not sure what happened.
Noondueler wrote:I discovered that when adding one of my images to another page if I type in the whole title of the image exactly from (my images) it often comes up "no query". But if I just type in the first word of the title or a key word in the title it brings up all of my images that contain that word and then I can add the image since it is in that group. I am using google chrome.

Can you give a specific example so I can test? I just tried with a few of my images and they are always returned when doing a search on the exact name of the image.
I posted a pic titled : Clear Lake and Mt. Konocti on the Mount Konocti page. When I put in just the word clear I was able to find it (and add it to the page) with others containing that word.

Re: New Editor Feedback & Bug Reports

PostPosted: Sat Mar 09, 2013 3:23 pm
by distressbark
Montana Matt wrote:By default all images in the new editor are inserted at medium size. And while it's possible to increase them larger, in practice it's not a good idea because they'll appear blurry like your image.

To fix your image you can do one of two things:
1) Edit the raw HTML by clicking the button on the far left side of the new editor or by using the old editor. Look for this
Code: Select all
src="/images/small/463877.JPG"
and change it to this
Code: Select all
src="/images/medium/463877.JPG"

2) Using the new editor, delete the image and reinsert it and then specify the width at 300px.

Let me know if you'd like help doing it or if you have more questions.


Hey Matt, that did the trick. Thanks very much for all your hard work and for addressing this particular questions for me. Many thanks!

Re: New Editor Feedback & Bug Reports

PostPosted: Tue Mar 12, 2013 6:39 pm
by Scott
Just inserted the image for you. You had it right except for the capitalization of jpg. You had "jpg" and it should have been "JPG" for the extension of the image.


Thanks.

That explains why it didn't work by trying to add it manually into the old editor, but the new editor (which was also tried) just has you select the image without typing in the "jpg". Using the new editor, I used "Insert Image" - "Search SP Image" - "Click image to use", and that one didn't seem to work either, but pulled up a blank after the changes were made (but strangely while in edit mode, the photo would show; just not after hitting "save changes"). Perhaps when replacing the photo, there is a glitch if the old and new photos have different capitalizations of "JPG"? (Or maybe I did something wrong in the old editor that caused it not to work or using the new editor didn't override the typo).

Re: New Editor Feedback & Bug Reports

PostPosted: Tue Mar 12, 2013 8:10 pm
by Scott
Not sure why it wouldn't work with the new editor. The new editor pulls the name of the photo from the database, so it shouldn't have had any issues with the capitalization of the extension.


If it helps, here are some more details.

Under the new editor, the photo would show up fine when working in "Edit Page" mode. On the main page, it showed up as a blank after save changes. Also, on the main page, when you clicked on the blank photo, it would go right to the one that was supposed to be displayed.

I guess I know how to fix it now, but hopefully the above is useful.

Re: New Editor Feedback & Bug Reports

PostPosted: Sun Mar 17, 2013 3:50 pm
by rgg
I've noticed that the new editor does some strange things with <br> tags. And with strange, I mean things I don't understand.

The latest example was that some <br> tags were removed when I submitted what I had created. That is, with the <br> tags where I wanted them everything looked fine in the editor, both in HTML and WISIWYG mode, but after submitting they were gone and the page didn't look quite right.

When I went back to edit it, I saw that some of the <br> tags were simply gone! I put them back in, submitted once more, and they were gone again! Apparently, it's not a one time glitch or some mistake I made, but something more fundamental.


This is what I had created in the editor:

Code: Select all
<noformat><center><table class="thumb"><tbody>
<tr>
  <th colspan="4"><b><i style="color: black;">Great views from the top of the west ridge of Uruashraju Norte</i></b></th>
</tr>
<tr>
  <td><div><div style="height: 207px;" class="image" align="center"><a href="/view_object.php?object_id=795502">
   <img alt="Uruashraju" src="/images/original/795502.jpg" height="190"></a><br>
   <span class="caption">Nevado Uruashraju beckons</span>
  </div></div></td>
  <td><div><div style="height: 207px;" class="image" align="center"><a href="/view_object.php?object_id=795534">
   <img alt="The ridge" src="/images/medium/795534.jpg" height="190"></a><br>
   <span class="caption">View down the ridge</span>
  </div></div></td>
  <td><div><div style="height: 207px;" class="image" align="center"><a href="/view_object.php?object_id=795508">
    <img alt="Huantsán" src="/images/medium/795508.jpg" height="190"></a><br>
    <span class="caption">Nevado Huantsán</span>
  </div></div></td>
  <td><div><div style="height: 207px;" class="image" align="center"><a href="/view_object.php?object_id=795512">
    <img alt="Nevado Huantsán" src="/images/medium/795512.jpg" height="190"></a><br>
    <span class="caption">Imminent sunrise</span>
  </div></div></td>
</tr>
</tbody></table></center></noformat>


After submitting this, the four <br> tags were gone (as, unfortunately, was most of the whitespace, which I had used to keep the HTML source code readable).

I tried a few things, and eventually found a work around: instead of <br> tags, I added <br clear=all> tags, and that did the trick:

Code: Select all
<noformat><center><table class="thumb"><tbody>
<tr>
  <th colspan="4"><b><i style="color: black;">Great views from the top of the west ridge of Uruashraju Norte</i></b></th>
</tr>
<tr>
  <td><div><div style="height: 207px;" class="image" align="center"><a href="/view_object.php?object_id=795502">
   <img alt="Uruashraju" src="/images/original/795502.jpg" height="190"></a><br clear=all>
   <span class="caption">Nevado Uruashraju beckons</span>
  </div></div></td>
  <td><div><div style="height: 207px;" class="image" align="center"><a href="/view_object.php?object_id=795534">
   <img alt="The ridge" src="/images/medium/795534.jpg" height="190"></a><br clear=all>
   <span class="caption">View down the ridge</span>
  </div></div></td>
  <td><div><div style="height: 207px;" class="image" align="center"><a href="/view_object.php?object_id=795508">
    <img alt="Huantsán" src="/images/medium/795508.jpg" height="190"></a><br clear=all>
    <span class="caption">Nevado Huantsán</span>
  </div></div></td>
  <td><div><div style="height: 207px;" class="image" align="center"><a href="/view_object.php?object_id=795512">
    <img alt="Nevado Huantsán" src="/images/medium/795512.jpg" height="190"></a><br clear=all>
    <span class="caption">Imminent sunrise</span>
  </div></div></td>
</tr>
</tbody></table></center></noformat>


For the record, the page where I had this problem is http://www.summitpost.org/view_object.p ... _id=842314 and it was in fact Josh who made me aware of it in the first place.
I've been editing in Chrome.

Cheers, Rob

Re: New Editor Feedback & Bug Reports

PostPosted: Mon Mar 18, 2013 8:28 pm
by brichardsson
i updated the links section on a page i adopted, and the entire set of links are displaying twice:

http://www.summitpost.org/mount-williamson/152023

it's happening on my work IE browser and my home FF browser.

i go into edit mode, but i don't see anything to fix / delete in that section.

Re: New Editor Feedback & Bug Reports

PostPosted: Mon Mar 18, 2013 10:48 pm
by brichardsson
Montana Matt wrote:OK, found the issue and fixed it. Just a small typo in the code :)


awesome, thanks. i am sure i would have run into it again.

Re: New Editor Feedback & Bug Reports

PostPosted: Thu Mar 21, 2013 9:23 pm
by rgg
Montana Matt wrote:I can't recall exactly right now, but I think <br> tags are being parsed from the HTML for a reason. I'll look into it...


I've paid a little more attention to what's happening with <br> tags.
Now, I wouldn't like it very much, but I could see there might be a reason why <br> tags would be removed when switching from HTML to WYSIWYG mode. However, even if I work in HTML mode and submit an edited page without switching to WYSIWYG mode, some <br> tags are removed.

For the record, while I think the editor could improve its handling of <br> tags, if I speak only for myself, I can work around it. I just add a clear attribute to the <br> tag. Done that quite a few times already. However, I believe that the biggest problem lies with all the pages that were created before the new editor: when someone edits such a page, and, without the editor noticing it, <br> tags are removed in various places, including those where nothing should be changed, the new page may look awkward. Yet, with a small change, the editor will probably only check if the change itself looks good - while in the mean time somewhere else in the page something's gone wrong!

Re: New Editor Feedback & Bug Reports

PostPosted: Thu Sep 05, 2013 2:12 pm
by edomar2611
Hi,
I´m trying to create a new Image, filling in all the fields, and selecting a file (9 Mb) from my computer, but when I press the "Submit Changes" button the path of my file in the field "File" desappears and the picture is not uploaded. No error messages appear.

The link to the page I´m creating is: http://www.summitpost.org/new_edit_obje ... _id=865263

Browser: Internet Explorer 9.0.19
OS: Windows 7

Thank you for your support

Re: New Editor Feedback & Bug Reports

PostPosted: Thu Sep 05, 2013 8:14 pm
by Josh Lewis
I remember hearing many years ago that it is a 8MB limit. Let me know if you need any advise on resizing, I'm able to resize a 100+ photos in speedy time with Picasa.

Re: New Editor Feedback & Bug Reports

PostPosted: Fri Sep 06, 2013 1:16 am
by rgg
Frankly, I believe that it's bad idea to upload lots of pictures to SP in high resolution, because unless those viewing it have a fast internet connection, downloading it just takes too long. Only if there is something special to see do I find it useful. To give a few examples, this includes labelled panoramas and really detailed pictures of a mountain that clarify one or more routes. Those, I believe, really add value to SP.

Mind you, at home my connection is fast so I have no trouble with big images. However, when I'm traveling and use whatever internet access I happen to come across, it is often too slow to look at big images - and so I simply abort the download when it takes to long. And when I use the Slideshow viewer, for example to have a look at what's new or browse the best images in the last week, big pictures tend to be skipped and I don't get to see them.
So, if you want me to look at the big version of your image, I suggest resizing it to something manageable, and not post everything in, say, 4000 by 3000.

Re: New Editor Feedback & Bug Reports

PostPosted: Fri Sep 06, 2013 8:55 am
by Josh Lewis
I go with 1200px, diagrams and panoramas get a bigger resolution of course.

Re: New Editor Feedback & Bug Reports

PostPosted: Sat Nov 23, 2013 8:00 pm
by Bill Reed
Don't know if it's a bug or my lack of computer skills but I'm having some difficulty posting a TH page. I've tried using the new and old editor with similar results.
This pops up when I hit the submit button:

replace_object() INSERT INTO `objects` SET `object_id`=NULL,`type_id`=13,`last_edit`=NOW(),`creation`=NOW(),`last_edit_user_id`='23086',`created_user_id`='23086',`show_toc`='Yes',`construction`='No',`object_name`='Rainbow LakesTH',`query_name`='Rainbow LakesTH',`continent`='North America',`country`='United States',`state_province`='Colorado',`province`=NULL,`county`='Jackson',`latitude`='40.6584',`longitude`='-106.58006',`seasons`='Summer',`elevation`='8,750',`object_body_ft`='
Add Heading here

Overview
External Links

\n',`is_primary_photo_user_set`=0 ON DUPLICATE KEY UPDATE `object_id`=NULL,`type_id`=13,`last_edit`=NOW(),`creation`=NOW(),`last_edit_user_id`='23086',`created_user_id`='23086',`show_toc`='Yes',`construction`='No',`object_name`='Rainbow LakesTH',`query_name`='Rainbow LakesTH',`continent`='North America',`country`='United States',`state_province`='Colorado',`province`=NULL,`county`='Jackson',`latitude`='40.6584',`longitude`='-106.58006',`seasons`='Summer',`elevation`='8,750',`object_body_ft`='
Add Heading here

Overview
External Links

\n',`is_primary_photo_user_set`=0 failed: DB Error: unknown error

Am I doing something wrong?

Thanks!
Bill

Re: New Editor Feedback & Bug Reports

PostPosted: Sun Nov 24, 2013 3:49 pm
by Bill Reed
Thanks Matt!

Re: New Editor Feedback & Bug Reports

PostPosted: Tue Nov 26, 2013 6:25 am
by Josh Lewis
I got the same error when testing. So I take it this was not resolved yet.