» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 122
0 members and 122 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
Texas electricity - save on electric rates
Rimonabant
www.rimonabant-weight-loss.com
Football Betting - best nfl betting promotions at sportsbook.com.
Poker Chips - Clay and composite poker chips for home games.

Register Now! Contact Us

About this Page
This is a discussion on fiblack3d - Can't see within the Theme packs forums, part of the nukemods releases category; I've been fighting with the fiblack3d theme for a while now and I'm about to give up. I'...



Go Back   Nukemods Forum » nukemods releases » Theme packs

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 03-08-2005, 10:36 AM
Junior Member
 
Join Date: Nov 2004
Posts: 5
fiblack3d - Can't see
I've been fighting with the fiblack3d theme for a while now and I'm about to give up.

I've used it once before and never had a problem, but I'm moving a site and with the new host I couldn't get it to run at all at first (I'd change the default theme to fiblack3d and everything would be blank).

I changed the PHP version I was using from 4.3.10 to 5.0.3 and that seemed to help (I can see the theme now), but I still can't see the content for most of the blocks...

With any other theme I put on it seems fine, but with fiblack3d the modules, survey, login, all the blocks show up but have nothing in them.

http://foog.ca.sharedssl.info

Any ideas?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 03-09-2005, 02:30 PM
Junior Member
 
Join Date: Nov 2004
Posts: 5
No ideas? I really like this theme and would like to use it.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 03-09-2005, 03:01 PM
Member
 
Join Date: Jul 2004
Posts: 450
Are you sure everything is in its right place and activated, wheres your forums ? & or are they activated ?

If you really really what this working, msn me
__________________
What is Pay Per Play ?
ADVERTISING has commenced!!! We have launched!!!!!!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 03-09-2005, 05:17 PM
Junior Member
 
Join Date: Nov 2004
Posts: 5
Just wanted to thank Marty for his help, we couldn't get it to work but at least I confirmed that I'm not losing it

I think it's something with PHP and my host provider. I'll have to dig into the theme.php file as I think the place where it renders the contents of the block isn't executing properly to try and find out what is wrong with the php install.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 03-09-2005, 07:05 PM
Junior Member
 
Join Date: Nov 2004
Posts: 5
Alright, I think I have it working. I'll post what I changed here.

I started looking at the php code for the theme and figuring out where things were rendered. In the theme.php there's a function themesidebox($title, $content) that seems to handle putting together the blocks (html, css etc).

$content seems to be in some cases a file name to the actual block php file and then the function opens it and incorporates it. But in my case for whatever reason the $content already contained the correct content (haven't figured out the logic in the main.php yet), but somehow even though $content contained HTML the file_exists method is still returning true, going through the process of loading a file and changing the $content to be the contents of a non-existent file.

No idea why the file_exists doesn't work properly in this function on my server...

So what I did is basically comment out that part that checks for a file name and it works fine.

Bizarre, but works for now.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 03-31-2005, 12:32 AM
Junior Member
 
Join Date: Mar 2005
Posts: 2
Im trying to use the theme and Im getting the same exact problem...I tried modifying that function and commenting out portions but I cant seem to get it to work...can you PLEASE PLEASE PLEASE tell me exactly what you did to fix it....




THANK YOU!!!!!!!!!!!!!!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 03-31-2005, 09:47 AM
Junior Member
 
Join Date: Nov 2004
Posts: 5
This is what my function looks like in the theme.php

Code:
function themesidebox($title, $content) 
{
	        /*if (@file_exists($content)) {
                $fp = fopen ($content, "r");
		print filesize($content);
                $content = fread($fp, filesize($content));
                fclose ($fp);
                $content = "?>$content<?";
                $content = eval($content);
        } else if (eregi("^http", $content)) { 
                $fp = fopen ($content, "r"); 
                $content = fread($fp, 65535); 
                fclose ($fp); 
        }*/
    $tmpl_file = "themes/fiblack3d/blocks.html";
    $thefile = implode("", file($tmpl_file));
    $thefile = addslashes($thefile);
    $thefile = "\$r_file=\"".$thefile."\";";
    eval($thefile);
    print $r_file;
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 03-31-2005, 10:09 AM
Junior Member
 
Join Date: Mar 2005
Posts: 2
that worked!!!


thank you very much
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 10-19-2005, 12:32 PM
Junior Member
 
Join Date: Oct 2005
Posts: 5
you, my friend, are a god. I just tried it and it solved it for me too!

Thanks

www.69roadrunner.org
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
fiblack3d nokynoy Nuke 6.5 to 6.9 - Themes 10 12-04-2004 06:37 AM
fiblack3d azzlano Theme packs 2 08-10-2003 05:52 PM
fiblack3d mod Gav-Aus Nuke 6.5 to 6.9 - Themes 3 07-03-2003 06:07 AM
fiBlack3d...When? DaiShan Theme packs 19 05-19-2003 10:44 PM
Help with fiblack3d Evil Theme packs 10 04-22-2003 05:42 PM


All times are GMT -5. The time now is 12:14 PM.


Design by Vjacheslav Trushkin, color scheme by ColorizeIt!.

LinkBacks Enabled by vBSEO 3.1.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