vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Fatal error: Call to a member function on a non-object (https://vborg.vbsupport.ru/showthread.php?t=83238)

SilentK 06-16-2005 07:57 PM

Fatal error: Call to a member function on a non-object
 
I have a query that used to work before I installed 3.5 Now I get this error message whenever I load the page
Quote:

Fatal error: Call to a member function on a non-object in /./././htdocs/widget.php on line 5
This is the contents of widget.php

PHP Code:

<?php
chdir
('/./././htdocs/forums');
require 
'global.php';

$latestThreads $DB_site->query("
        SELECT *
        FROM " 
TABLE_PREFIX "thread AS thread
        WHERE thread.visible = 1 
        ORDER BY dateline DESC
        LIMIT 5  
       "
);
$num_rows $DB_site->num_rows($latestThreads);
while(
$row $DB_site->fetch_array($latestThreads) )
{
     echo(
'<a href="http://www.xblteams.com/forums/showthread.php?t=' $row[threadid] . '">' $row[title] . '</a><br />');


?>

That worked before 3.5. What changed? and what do I need to change to make it work?

Also I would like to get it so the links are formatted like this
Code:

<a href="javascript:widget.openURL('http://www.xblteams.com/forums/showthread.php?t=put thread id here')"></a>
I've tried
PHP Code:

 echo('<a href="javascript:widget.openURL('http://www.xblteams.com/forums/showthread.php?t=' . $row[threadid] . ' ')">' . $row[title] . '</a><br />'); 

but I get a parse error.
Thanks in advance.

Andreas 06-16-2005 08:05 PM

Quote:

Originally Posted by SilentK
That worked before 3.5. What changed? and what do I need to change to make it work?

$DB_site is now $db.

And you should use query_read/query_write instead of just query depending if you are reading from or writing to the database.

PHP Code:

echo('<a href="javascript:widget.openURL(\'http://www.xblteams.com/forums/showthread.php?t=' $row[threadid] . '\')">' htmlentities($row[title]) . '</a><br />'); 

should work.

The htmlspecialchars_uni() is necesarry, otherwise you create an XSS vulnerbilitie.

SilentK 06-16-2005 08:51 PM

Hmmm that fixed the error and appears to be formatting the link correctly. What I am trying to do is create a widget for mac os 10.4 so far the only way I have found to get a widget to open up a link in safari is javascript:widget.openURL

From what I can tell the php file is doing it's job perfectly.
Here's an example of a link that it's pumping out.
Code:

<a href="javascript:widget.openURL('http://www.xblteams.com/forums/showthread.php?t=4257')">Call of Duty screenshots</a>
That should work because I have tested.
Code:

<a href="javascript:widget.openURL('http://www.xblteams.com/')">Xblteams.com</a>
Directly inside the widge and it works. I am guessing there must be an issue with the way I am loading the links into the widget.

here's the body of the widget
Code:

<body background="Default.png">
<table cellpadding="20">
<tr><td>
<IFRAME SRC="http://www.xblteams.com/widget.php" WIDTH=180 HEIGHT=240>
</IFRAME>
</td></tr></table>
</body>

From the testing I have done the iframe is causing the problem. The reason I think this is I created a file with just
Code:

<a href="javascript:widget.openURL('http://www.xblteams.com/')">Xblteams.com</a>
and loaded it via an Iframe and it didn't work either. By not working I mean when I click the link nothing happens.

Is there a better way to load the links in?
widgets support javascript, and html.


All times are GMT. The time now is 01:00 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01219 seconds
  • Memory Usage 1,733KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (3)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete