You are missing our premiere tool bar navigation system! Register and use it for FREE!

NukeCops  
•  Home •  Downloads •  Gallery •  Your Account •  Forums • 
Readme First
- Readme First! -

Read and follow the rules, otherwise your posts will be closed
Modules
· Home
· FAQ
· Buy a Theme
· Advertising
· AvantGo
· Bookmarks
· Columbia
· Community
· Donations
· Downloads
· Feedback
· Forums
· PHP-Nuke HOWTO
· Private Messages
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Theme Gallery
· Top
· Topics
· Your Account
Who's Online
There are currently, 57 guest(s) and 1 member(s) that are online.

You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - phpnuke 7.9 numerous problems [ ]
 Forum FAQ  •  Search  •   •  Memberlist  •  Usergroups   •  Register  •  Profile •    •  Log in to check your private messages  •  Log in

 
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
Author Message
Smurfette
Nuke Cadet
Nuke Cadet


Joined: Dec 20, 2005
Posts: 2


PostPosted: Tue Dec 20, 2005 7:08 am Reply with quoteBack to top

I just installed phpnuke 7.9 yesterday after having to redo the entire site, I had everything up and running just fine but however once I added in a theme or any kind of custom block I am no longer able to make blocks, make changes to blocks, make new story posts add in any topic graphics nothing. I am not sure what is going on but this did not happen the other day before I redid the site it was working just fine.

I am not a phpnuke wiz so I am going to need some serious help with this, I have not used the patch file in fear of losing stuff on the site. Please someone give me a hand.

Thanks,
Ette
Find all posts by SmurfetteView user's profileSend private message
Evaders99
Site Admin
Site Admin


Joined: Aug 17, 2003
Posts: 12403


PostPosted: Tue Dec 20, 2005 11:09 pm Reply with quoteBack to top

I'm not sure what it could be. You are describing very strange symtoyms. If you cannot duplicate it, my guess is that it is a server stablity issue, not necessarily phpNuke. And if you don't have it Patched, we don't know if any of these bugs were already fixed

_________________
Helping those that help themselves
Read FIRST or DIE!

"Fighting is terrible, but not as terrible as losing the will to fight."
Star Wars Rebellion Network - Need Help? Evaders Squadron Coding
Find all posts by Evaders99View user's profileSend private messageVisit poster's websiteAIM Address
Smurfette
Nuke Cadet
Nuke Cadet


Joined: Dec 20, 2005
Posts: 2


PostPosted: Thu Dec 22, 2005 6:34 am Reply with quoteBack to top

I actually tried the patch and it actually screwed up my site, I just seem to be having an all around horrible time with php this time around. I guess I will be speaking to my host about this since there really is not much that anyone has said that can help me out.
Find all posts by SmurfetteView user's profileSend private message
Evaders99
Site Admin
Site Admin


Joined: Aug 17, 2003
Posts: 12403


PostPosted: Thu Dec 22, 2005 9:42 pm Reply with quoteBack to top

Yea, 7.9 is another untested buggy release from FB. So good luck with that

_________________
Helping those that help themselves
Read FIRST or DIE!

"Fighting is terrible, but not as terrible as losing the will to fight."
Star Wars Rebellion Network - Need Help? Evaders Squadron Coding
Find all posts by Evaders99View user's profileSend private messageVisit poster's websiteAIM Address
Caffeinated
Nuke Soldier
Nuke Soldier


Joined: Feb 18, 2005
Posts: 16


PostPosted: Mon Jan 30, 2006 5:35 am Reply with quoteBack to top

Evaders99 wrote:
Yea, 7.9 is another untested buggy release from FB. So good luck with that


Another poster jumping in and adding a related question to the thread.

Been thinking of upgrading from 7.5 to something. Any thoughts on that?

7.5 seems stable but I've been having problems with users not being able to access their accounts and profiles that are private becoming public. Thought perhaps 7.7 .8 or .9 might be more stable?

What would you do if you were in my shoes?

G.
Find all posts by CaffeinatedView user's profileSend private message
Evaders99
Site Admin
Site Admin


Joined: Aug 17, 2003
Posts: 12403


PostPosted: Mon Jan 30, 2006 5:03 pm Reply with quoteBack to top

At this point, 7.6 is the most recommended - pretty stable. If you absolutely need the WYSIWYG editor, then you could use 7.7 or higher

Make sure you use the Patched files too - will keep things secure and fix many bugs - http://www.nukeresources.com

