PDA

View Full Version : View Link Details is blank


motowebmaster
06-10-2009, 01:01 AM
I added a link this evening and was presented with showlink.php page with blank fields. Initially thought I did something wrong but saw the link information in the browselink page. However, if I attempt to view the link details it is always blank.

I had one links template modified but reverted it to see if that helped, and it didn't.

I saw a similar post and tried disabling my installed products individually, with no results.

Then I looked through my plugins and disabled a manually-created plugin that displays random thumbnails from my PhotoPost Album (in my sidebar); then the links details started working again. To my knowledge there are no conflicts with my plugin and anything else (Dynamics, CMPS, vbSEO, PhotoPost Pro, PhotoPost Classifieds).

The plugin code itself is taken out of the vbulletin manual, with a change in the variable name (to ensure no conflicts), but the rest is standard. The hook location is global_start and execution order is 5.

The thumbnails themselves don't display in the currently active style, but on a new design/style I'm working on. However, when my photopost thumbnail plugin is activated, link details won't display in any style.

Any thoughts or ideas on where I should look?

Brian
06-10-2009, 11:38 AM
Can you post the code from the plugin that's causing the issue?

Our Sponsors
 

motowebmaster
06-11-2009, 12:05 AM
ob_start();
include('/path_to_/inc_features_filename.php');
$includedphotophp = ob_get_contents();
ob_end_clean();

Brian
06-11-2009, 01:17 PM
Can you post the code from the /inc_features_filename.php file that's being called there as well?

Our Sponsors
 

motowebmaster
06-11-2009, 11:40 PM
I figured it out.

After spending some time renaming all of the variables in my php file, I found the one that was conflicting with the link details.

Thanks for all you do!