Author |
Message |
mrix
Client

Joined: Dec 04, 2004
Posts: 757
|
Posted:
Sun Jul 03, 2005 3:40 am |
|
Hello all, I have phpnuke 7.6 installed on my site with Google tap GT-NEXTGEN, for as long as I can rememer I have had a problem with when I click on the news article icon which is on my front page I get a page come up with the the error
"The html tags you attempted to use are not allowed" I origionally thought it was phpnuke 7.7 causing the problem but I downgraded and still the problem is here, the problem is I think is that there is no updated gt-nextgen fiiles etc and a part of the 7.6 files dont work together, my plea now after many months is to ask if anyone could please send me their header footer and module gt-nextgen files that have been changed to actually work with 7.6 etc.
a big thanks if anyone can sort my long term problem here
Cheers all
mrix |
|
|
|
 |
dcasmr
Worker


Joined: Feb 06, 2004
Posts: 147
|
Posted:
Sun Jul 03, 2005 10:47 am |
|
Did you use 0.4a version and also read the old posts on gt-nextgen site? I think the 0.4a solves most of the problems. Anyhow, I am using GT-NEXT Gen with Nuke 7.4 patched and was thinking about upgrading to 7.6, but I will have to research the issue further before upgrading. |
|
|
|
 |
Raven
Site Admin/Owner

Joined: Aug 27, 2002
Posts: 17088
|
Posted:
Sun Jul 03, 2005 11:23 am |
|
In your GT file for News you have urlinCode:"'(?<!/)modules.php\?name=News&new_topic=([0-9]*)'",
| and urloutCode:"article-topic-\\1.html",
|
However, in your .htaccess you haveCode:RewriteRule ^article-topic-([0-9]*).html news.html`"w_topic=$1 [L]
|
See the difference? Your .htaccess is translating the url toCode:http://www.sea-fishing.org/modules.php?name=News&w_topic=3
| instead of Code:http://www.sea-fishing.org/modules.php?name=News&new_topic=3
| Correct the .htaccess entry toCode:RewriteRule ^article-topic-([0-9]*).html news.html`"new_topic=$1 [L]
| and it should work. |
|
|
|
 |
mrix

|
Posted:
Sun Jul 03, 2005 1:06 pm |
|
Hello I added the new changes but still the same
thanks anyway
Cheers
mrix |
|
|
|
 |
Raven

|
Posted:
Sun Jul 03, 2005 1:44 pm |
|
Well, that was an error so it did need correcting . Please check your modules admin and verify that the News module is active. |
|
|
|
 |
mrix

|
Posted:
Sun Jul 03, 2005 3:38 pm |
|
Hi yes the News module is active
Thanks
mrix |
|
|
|
 |
Raven

|
Posted:
Sun Jul 03, 2005 8:23 pm |
|
Please PM me your nuke god adminid/pass and your cPanel id/pass. |
|
|
|
 |
Raven

|
Posted:
Mon Jul 04, 2005 4:36 pm |
|
In my post above, even though I corrected your w_topic to new_topic, I failed to catch the 2 illegal characters `" as seen hereCode:RewriteRule ^article-topic-([0-9]*).html news.html`"new_topic=$1 [L]
| I replaced the `" with & and it works perfectly. |
|
|
|
 |
|