Skip to content
View in the app

A better way to browse. Learn more.

Thailand News and Discussion Forum | ASEANNOW

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Forum Upgrade - Please Read

Featured Replies

My assistant just brings up the forum page :D Teething problems, m'thinks. :o No chance someone actually tests changes before implementing them on the production system? :D

  • Replies 106
  • Views 8.7k
  • Created
  • Last Reply

Top Posters In This Topic

Nice work George. Are you planning to upgrade the Bear Pit as well? (we could really use that ignore member feature) :o:D

  • Author
My assistant just brings up the forum page :D Teething problems, m'thinks. :o

No way! Cool programmers do it live. :D

Are u experiencing problems with the flood control?

err, with only 150 posts? :o:D:D

No, just the first time l can remember getting that message on this forum. Most forums l've posted on only apply flood control to new posters.

  • Author
Are u experiencing problems with the flood control?

err, with only 150 posts? :o:D:D

No, just the first time l can remember getting that message on this forum. Most forums l've posted on only apply flood control to new posters.

Just checked, and we are using the default for flood control, nothing has changed.

hi'

great job, looks nice and a lot faster too :D

everything works with netscape so far :o

cheers

francois

George- not sure if possible, but is their anyway you can save your userid/password when you use WAP version of TV? It's a tad annoying having to enter the userid/pass each time I check TV on my mobile.

  • Author
George- not sure if possible, but is their anyway you can save your userid/password when you use WAP version of TV? It's a tad annoying having to enter the userid/pass each time I check TV on my mobile.

It depends on your mobile. The forum supports mobile cookies, so if your mobile supports them, it should work. Please open a new thread in the Internet forum branch and we will help you out!

Congratulations on the New interface George. :o

I feel like moving in to a new home :D

Lot faster to

Thanks

I've been using it for 5 hours now, and I must say it's very, very fast on my 42.6 Kbps land line. Well done!

But I do have a problem with "smilies". The "Clickable Smilies" don't work (Firefox 1.0PR) but the "Show All" smilies do. :o .

I'll re-install my Firefox extensions and see if that sorts it out.

Nice work George. Are you planning to upgrade the Bear Pit as well? (we could really use that ignore member feature)  :o  :D

The ignore member feature doesn't seem to work for me, it accepts none of the red-colour usernames. :D:D

Can we have more emoticons per post again, please? (Currently set to 10) Thanks George!

Just been off-line for a few days and we have a new Forum. Seems nice and simple to use once you learn the new buttons. Well done.

Cheers……..kandt :o

It seems visually pleasing :o . Change is good I guess.

My assistant still brings up the main forum page in the popup window.

Perhaps a minor glitch in the program?

When I view Online Users by Member Name there are quite a few blanks where the user name should be. Something need looking into?

Am using Mozilla browser. Didn't have a problem before the new software.

Chat room works but I don't see the section that lists who is using it. Still forthcoming?

Still doesn't w*rk for me m*ndl with dial up connection. I did try to log on a couple of days ago on the pub's broadband connection and had no problem whatsover (except having to pay Bht 1.50 per minute for the priviledge).

:o

Thanks George, looks nice and seems to be faster as before.

I am still fiddling with the new 'quote'-feature, guess I will be coming there.

One thing personally disturbs me, the date. 'Today' and 'yesterday'.

When I read a post I might remeber 27th, now I remember 'yesterday'?

'My Assistant' used to have a 'Todays active posts' which disappeared?

This was quite helpful after 'View new posts' to go back to the one or other.

...One thing personally disturbs me, the date. 'Today' and 'yesterday'. When I read a post I might remember 27th, now I remember 'yesterday'?......

Hmm, I prefer to see the date too. Perhaps best - if possible - would be "Today" or "Yesterday" followed by the actual date. There's plenty of room for it on the line. :o

  • Author
...One thing personally disturbs me, the date. 'Today' and 'yesterday'. When I read a post I might remember 27th, now I remember 'yesterday'?......

Hmm, I prefer to see the date too. Perhaps best - if possible - would be "Today" or "Yesterday" followed by the actual date. There's plenty of room for it on the line. :o

Fixed.

...One thing personally disturbs me, the date. 'Today' and 'yesterday'. When I read a post I might remember 27th, now I remember 'yesterday'?......

Hmm, I prefer to see the date too. Perhaps best - if possible - would be "Today" or "Yesterday" followed by the actual date. There's plenty of room for it on the line. :o

Fixed.

Woo-hooo! Such service! kissass1.gifThanks George.

re. Smilies not working with Firefox 1.0PR

On my PC, the smilies in the "Clickable Smilies" group work with IE. They don't with Firefox 1.0PR - they did before the Forum Upgrade.

The Smilies in the window that pops up after you click "Show All", do work - both IE and Firefox.

I poked around Firefox and got to "Tools / Javascript Console" and opened it.

Every time I click on a Smilie in the "Clickable Smilies" group, the Javascript console shows one more message. Each is like this:

Error: ua_vers is not defined

Source File: http://www.thaivisa.com/forum/jscripts/ipb_bbcode.js        Line: 352

And if I click on the link, I get this:

//--------------------------------------------
// GENERAL INSERT FUNCTION
//--------------------------------------------
// ibTag: opening tag
// ibClsTag: closing tag, used if we have selected text
// isSingle: true if we do not close the tag right now
// return value: true if the tag needs to be closed later

//

function doInsert(ibTag, ibClsTag, isSingle)
{
var isClose = false;
var obj_ta = fombj.Post;

//----------------------------------------
// It's IE!
//----------------------------------------
if ( (ua_vers >= 4) && is_ie && is_win)
{
 if (obj_ta.isTextEdit)
 {
	 obj_ta.focus();
	 var sel = document.selection;
	 var rng = sel.createRange();
	 rng.colapse;
	 if((sel.type == "Text" || sel.type == "None") && rng != null)
	 {
   if(ibClsTag != "" && rng.text.length > 0)
  	 ibTag += rng.text + ibClsTag;
   else if(isSingle)
  	 isClose = true;

   rng.text = ibTag;
	 }
 }
 else
 {
	 if(isSingle)
	 {
   isClose = true;
	 }
	 
	 obj_ta.value += ibTag;
 }
}
//----------------------------------------
// It's MOZZY!
//----------------------------------------

else if ( obj_ta.selectionEnd )
{ 
 var ss = obj_ta.selectionStart;
 var st = obj_ta.scrollTop;
 var es = obj_ta.selectionEnd;
 
 if (es <= 2)
 {
	 es = obj_ta.textLength;
 }
 
 var start  = (obj_ta.value).substring(0, ss);
 var middle = (obj_ta.value).substring(ss, es);
 var end    = (obj_ta.value).substring(es, obj_ta.textLength);
 
 //-----------------------------------
 // text range?
 //-----------------------------------
 
 if (obj_ta.selectionEnd - obj_ta.selectionStart > 0)
 {
	 middle = ibTag + middle + ibClsTag;
 }
 else
 {
	 middle = ibTag + middle;
	 
	 if (isSingle)
	 {
   isClose = true;
	 }
 }
 
 obj_ta.value = start + middle + end;
 
 var cpos = ss + (middle.length);
 
 obj_ta.selectionStart = cpos;
 obj_ta.selectionEnd   = cpos;
 obj_ta.scrollTop      = st;


}
//----------------------------------------
// It's CRAPPY!
//----------------------------------------
else
{
 if (isSingle)
 {
	 isClose = true;
 }
 
 obj_ta.value += ibTag;
}

obj_ta.focus();

return isClose;
}

So, is it me or is it you?

Anyone else have this problem? :o

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.