Nukemods Forum  
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 82
5 members and 77 guests
4mr5jjyt4en, hcl52po26, inswq2ptantcexm, johnnyl77, micjk6phiganint
Most users ever online was 611, 03-21-2008 at 10:10 PM.
» .::.
» .:.

Go Back   Nukemods Forum > PHP-Nuke 7.x > Nuke 7.x - Modules

Reply
 
LinkBack Thread Tools Display Modes
Old
  (#11 (permalink))
Super Moderator
 
Duke's Avatar
 
Status: Offline
Posts: 1,016
Join Date: Dec 2005
Location: Under your bed
01-05-2006, 01:24 PM

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?
  Send a message via AIM to Duke  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#12 (permalink))
Junior Member
 
Status: Offline
Posts: 11
Join Date: Oct 2005
Location: Chicago
01-05-2006, 11:29 PM

Quote:
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!
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#13 (permalink))
Super Moderator
 
Duke's Avatar
 
Status: Offline
Posts: 1,016
Join Date: Dec 2005
Location: Under your bed
01-05-2006, 11:32 PM

Quote:
Originally Posted by RottenZombie
Quote:
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
  Send a message via AIM to Duke  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#14 (permalink))
Junior Member
 
Status: Offline
Posts: 11
Join Date: Oct 2005
Location: Chicago
01-06-2006, 12:56 AM

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
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#15 (permalink))
Super Moderator
 
Duke's Avatar
 
Status: Offline
Posts: 1,016
Join Date: Dec 2005
Location: Under your bed
01-06-2006, 12:58 AM

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.
  Send a message via AIM to Duke  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Found it!!!!!!!
Old
  (#16 (permalink))
Junior Member
 
Status: Offline
Posts: 11
Join Date: Oct 2005
Location: Chicago
Found it!!!!!!! - 01-06-2006, 01:45 AM

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
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#17 (permalink))
Super Moderator
 
Duke's Avatar
 
Status: Offline
Posts: 1,016
Join Date: Dec 2005
Location: Under your bed
01-06-2006, 03:01 AM

Great man, glad it worked out for you.

BTW, thanks for posting the solution here, very helpful indeed.
  Send a message via AIM to Duke  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#18 (permalink))
Junior Member
 
Status: Offline
Posts: 11
Join Date: Oct 2005
Location: Chicago
01-06-2006, 05:41 PM

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
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#19 (permalink))
Junior Member
 
Status: Offline
Posts: 11
Join Date: Oct 2005
Location: Chicago
01-10-2006, 04:08 PM

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"]&quot;Title&quot; 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.
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#20 (permalink))
Junior Member
 
Status: Offline
Posts: 1
Join Date: Jan 2006
02-22-2006, 06:13 PM

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?
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Reviews module name asdfghh Nuke 6.5 to 6.9 - Modules 4 10-11-2004 11:51 AM
Reviews module with search Polo Open topics 1 07-08-2003 04:32 AM
Easy fix on the Reviews module? Kristic Site design 2 06-13-2003 11:44 PM
Reviews Module needed to be modified Kristic Nuke 6.5 to 6.9 - Modules 2 06-13-2003 11:35 AM
reviews module, hack? reino4 Site design 11 05-26-2003 07:19 AM




vBulletin Skin developed by: vBStyles.com


LinkBacks Enabled by vBSEO 3.3.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31