Recommended Posts

Greetings, all!

 

The new version of the forum board works great for me, however, I've just wanted to mention an issue here. I'm not sure if it's a bug or a feature.

 

When you reply to a post by quoting it, in your post editing window, you get the quoted text plain naked without borders (the quote tags are invisible), so it's kind of tricky to know if what you type will be inside the quoted area or not.

 

Cheers!

Link to comment
https://www.neowin.net/forum/topic/1159266-quote/
Share on other sites

Greetings, all!

 

The new version of the forum board works great me, however, I've just wanted to mention an issue here. I'm not sure if it's a bug or a feature.

 

When you reply to a post by quoting it, in your post editing window, you get the quoted text plain naked without borders (the quote tags are invisible), so it's kind of tricky to know if what you type will be inside the quoted area or not.

 

Works fine for me in fast reply and full reply. Ensure you did ctrl+f5 here or maybe empty browser cache?

 

post-2-0-37169700-1371462684.png

Link to comment
https://www.neowin.net/forum/topic/1159266-quote/#findComment-595763314
Share on other sites

I get the same as zhiVago

 

but i am using a very dated version of chrome as i am at work

 

so not sure if its just that

 

Screenshot for you

 

attachicon.gifquote.JPG

 

post-279758-0-91427700-1371465998.jpg

 

This is what it looks like for me :)

Link to comment
https://www.neowin.net/forum/topic/1159266-quote/#findComment-595763362
Share on other sites

The bug is present. It's an issue with 3.4.5

 

