<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>CityCyclingEdinburgh Forum &#187; Tag: thread problem lovely - Recent Posts</title>
<link>http://citycyclingedinburgh.info/bbpress/</link>
<description>CityCyclingEdinburgh Forum &#187; Tag: thread problem lovely - Recent Posts</description>
<language>en</language>
<pubDate>Wed, 13 May 2026 05:44:28 +0000</pubDate>

<item>
<title>chrisfl on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185827</link>
<pubDate>Mon, 13 Apr 2015 23:53:54 +0000</pubDate>
<dc:creator>chrisfl</dc:creator>
<guid isPermaLink="false">185827@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;That's totally sorted out the 503 errors (nearly 200 on Sunday and none since 9am this morning) and page loads seem to be quicker as well.&#60;/p&#62;
&#60;p&#62;I'll have a look at adding some css to set a maximum width for images uploaded.
&#60;/p&#62;</description>
</item>
<item>
<title>chdot on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185740</link>
<pubDate>Mon, 13 Apr 2015 09:13:32 +0000</pubDate>
<dc:creator>chdot</dc:creator>
<guid isPermaLink="false">185740@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;&#34;if I'm right, setting the image_resizer_enable setting to off may resolve this.&#34;&#60;/p&#62;
&#60;p&#62;Done&#60;/p&#62;
&#60;p&#62;May cause other consequences!
&#60;/p&#62;</description>
</item>
<item>
<title>sallyhinch on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185739</link>
<pubDate>Mon, 13 Apr 2015 08:48:09 +0000</pubDate>
<dc:creator>sallyhinch</dc:creator>
<guid isPermaLink="false">185739@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;This might explain why the Bollards (random) thread has similar problems...
&#60;/p&#62;</description>
</item>
<item>
<title>chrisfl on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185732</link>
<pubDate>Mon, 13 Apr 2015 00:13:13 +0000</pubDate>
<dc:creator>chrisfl</dc:creator>
<guid isPermaLink="false">185732@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;I don't think this is related to OS/browser combinations.&#60;/p&#62;
&#60;p&#62;Curiosity has gotten the better of me, and what seems to be happening is actually worse than I had anticipated. It actually downloads all the images referenced in the thread. In this case some of these images no longer exist, which means that the script has to wait for them to timeout. I'll have a look in more detail at this tomorrow, and in case anyone is wondering this is one of the errors thrown out.&#60;/p&#62;
&#60;p&#62;@chdot - if I'm right, setting the image_resizer_enable setting to off may resolve this.&#60;/p&#62;
&#60;p&#62;and for those here of a technical bent this is the errror and the code&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
PHP Warning:  getimagesize(http://img1.UploadScreenshot.com/images/thumb/10/29903461146.png): failed to open stream: Connection timed out in /var/www/citycyclingedinburgh/website/bbpress/my-plugins/image-resizer/imageresizer.php on line 105&#60;/p&#62;
&#60;p&#62;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62; &#60;code&#62;93 function image_resizer_text($post) {&#60;br /&#62;
 94&#60;br /&#62;
 95 &#38;gt;. if (!bb_get_option('image_resizer_enable')) {return $post;}&#60;br /&#62;
 96 &#38;gt;.&#60;br /&#62;
 97 &#38;gt;.$maxwidth = bb_get_option('max_image_width');&#60;br /&#62;
 98 &#38;gt;.$imagearray = get_all_strings_between($post, '&#60;img src=&#34;', '&#34; /&#62;');&#60;br /&#62;
 99 &#38;gt;.if ($imagearray[0]=='') return $post;&#60;br /&#62;
100 &#38;gt;.&#60;br /&#62;
101 &#38;gt;.for ($i = 0; $i &#38;lt; count($imagearray); $i++)&#60;br /&#62;
102 &#38;gt;.{&#60;br /&#62;
103 &#38;gt;.&#38;gt;.if($imagearray[$i] != '')&#60;br /&#62;
104 &#38;gt;.&#38;gt;.{&#60;br /&#62;
105 &#38;gt;.&#38;gt;.list($width, $height, $type, $attr) = getimagesize($imagearray[$i]);&#60;br /&#62;
106 &#38;gt;.&#38;gt;.if($width &#38;gt; $maxwidth)&#60;br /&#62;
107 &#38;gt;.&#38;gt;.{&#60;br /&#62;
108 &#38;gt;.&#38;gt;.&#38;gt;.$post = str_replace('&#38;lt;img src=&#34;' .$imagearray[$i] , '&#38;lt;img style=&#34;width: ' . $maxwidth . 'px;&#34; src=&#34;' . $imagearray[$i] , $post);&#60;br /&#62;
109 &#38;gt;.&#38;gt;.}&#60;br /&#62;
110 &#38;gt;.&#38;gt;.}&#60;br /&#62;
111 &#38;gt;.}&#60;br /&#62;
112 &#38;gt;.return $post;.&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>chdot on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185731</link>
<pubDate>Sun, 12 Apr 2015 23:28:52 +0000</pubDate>
<dc:creator>chdot</dc:creator>
<guid isPermaLink="false">185731@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;Thanks for looking. &#60;/p&#62;
&#60;p&#62;&#34;My best guess at the moment is that this seem to be a problem with long threads with lots of pictures.&#34;&#60;/p&#62;
&#60;p&#62;W/could that vary with some OS/browsers combinations?
&#60;/p&#62;</description>
</item>
<item>
<title>chrisfl on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185728</link>
<pubDate>Sun, 12 Apr 2015 23:18:27 +0000</pubDate>
<dc:creator>chrisfl</dc:creator>
<guid isPermaLink="false">185728@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;I have to admit that I have seen certain threads returning 503's in the log files. So far my investigations haven't got very far. But it seems that some of the bigger threads just seem to take phppp a VERY long time, and they then bomb out. &#60;/p&#62;
&#60;p&#62;My best guess at the moment is that this seem to be a problem with long threads with lots of pictures. There is some code which seems to search all the text and set the image width on image tags that throws out constant errors and warnings, so I *think* the problem may somehow be related.
&#60;/p&#62;</description>
</item>
<item>
<title>I were right about that saddle on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185645</link>
<pubDate>Sat, 11 Apr 2015 23:53:41 +0000</pubDate>
<dc:creator>I were right about that saddle</dc:creator>
<guid isPermaLink="false">185645@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;I have never been able to open that thread, and imagined it to be some exquisite punishment, Moses and the promised land type of thing.
&#60;/p&#62;</description>
</item>
<item>
<title>gembo on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185641</link>
<pubDate>Sat, 11 Apr 2015 23:33:00 +0000</pubDate>
<dc:creator>gembo</dc:creator>
<guid isPermaLink="false">185641@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;Quite interesting, I have always gone with the latest post as find the search a bit random, like the key words of the title appear way down the list. Occasionally need to trawl my previous posts to resurrect something.&#60;/p&#62;
&#60;p&#62;I made the librarian in the village laugh the other day, she said I had to physically return a book as it had been renewed three times and someone else might want to read it.  I said, what? Other people take books out of the library?&#60;/p&#62;
&#60;p&#62;Was it bishop Berkeley who said the entire world only existed when he opened his eyes?&#60;/p&#62;
&#60;p&#62;Will add the name of the actor who played the Major in Fawlty towers now, was it Berkeley Ballard? OOOh, I was so close.
&#60;/p&#62;</description>
</item>
<item>
<title>sallyhinch on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185638</link>
<pubDate>Sat, 11 Apr 2015 22:56:22 +0000</pubDate>
<dc:creator>sallyhinch</dc:creator>
<guid isPermaLink="false">185638@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;I never do anything else *but* go to the last post. It's so habitual, I do it even if there's only one post...
&#60;/p&#62;</description>
</item>
<item>
<title>HankChief on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185636</link>
<pubDate>Sat, 11 Apr 2015 22:35:38 +0000</pubDate>
<dc:creator>HankChief</dc:creator>
<guid isPermaLink="false">185636@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;How long have I been on here?&#60;/p&#62;
&#60;p&#62;I have found out that once you have selected the thread you want to read on the front page, if you click the right hand column underneath 'latest post' it takes you right there.  &#38;lt;facepalm&#38;gt;&#60;/p&#62;
&#60;p&#62;For years I've been reading about &#60;em&#62;black recumbant in bruntsfield tonight 'bout half fiveish......&#60;/em&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>paddyirish on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185632</link>
<pubDate>Sat, 11 Apr 2015 22:11:32 +0000</pubDate>
<dc:creator>paddyirish</dc:creator>
<guid isPermaLink="false">185632@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;And me
&#60;/p&#62;</description>
</item>
<item>
<title>Darkerside on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185631</link>
<pubDate>Sat, 11 Apr 2015 22:10:24 +0000</pubDate>
<dc:creator>Darkerside</dc:creator>
<guid isPermaLink="false">185631@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;Ditto above.
&#60;/p&#62;</description>
</item>
<item>
<title>Arellcat on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185630</link>
<pubDate>Sat, 11 Apr 2015 22:01:50 +0000</pubDate>
<dc:creator>Arellcat</dc:creator>
<guid isPermaLink="false">185630@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;If I try to open the thread from its &#60;a href=&#34;citycyclingedinburgh.info/bbpress/topic.php?id=1587&#34;&#62;title page hyperlink&#60;/a&#62;, it won't open and gives me a 503 Service Unavailable error.&#60;/p&#62;
&#60;p&#62;If I try to open the thread from its &#60;a href=&#34;http://citycyclingedinburgh.info/bbpress/topic.php?id=1587&#38;amp;page=23#post-185627&#34;&#62;latest post hyperlink&#60;/a&#62;, it opens straight away.
&#60;/p&#62;</description>
</item>
<item>
<title>fimm on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185629</link>
<pubDate>Sat, 11 Apr 2015 21:40:12 +0000</pubDate>
<dc:creator>fimm</dc:creator>
<guid isPermaLink="false">185629@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;I've had problems recently opening that thread on a PC, but have just opened it on my phone without a problem.
&#60;/p&#62;</description>
</item>
<item>
<title>Darkerside on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185628</link>
<pubDate>Sat, 11 Apr 2015 21:24:50 +0000</pubDate>
<dc:creator>Darkerside</dc:creator>
<guid isPermaLink="false">185628@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;I have changed to Internet Explorer over the past week—is there a &#34;don't show me Greenroofer's deviances&#34; checkbox I need to untick?
&#60;/p&#62;</description>
</item>
<item>
<title>amir on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185626</link>
<pubDate>Sat, 11 Apr 2015 21:15:24 +0000</pubDate>
<dc:creator>amir</dc:creator>
<guid isPermaLink="false">185626@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;Me neither,  and I was going to post about  chimney farm dog  action
&#60;/p&#62;</description>
</item>
<item>
<title>skotl on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185622</link>
<pubDate>Sat, 11 Apr 2015 20:33:34 +0000</pubDate>
<dc:creator>skotl</dc:creator>
<guid isPermaLink="false">185622@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;I cannae open it either.
&#60;/p&#62;</description>
</item>
<item>
<title>paddyirish on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185621</link>
<pubDate>Sat, 11 Apr 2015 20:33:18 +0000</pubDate>
<dc:creator>paddyirish</dc:creator>
<guid isPermaLink="false">185621@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;I found by searching for it &#34;lovely ride today&#34; and clicking on different comments, some of which did nothing and one of which parachuted me into the middle of the thread
&#60;/p&#62;</description>
</item>
<item>
<title>gembo on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185619</link>
<pubDate>Sat, 11 Apr 2015 20:30:07 +0000</pubDate>
<dc:creator>gembo</dc:creator>
<guid isPermaLink="false">185619@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;I know what he was up to as it opens for me, but feel you should hear it first hand.
&#60;/p&#62;</description>
</item>
<item>
<title>HankChief on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185617</link>
<pubDate>Sat, 11 Apr 2015 19:54:16 +0000</pubDate>
<dc:creator>HankChief</dc:creator>
<guid isPermaLink="false">185617@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;@greenroofer Good for you but it does leave me and Darkerside in the dark as to what you got up to today and why it was so lovely. &#60;/p&#62;
&#60;p&#62;The suspense is killing me...
&#60;/p&#62;</description>
</item>
<item>
<title>Greenroofer on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185615</link>
<pubDate>Sat, 11 Apr 2015 19:36:40 +0000</pubDate>
<dc:creator>Greenroofer</dc:creator>
<guid isPermaLink="false">185615@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;But not me...
&#60;/p&#62;</description>
</item>
<item>
<title>Darkerside on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185613</link>
<pubDate>Sat, 11 Apr 2015 19:33:17 +0000</pubDate>
<dc:creator>Darkerside</dc:creator>
<guid isPermaLink="false">185613@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;Me too.
&#60;/p&#62;</description>
</item>
<item>
<title>HankChief on "Lovely ride thread problem"</title>
<link>http://citycyclingedinburgh.info/bbpress/topic.php?id=14663#post-185612</link>
<pubDate>Sat, 11 Apr 2015 19:16:30 +0000</pubDate>
<dc:creator>HankChief</dc:creator>
<guid isPermaLink="false">185612@http://citycyclingedinburgh.info/bbpress/</guid>
<description>&#60;p&#62;Is it just me or does anyone else have difficulties opening the 'I've had a lovely ride' thread?&#60;/p&#62;
&#60;p&#62;Other threads are fine just that one that doesn't open.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