_________________
Helping those that help themselves
Read FIRST or DIE!

"Fighting is terrible, but not as terrible as losing the will to fight."
Star Wars Rebellion Network - Need Help? Evaders Squadron Coding
Find all posts by Evaders99View user's profileSend private messageVisit poster's websiteAIM Address
Seapaddler
Nuke Cadet
Nuke Cadet


Joined: Apr 03, 2006
Posts: 3


PostPosted: Mon Apr 17, 2006 2:19 am Reply with quoteBack to top

I upgraded from 7.2/phpbb 2.07 TO 7.9 and 2.0.19 recently and I wish there was a better alternative to phpnuke. I had so many headaches it took a week to get it reasonably working. I still have problems. Like everytime I enter a single quote in a tinymce textarea the output is multiple single quotes everywhere I had only one. I installed tinymce on my old 7.2 site and it worked great. So when I write "it's" it will show up on the page as it''''s and some words on the same page will be it''''''''s. Rediculous annoyances like this. I won't be giving Burzzi 10 bucks anymore when new releases come out, I've paid dearly in all the frustration for the next 20 years.

To fix your Topic images not appearing in your news stories in 7.9 even though they show up in your admin edit topics page and even though you have img tag in your AllowableHTML list you need to do something with this code in mainfile.php.
The variable $topicimage i.e. $t_image = $t_image . $tipath . $topicimage in your theme.php gets toasted by the function gettopics in mainfile.php.

7.9 mainfile.php
Code:
function getTopics($s_sid) {
   global $topicname, $topicimage, $topictext, $prefix, $db;
   $sid = intval($s_sid);
   $result = $db->sql_query("SELECT t.topicname, t.topicimage, t.topictext FROM ".$prefix."_stories s LEFT JOIN ".$prefix."_topics t ON t.topicid = s.topic WHERE s.sid = '".$sid."'");
   $row = $db->sql_fetchrow($result);
   $db->sql_freeresult($result);
   $topicname = filter($row[topicname], "nohtml");
   $topicimage = filter($row[topicimage], "nohtml");
   $topictext = filter($row[topictext], "nohtml");
}


Replace it with older code such as:
7.2 or maybe 7.6 is the same as 7.2 I dunno

7.2 mainfile.php
Code:

function getTopics($s_sid) {
    global $topicname, $topicimage, $topictext, $prefix, $db;
    $sid = $s_sid;
    $sid = intval($sid);
    $sql = "SELECT topic FROM ".$prefix."_stories WHERE sid='$sid'";
    $result = $db->sql_query($sql);
    $row = $db->sql_fetchrow($result);
    $sql = "SELECT topicid, topicname, topicimage, topictext FROM ".$prefix."_topics WHERE topicid='$row[topic]'";
    $result = $db->sql_query($sql);
    $row = $db->sql_fetchrow($result);
    $topicid = $row[topicid];
    $topicname = $row[topicname];
    $topicimage = $row[topicimage];
    $topictext = $row[topictext];
}


It worked for me. I guess it ain't much of an upgrade when I have to resort to older code snippets to get stuff to work Mad
Find all posts by SeapaddlerView user's profileSend private message
Evaders99
Site Admin
Site Admin


Joined: Aug 17, 2003
Posts: 12403


PostPosted: Mon Apr 17, 2006 6:48 am Reply with quoteBack to top

Try this:

in mainfile.php, comment out or delete this line
Code:

   $what = str_replace("'","''",$what);


I don't use 7.9 myself, nor pay FB for any such release.
There are a lot of alternatives to phpNuke, all kinds of CMS systems. A good site to view and demo them is at http://www.opensourcecms.com

_________________
Helping those that help themselves
Read FIRST or DIE!

"Fighting is terrible, but not as terrible as losing the will to fight."
Star Wars Rebellion Network - Need Help? Evaders Squadron Coding
Find all posts by Evaders99View user's profileSend private messageVisit poster's websiteAIM Address
Display posts from previous:      
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



Powered by phpBB © 2001, 2005 phpBB Group

Ported by Nuke Cops © 2003 www.nukecops.com
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::
Powered by · TOGETHER TEAM srl ITALY http://www.togetherteam.it · DONDELEO E-COMMERCE http://www.DonDeLeo.com
Web site engine's code is Copyright © 2002 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 0.196 Seconds - 263 pages served in past 5 minutes. Nuke Cops Founded by Paul Laudanski (Zhen-Xjell)
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::