The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
Hello,
I have another one and I need your help. I created a mode for my forum (vb5). I used ajax to transfer data from outside to core/packages/helloworld/api/page.php: PHP Code:
Code:
$(document).ready(function(){
$("a#pagetab").live("click",function(){
var fid=$(this).attr("rel");
var p=$(this).attr("data");
var rs = $.ajax({
url: "core/packages/helloworld/api/page.php",
type: "POST",
data: { forumid:fid, page:p },
dataType: "html",
beforeSend: function () {
$("div.active").html("<img src='modnews/images/gif-load.gif'/> Loading...");
}
});
rs.done(function(data){
$("div.active").html(data);
});
});});
Code:
<br /> <b>Fatal error</b>: Class 'vB_Api_Extensions' not found in <b>/var/www/betawhitehat/core/packages/helloworld/api/page.php</b> on line <b>7</b><br /> Thanks. |
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|