|
» Online Users: 59 |
| 0 members and 59 guests |
| No Members online |
| Most users ever online was 611, 03-21-2008 at 10:10 PM. |
|
» .::. |
Web Hosting - web hosting, dedicated servers and web design services
|
Online Degree - search for 1000+ online degrees, online colleges & online universities.
|
tattoo - we are a group of tattoo enthusiasts
|
Gexa Energy - your absolute best choice in electric service
|
|
|
buy Rimonabant - Help dieters achieve significant weight loss without having to slog in the gym
|
|
|
|
|
About this Page This is a discussion on Using HTML in reviews module within the Nuke 7.x - Modules forums, part of the PHP-Nuke 7.x category; I feel your pain buds but I really have no idea. Personally I'm terrified of upgrading to nuke 7.... |
|
 |
|
 |
|
 |

01-05-2006, 01:24 PM
|
 |
Super Moderator
|
|
Join Date: Dec 2005
Location: Under your bed
Posts: 998
|
|
|
I feel your pain buds but I really have no idea. Personally I'm terrified of upgrading to nuke 7.8 because the install I tried was horribly buggy and thus un-installed in a matter of days. I never even had a chance to try the reviews module simply because of how messed up the rest of the site was.
Have you tried asking this question at nukecops?
|

01-05-2006, 11:29 PM
|
|
Junior Member
|
|
Join Date: Oct 2005
Location: Chicago
Posts: 11
|
|
|
Originally Posted by Duke
|
I feel your pain buds but I really have no idea. Personally I'm terrified of upgrading to nuke 7.8 because the install I tried was horribly buggy and thus un-installed in a matter of days. I never even had a chance to try the reviews module simply because of how messed up the rest of the site was.
Have you tried asking this question at nukecops?
|
I'll try them over there at nukecops, That snippet of code though you suggested for the weblinks page looks great!
|

01-05-2006, 11:32 PM
|
 |
Super Moderator
|
|
Join Date: Dec 2005
Location: Under your bed
Posts: 998
|
|
|
Originally Posted by RottenZombie
|
|
Originally Posted by Duke
|
I feel your pain buds but I really have no idea. Personally I'm terrified of upgrading to nuke 7.8 because the install I tried was horribly buggy and thus un-installed in a matter of days. I never even had a chance to try the reviews module simply because of how messed up the rest of the site was.
Have you tried asking this question at nukecops?
|
I'll try them over there at nukecops, That snippet of code though you suggested for the weblinks page looks great!
|
Ya it really helps fill up dead space nicely doesn't it?
I sincerely hope you find help for your problem buds. I installed 7.8 through Fantastico at an older webhost and it was a complete disaster. If you do manage to get it resolved, would you mind posting here and updating us?
Thanks,
Ken
|

01-06-2006, 12:56 AM
|
|
Junior Member
|
|
Join Date: Oct 2005
Location: Chicago
Posts: 11
|
|
|
Actually I could have sworn I was running 7.8 but it is actually 7.6... Guess I had a mind fart.
Ofcourse if I find a cure I'll post it... I disabled it for now
|

01-06-2006, 12:58 AM
|
 |
Super Moderator
|
|
Join Date: Dec 2005
Location: Under your bed
Posts: 998
|
|
|
Is your version of 7.6 patched? If not, you may want to look at patching it as it may have been an issue when 7.6 was released initially that was resolved in the patch. Another thing you can try is re-downloading a new version of 7.6 from phpnuke.org and replacing that particular file with a fresh one.
|

01-06-2006, 01:45 AM
|
|
Junior Member
|
|
Join Date: Oct 2005
Location: Chicago
Posts: 11
|
|
|
Found it!!!!!!!
Over at Nukecops.com I found the following post by "mtalley887", I did what he said and it works like a charm!
|
Quote:
|
Here's the fix for your problem guys.
Open up your PHPNuke 7.5 modules/Reviews index.php file and go to first line 170 and find this:
|
Code:
|
$text = stripslashes(check_html($text, "")); |
Comment this line out and add the following line so it looks like this:
|
Code:
|
#$text = stripslashes(check_html($text, ""));
$text = stripslashes($text); |
Then go to line 283 and find the following line:
|
Code:
|
$text = htmlspecialchars(stripslashes(Fixquotes(urldecode(check_html($text, ""))))); |
Comment this line out and add the following below it so it looks like this:
|
Code:
|
#$text = htmlspecialchars(stripslashes(Fixquotes(urldecode(check_html($text, "")))));
$text = stripslashes(Fixquotes(urldecode(check_html($text, "")))); |
That's it..now your html tags won't show, they will be active, you'll be able to show images, etc.
Michael
Kodetech.com
|
|

01-06-2006, 03:01 AM
|
 |
Super Moderator
|
|
Join Date: Dec 2005
Location: Under your bed
Posts: 998
|
|
|
Great man, glad it worked out for you.
BTW, thanks for posting the solution here, very helpful indeed.
|

01-06-2006, 05:41 PM
|
|
Junior Member
|
|
Join Date: Oct 2005
Location: Chicago
Posts: 11
|
|
|
Well, Hopefully it helps some people as it took me a few weeks of digging before I found his post over there.
Hard to have a horror movie review site with your reviews all jacked up, lol
|

01-10-2006, 04:08 PM
|
|
Junior Member
|
|
Join Date: Oct 2005
Location: Chicago
Posts: 11
|
|
I'm sure some of you have your own ways of doing this, sometimes I want to highlight some reviews on the main page "News" section. When you do this, it's hard to wrap a picture around text. I use this code but you MUST replace all the "[" brackets with "<" or if you PM me I can email you the html file. The code would not show up if I posted it normally.
|
Quote:
|
[table width="85%" valign="top" align="center" id="story"]
[td] [table width="99%"]
[tr]
[td width="32%" height="170"][img src="http://linktoyourimage.com/yourimage.jpg"][/td]
[td width="68%"][h3 align="center"]"Title" DVD
- Review by Your Name[/h3]
[p]Directed by "Director"[/p]
[p]Written by "Writer"[/p]
[p]Starring "Actors"[/p]
[p]Produced by "Producer"[/p]
[p]"Rating"[br]
Length[/p]
[/td]
[/tr]
[/table]
[p]Insert your html formatted review here[/p]
|
You can check out what it looks like over on my horror site as I'm using it now. It's very easy to customize it to your needs.
Hope it helps somebody.
|

02-22-2006, 06:13 PM
|
|
Junior Member
|
|
Join Date: Jan 2006
Posts: 1
|
|
I'm using version 7.8 and I can't use reviews module...
Here is the link: www.portugalmetal.pt.to
When I click on Reviews appear a blank page without nothing inside...
Anyone can help me?
|
 |
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
All times are GMT -5. The time now is 08:25 PM.