I have it on my board and it appears to only be present in Chrome (and I've only managed to replicate it on Dev and Beta channels), although I wouldn't be surprised if it was present in other browsers.

 

If anyone finds an answer, let me know.. I need to fix it too >.<

 

My forums:

 

QuickReplyStyle_zpsf67b262c.jpg

 

EDIT::
What I find really interesting is that I have this bug on my forums, but on Neowin the quotes show up properly..

 

VERY ODD >.<

Edited by articuno1au
Link to comment
https://www.neowin.net/forum/topic/1159266-quote/#findComment-595763378
Share on other sites

The bug is present. It's an issue with 3.4.5

 

I have it on my board and it appears to only be present in Chrome (and I've only managed to replicate it on Dev and Beta channels), although I wouldn't be surprised if it was present in other browsers.

 

If anyone finds an answer, let me know.. I need to fix it too >.<

 

My forums:

 

QuickReplyStyle_zpsf67b262c.jpg

 

EDIT::

What I find really interesting is that I have this bug on my forums, but on Neowin the quotes show up properly..

 

VERY ODD >.<

May need to check your style sheet. For a reference (on your own forum) switch to the IP.Board theme to see if it works, it's what we do before we go messing in templates and CSS.

 

Also Dev browsers are definitely not supported, so if the site renders funny using it, that's your problem, not ours ;) 

Link to comment
https://www.neowin.net/forum/topic/1159266-quote/#findComment-595763386
Share on other sites

Present on the default skin too. I've been hunting this sucker since I pushed the upgrade to 3.4.5. I ran the upgrade right after it released >.<

 

I think you might find I was trying to provide extra info for you rather than suggesting that it was your problem ;)

 

Also, the fact that it's present for other users on your system, which is running a different skin to my forum does rather mean it's an IPB issue.

 

Either way, IPB's problem not ours.

Link to comment
https://www.neowin.net/forum/topic/1159266-quote/#findComment-595763396
Share on other sites

Yep, it's exactly how it shows on my end in Firefox v.21 even after having cleared the cache.

 

Fortunately, it's a non-issue in Chrome /heave a sigh of relief :)

Well that's just ######ing irksome :\

 

It's working fine here on IE/Chrome Dev, but doesn't working with Chrome Dev on my forums, but IE works just fine D:

 

I've done full cache clears, rebuilt my server cache etc. Not sure if it's just a timeout on the JS load or something. That's all I can think of to make it work differently on different sites :|

 

I'll go trace through the JS after I've slept.

Link to comment
https://www.neowin.net/forum/topic/1159266-quote/#findComment-595763410
Share on other sites

Well that's just ****ing irksome :\

 

It's working fine here on IE/Chrome Dev, but doesn't working with Chrome Dev on my forums, but IE works just fine D:

 

I've done full cache clears, rebuilt my server cache etc. Not sure if it's just a timeout on the JS load or something. That's all I can think of to make it work differently on different sites :|

 

I'll go trace through the JS after I've slept.

Let us know if you find anything, we've still got tons to do :p

Link to comment
https://www.neowin.net/forum/topic/1159266-quote/#findComment-595763412
Share on other sites

And that's all, folks!

 

The issue has been reported. The administration is aware of it.

 

Now it's time for me to test-drive the new button :)

 

Marking this thread solved in 3,2,...

 

p.s. And ctrl+f5 is the best antidote to hang-ups. :D

Link to comment
https://www.neowin.net/forum/topic/1159266-quote/#findComment-595763426
Share on other sites

The bug is present. It's an issue with 3.4.5

 

I have it on my board and it appears to only be present in Chrome (and I've only managed to replicate it on Dev and Beta channels), although I wouldn't be surprised if it was present in other browsers.

 

If anyone finds an answer, let me know.. I need to fix it too >.<

 

My forums:

 

[image]

EDIT::

What I find really interesting is that I have this bug on my forums, but on Neowin the quotes show up properly..

 

VERY ODD >.<

 

 

I'm not sure why it doesn't work even if you've deleted your cache, because then it really should. But the problem that skiver posted is reported in this bug report: http://community.invisionpower.com/resources/bugs.html/_/ip-board/missing-cachebust-on-contentscss-in-ckeditor-js-r42465

 

It can be resolved for all users by changing 

contentsCss:f.basePath+'contents.css'

Into 

contentsCss:f.basePath+'contents.css?cb=1'

In the file public/js/3rd_party/ckeditor/ckeditor.js

 

You would then also want to update the template file, since you need to cachebust the inclusion of the js-file ckeditor.js aswell. You then find the Editor -> EditorLoadJs template bit. Find: 

<script type="text/javascript" src="{$this->settings['js_base_url']}js/3rd_party/ckeditor/ckeditor.js?nck={$this->settings['noCacheKey']}"></script>

Replace with 

<script type="text/javascript" src="{$this->settings['js_base_url']}js/3rd_party/ckeditor/ckeditor.js?nck={$this->settings['noCacheKey']}1"></script>

But it really should work to empty your browser cache. Or maybe the browser does something weird with the cache / forgets to remove it, when it's included by javascript. 

Link to comment
https://www.neowin.net/forum/topic/1159266-quote/#findComment-595764376
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • It's really pathetic that an MMA video game triggers your political rage...
    • Nvidia GeForce NOW gains support for seven more games as discounts continue by Pulasthi Ariyasinghe There's a brand-new update rolling out to Nvidia's GeForce NOW streaming service, and like every week, that means more games have received support on the platform. This week's drop has additions like Aphelion and Pro Cycling Manager 26 attached to it. Don't forget that the GeForce NOW summer sale is still active too. This limited-time offer drops the 12-month Performance membership from $99.99 to $64.99, saving members $35. At the same time, the 12-month Ultimate membership is currently going for $129.99, dropping the price by $70 from the original $199.99. Moreover, Nvidia reiterated that support for GOG single sign-in and game library is incoming this summer, joining stores like Steam, Ubisoft Connect, Battle.net, and Xbox. "Connect supported game store accounts and stream titles with GeForce RTX power. Games that include cloud-save functionality help keep progress intact across devices," added the company. "Start a game on one screen, pick up where playtime left off on another, and spend less time managing installs and storage space." Here are the games joining GeForce NOW's supported list this week: Embers of the Uncrowned Demo (New release on Steam, available 13) Pro Cycling Manager 26 (New release on Steam, available June 15) Aphelion (Steam) Citizen Sleeper (Epic Game Store, Free from June 18-25) Megastore Simulator (Steam) OPERATOR (Steam) Super Meat Boy 3D (Xbox, available on Game Pass) Keep in mind that, unlike subscription services like Game Pass or EA Play, a copy of a game must be owned by the GeForce NOW member (or at least have a license via PC Game Pass) to start playing via Nvidia's cloud servers. There is also a limit to how many hours subscribers can use the service per month, with extra time being purchasable in chunks.
    • 47% profit margin? Wtf!! I know companies are in business to make money but come on man. I know for a fact I'll never own one of these.
    • Most AI-powered mainframe migration vendors expected to fail by 2030, Gartner warns by Paul Hill Credit: Pexels You may have read that many companies still run code written in ancient programming languages like COBOL and pay a handsome sum for those who can maintain that code. Well, it looks like this area of the tech world could be the scene of an AI bubble. It turns out that there are mainframe exit vendors, helping companies move their legacy mainframe systems to modern cloud environments or servers such as Microsoft Azure and AWS, using generative AI tooling. Unfortunately, 75% of these vendors are now expected to pivot or cease operations as market realities take hold by 2030. Alessandro Galimberti from Gartner said: Some of the companies in the mainframe exit market are IBM, 21CS, BMC, Broadcom, Rocket Software, DXC, GTSG, and Kyndryl. The reasons some of these firms are expected to quit the market are a reset of market expectations and a decline in demand for one-size-fits-all migration solutions. The reset in expectations is likely to be driven by cost overruns and threats to business, and the potential occurrence of critical failures within businesses as a result of bad transition implementations. These insights from Gartner are pretty interesting because it’s a specific area of the market where doubt is being cast on generative AI. Many people have cast doubt on whether AI companies will successfully justify the massive amounts spent on GenAI to date, and this data from Gartner suggests the road could be rocky for GenAI.
  • Recent Achievements

    • Week One Done
      Classifyskilleducation earned a badge
      Week One Done
    • One Month Later
      eurospharma62 earned a badge
      One Month Later
    • Week One Done
      With What earned a badge
      Week One Done
    • Week One Done
      Harris Gilbert earned a badge
      Week One Done
    • One Month Later
      Vincian earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      532
    2. 2
      +Edouard
      166
    3. 3
      PsYcHoKiLLa
      72
    4. 4
      neufuse
      64
    5. 5
      ATLien_0
      63
  • Tell a friend

    Love Neowin? Tell a friend!