| Author |
Message |
noord New Member


Joined: Sep 13, 2006 Posts: 6
|
Posted:
Sat Oct 17, 2009 1:27 pm |
|
Hello Raven-experts
I hope that some can help here. My friend has installed RavenNuke 2.40.00 and after installations show up strange symbols  in the left upper corner his pages.
Never this before has not seen.
|
|
|
|
 |
nuken RavenNuke(tm) Development Team

Joined: Mar 11, 2007 Posts: 1536 Location: North Carolina
|
Posted:
Sat Oct 17, 2009 2:08 pm |
|
Try replacing your /includes/jquery/nukeNAV.php with this one.
You will need to unzip this download and copy over the existing nukeNAV.php file. |
|
|
|
 |
noord New Member


Joined: Sep 13, 2006 Posts: 6
|
Posted:
Sat Oct 17, 2009 2:47 pm |
|
nuken , thank you very much! |
|
|
|
 |
kguske Site Admin

Joined: Jun 04, 2004 Posts: 6044
|
Posted:
Sun Oct 18, 2009 7:05 am |
|
Thanks, nuken. In case you check and find no visibile differences between the files, that's because the updated file is saved in ISO 8859-2 format, and the bad file is in UTF-8. You could simply change the format in your editor and save, but it's probably easier to download the file. |
|
|
|
 |
slick_303 Hangin' Around

Joined: Feb 28, 2007 Posts: 34
|
Posted:
Wed Oct 21, 2009 12:24 pm |
|
I just did a fresh install of 2.4.00, had the same issue, resolved with nuken's file. |
|
|
|
 |
Palbin Site Admin

Joined: Mar 30, 2006 Posts: 2456 Location: Pittsburgh, Pennsylvania
|
Posted:
Wed Oct 21, 2009 12:37 pm |
|
We are aware of the issue and it will be fixed in 2.40.01 |
|
|
|
 |
xGSTQ Involved


Joined: Feb 03, 2006 Posts: 267 Location: UK
|
Posted:
Thu Oct 29, 2009 3:01 pm |
|
| kguske wrote: | | Its because the updated file is saved in ISO 8859-2 format, and the bad file is in UTF-8. |
Ive always wondered why as well, i used to put it down to microsofts expression web  |
|
|
|
 |
sixonetonoffun Spouse Contemplates Divorce

Joined: Jan 02, 2003 Posts: 2499
|
Posted:
Mon Jan 18, 2010 11:00 pm |
|
Changing in your language/lang-english.php
charset=ISO-8859-1
to
charset=UTF-8
Seems to be the fix but... I have to ask why aren't we using UTF-8 anyway? |
|
|
|
 |
jakec Site Admin

Joined: Feb 06, 2006 Posts: 3038 Location: United Kingdom
|
Posted:
Tue Jan 19, 2010 1:03 am |
|
Because it is a lot more complicated than just switching over. If you search the forums you will see previous discussions on this matter. |
|
|
|
 |
montego Site Admin

Joined: Aug 29, 2004 Posts: 9136 Location: Arizona
|
Posted:
Tue Jan 19, 2010 8:36 pm |
|
Its the bloody database that is the kicker... at least for the thousands upon thousands of upgraders.  |
|
|
|
 |
Raven Site Admin/Owner

Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
|
Posted:
Thu Jan 21, 2010 2:27 am |
|
| sixonetonoffun wrote: | Changing in your language/lang-english.php
charset=ISO-8859-1
to
charset=UTF-8
Seems to be the fix but... I have to ask why aren't we using UTF-8 anyway? |
Whoa! Who let you back in?
You son-of-a-gun!! Are you back to stay or are you just yankin' my chain again? |
|
|
|
 |
sixonetonoffun Spouse Contemplates Divorce

Joined: Jan 02, 2003 Posts: 2499
|
Posted:
Thu Jan 21, 2010 8:33 am |
|
I'm putting a toe out to get it wet and hoping it doesn't get bit off. Its hit and miss for now but I had to try a ravennuke test site to get a good baseline of where things should be and are. This was the one and as far as I can tell only install issue running on a fresh install of Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny4 with Suhosin-Patch Server. Congrats to you and your team!
So yep I'll try and get caught up on years of slacking and with some luck perhaps ya can get a few useful posts out of me to boot. Obviously I need to sit back and do some reading before I post.  |
|
|
|
 |
Raven Site Admin/Owner

Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
|
Posted:
Thu Jan 21, 2010 12:19 pm |
|
Be sure to read the Wiki  |
|
|
|
 |
unicornio Involved


Joined: Aug 13, 2009 Posts: 432
|
Posted:
Thu Jan 28, 2010 1:47 am |
|
hi nuken
| Code: | | Try replacing your /includes/jquery/nukeNAV.php with this one. |
Your solution is working but
Online=Working
Offline(localhost)=Not working
If you do this change then it works
C:\wamp\www\language\language
Open language-English.php
Search for
define('_CHARSET','UTF-8');
Replace with
define('_CHARSET','UTF-8');
//define('_CHARSET','ISO-8859-1');
You dont need to do this trick above when your site is online. |
|
|
|
 |
Guardian2003 Site Admin

Joined: Aug 28, 2003 Posts: 6373 Location: Vsetin, Czech Republic
|
Posted:
Thu Jan 28, 2010 2:06 am |
|
You shouldn't need to do it any way. The problem has been discussed many times, the solution is to replace the nukeNAV.php file (or delete and re-write the first line of it) because it was accidentally saved with a utf-8 BOM in the original package. |
|
|
|
 |
unicornio Involved


Joined: Aug 13, 2009 Posts: 432
|
Posted:
Thu Jan 28, 2010 2:24 am |
|
Morning Guardian. I understand but your solution is only when the site is online not when you are running the site on localhost(offline) then it doesnt work replacing the nav. That is why I try to complete in one post the whole solution. Thanks for replying. See u around |
|
|
|
 |
Raven Site Admin/Owner

Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
|
Posted:
Thu Jan 28, 2010 2:40 am |
|
unicornio,
Strange, it works for me. |
|
|
|
 |
sixonetonoffun Spouse Contemplates Divorce

Joined: Jan 02, 2003 Posts: 2499
|
Posted:
Thu Jan 28, 2010 8:08 am |
|
| Guardian2003 wrote: | | You shouldn't need to do it any way. The problem has been discussed many times, the solution is to replace the nukeNAV.php file (or delete and re-write the first line of it) because it was accidentally saved with a utf-8 BOM in the original package. |
This works fine I'd bet the anomalies are shown in forms saved before editing the file. So after fixing the issue there may be some posts to re-edit such as in the html blocks. You may find things like this happening â„¢!
Just edit re save and all will be fine again.
Wow didn't expect this thread to continue  |
|
|
|
 |
Raven Site Admin/Owner

Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
|
Posted:
Thu Jan 28, 2010 3:10 pm |
|
| sixonetonoffun wrote: | Wow didn't expect this thread to continue |
sixonetonoffun,
And I didn't expect you to either  |
Last edited by Raven on Fri Feb 05, 2010 2:45 pm; edited 1 time in total |
|
|
 |
stryker_fo New Member


Joined: Feb 04, 2010 Posts: 5
|
Posted:
Fri Feb 05, 2010 12:57 pm |
|
nice thanx for the file much appreciated worked like a charm |
|
|
|
 |
|
|
|
|