vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   mYvBindex v3.1 (https://vborg.vbsupport.ru/showthread.php?t=44691)

MartynJ 12-24-2002 10:57 PM

Hello, this hack is working great so far (basically ironing out config probs on localhost before uploading to main site), one or two things I'd like to do/suggest. Would it be possible to have "Add news item" available in the Admin CP? Or perhaps a nice and simple link in the postbit that moves copies any thread to the (hidden) news forum (though I think I'd work on that one myself.)

The other thing I'd like to do is have the forumhome (below news items) as it is in default vB. If you look at the image, you'll see what I mean. Anyone know which parts of code and templates I should copy across to make that work?

EDIT: The clickable link in the postbit: I had this down:

PHP Code:

<a href="postings.php?action=move&forumid=14&method=copy&s=$session[sessionhash]&threadid=$post[threadid]">#</a> 

And as soon as I click it, I am prompted to select where I want to move it to (though my news forum is hidden and thus not selectable on the drop down). Is there any way to keep the news forum hidden (even from mods/admin) and yet allow the moving of threads this way?

Iezugod 12-25-2002 01:51 AM

Ok, I have some questions..

first, the link:

www.crystalchronicle.com/myvbindex.php

I want to move alot of the stuff on the left, to the right.

Second:

The site is based off of an RPG Game, and I need to have stuff like:

Walkthroughs
Strategy
Characters
Items
Weapons
Levels
Creatures

And so on, and then have them link to pages that have all that info.

Question is... How do I do that?

Tigga 12-25-2002 07:24 AM

Tony - Were you upgrading or doing a fresh install? Does it work when you post a new thread in your news forum? Here's the quckest, easiest way I can tell you to fix them for now. Just log into phpMyAdmin and run the following query:

UPDATE post SET isnews='Y' WHERE postid=XX;

XX would be the post id for your news post. You can find that easily by holding the mouse over the "edit" or "quote" buttons for that post and looking in your browsers status bar. At the end of the link you will see "postid=XX". Running that query for each news post will fix the problem for now.


Marty - Adding news through the Admin CP, adding the link to the postbit, and adding the forums homepage under the news would require a little hacking. I can most likely tell you what to change, but it might be a day or two since it's the holidays. ;)

Iezugod - Things can be moved around in the index template. I'm guessing you figured that out though from looking at your site. I'm not sure I follow you about adding the links... Where do you want them added? Are you saying you want to create more templates?

MartynJ 12-25-2002 06:28 PM

Quote:

Originally posted by PlurPlanet
Marty - Adding news through the Admin CP, adding the link to the postbit, and adding the forums homepage under the news would require a little hacking. I can most likely tell you what to change, but it might be a day or two since it's the holidays. ;)
If you want, I'll contine working on the news Via Postbit thing. I think it would actually be a good deal easier if it was possible to have it such that NEWS on the front page could be read from any thread in any forum, so long as "isnews" was set, thus no longer requiring the special forums. The problem I have at the moment is that with the news forum being hidden, if a user wants to add a comment, they can't since they aren't allowed to post in hidden forums. It would be far easier if the NEWS thread was in a normal forum but simply had a special property attached to it that set it apart from normal threads (such as a sticky).

MartynJ 12-25-2002 06:46 PM

Hmm, something very strange. Any thread I *start* in the news forum becomes news, but any thread I *move* to the news forum is not recognised as news. Anyone know what's causing this?

Tony DiMera 12-26-2002 04:31 PM

Quote:

Originally posted by PlurPlanet
Tony - Were you upgrading or doing a fresh install? Does it work when you post a new thread in your news forum? Here's the quckest, easiest way I can tell you to fix them for now. Just log into phpMyAdmin and run the following query:

UPDATE post SET isnews='Y' WHERE postid=XX;

XX would be the post id for your news post. You can find that easily by holding the mouse over the "edit" or "quote" buttons for that post and looking in your browsers status bar. At the end of the link you will see "postid=XX". Running that query for each news post will fix the problem for now.



It was a fresh installl. BTW I would put 17 inplace of the XX correct? If so, would i put anything inplace of where you have "Y"?

WSB 12-26-2002 06:35 PM

I got the following error. Please help me out:

Code:

Database error in vBulletin 2.2.9:

Invalid SQL: SELECT thread.threadid,thread.title,thread.replycount,thread.postusername,thread.postuserid,thread.dateline,thread.views,thread.iconid,thread.votenum,thread.votetotal,post.postid,post.pagetext,post.allowsmilie,post.showsignature,user.signature,avatar.avatarpath,NOT ISNULL(avatardata) AS hascustom,customavatar.dateline AS avatardateline  FROM thread LEFT JOIN post USING (threadid) LEFT JOIN user ON (user.userid=post.userid) LEFT JOIN avatar ON (avatar.avatarid=user.avatarid) LEFT JOIN customavatar ON (customavatar.userid=user.userid)  WHERE thread.forumid= AND isnews='Y' GROUP BY thread.threadid ORDER BY thread.threadid DESC
mysql error: You have an error in your SQL syntax near 'AND isnews='Y' GROUP BY thread.threadid ORDER BY thread.threadid DESC ' at line 1

mysql error number: 1064

Date: Thursday 26th of December 2002 01:32:26 PM
Script: http://www.worldsoccerboard.com/myvbindex.php
Referer:


Tigga 12-26-2002 07:00 PM

Marty - The reason that posts are not appearing as news if you move them is because only posts that are started in the news forum will have the 'isnews' column updated. I should have some time later this evening or tomorrow to play with it and tell you how to change it so that a post in any forum could become news.
Quote:

The problem I have at the moment is that with the news forum being hidden, if a user wants to add a comment, they can't since they aren't allowed to post in hidden forums.
If you changed your news forum and set it so that it was not private and set "Is active?" to no, then your users would be able to reply to and read news posts, but the forum would not appear on your main forums index page.

Tony - Were the news posts made before you installed the hack? If so, then that's why the news wasn't working. It will only recognize news posts that have been posted after the hack has been installed. Either way running the query I gave you above will update the posts so they will appear on your homepage. Please re-read the instructions I gave. 17 is your fourmid, not the postid. You would need to find the postid for each news post and replace the XX in the query with that number. The 'Y' in that query should not be changed.

WSB - You have to set your News Forum ID in your admin options before it will work properly.

jarvis 12-27-2002 05:44 PM

How hard would this be to add additional boxes within the index file to accomodate:

- Links
- Afilliates
- etc.

Can I just embed the html code within the PHP file? Are the templates that are called a fixed width so that I could emulate the size with respect to what is being drawn by myvbindex?

Has anyone already added these types of fields already and not make me recreate the wheel?

I was also thinking how nice it might be to have multiple instances of myvbindex running that could link multiple news areas of a site while pulling the articles from multiple forums.

For example, main page would show general news from forum xx, but there would be a link box on the side that held different interest areas like PC Games, MAC, etc. These links would pull up another instance of myvbindex that pull articles from the related forum.

Am I just a dreamer? :surprised: :)

Tigga 12-27-2002 07:22 PM

Quote:

Originally posted by jarvis
How hard would this be to add additional boxes within the index file to accomodate:

- Links
- Afilliates
- etc.
If you'll refer to posts 194 & 196 in this thread, there are 2 different explanations on how to do that. Either of those ways will work and should be pretty simple.

Quote:

Can I just embed the html code within the PHP file? Are the templates that are called a fixed width so that I could emulate the size with respect to what is being drawn by myvbindex?
All the "boxes" are tables that have their width set to 100%, which are nested in a table cell with a with of 165. If you look in the index template for that table cell you can change the width there and that will affect all the boxes.

Quote:

I was also thinking how nice it might be to have multiple instances of myvbindex running that could link multiple news areas of a site while pulling the articles from multiple forums.

For example, main page would show general news from forum xx, but there would be a link box on the side that held different interest areas like PC Games, MAC, etc. These links would pull up another instance of myvbindex that pull articles from the related forum.

Am I just a dreamer? :surprised: :).
That wouldn't be too hard to do... Would you want to have a seperate section with all the options in the admin CP for each, or use the same admin options for all of them and just different news forum id's?

jarvis 12-27-2002 08:47 PM

Thanks for the quick response!!

This is truly the hack I have been looking for to integrate my site with vB!! Great job... would love to see the develpoment move forward, and oh yeah... the temp bug fixed. :classic:

Anyway, regarding:

Quote:

That wouldn't be too hard to do... Would you want to have a seperate section with all the options in the admin CP for each, or use the same admin options for all of them and just different news forum id's?
Well, I think for the most part it would all be the same options from a "global" perspective, however, there could be one option that changes with each instance... the poll forum (and the news forum). Otherwise, the rest of the options should be pretty static.

If this type of scenario could happen, I think it would truly be a web-in-the-box scenario. /me drools :knockedout:

Tony DiMera 12-28-2002 01:24 AM

I made the posts after the installation of the vbindex. The thread/post id was 57 and I tried updating the query like you said and it still isn't showing up? What else can I do to fix this problem :(

Tigga 12-28-2002 01:58 AM

Tony - Check to see that you edited the newthread.php and newreply.php files correctly and uploaded them, and that your news forum id is set correctly in the admin options. If all that is correct, there is no reason the news posts shouldn't be showing up. If that still doesn't work, please post the url to your site here or PM me with it. Also, did you get any kind of error in phpMyAdmin when you ran those queries? If not, then the only possible problem I can think of is you have your news forum id set wrong. What version of myvbindex and vBulletin are you running?

MartynJ & Jarvis - I'll try to help you two out with your customization as soon as I can. With the combination of the holidays, having a lot of work to do with my business, and being sick for the last 3 days, I haven't had much time to work on this.

Tony DiMera 12-28-2002 02:16 AM

I am running version 3.0. it appears to be working now. I guess my ftp didn't upload the new reply and new thread scripts when I had selected them. Thanks again. BTW in the options there isn't an option to turn on or off the weather hack.

Tigga 12-28-2002 02:23 AM

I knew it had to be something like that. :)
The option to turn the weather on/off will only be added when you run the weather_install.php file. I did it that way because it will produce an sql error if the weather isn't installed and you turn it on. If you do have it installed and somehow that option wasn't added let me know and I can tell you how to add it.

Tony DiMera 12-28-2002 02:26 AM

Because when I try to go to the url of the weather_install.php which is in my admin folder it says pagecannot be displayed

Tigga 12-28-2002 02:33 AM

Odd... The only thing I can suggest is to double check that it is uploaded to the directory and that you are going to the right URL.

Tony DiMera 12-28-2002 02:51 AM

It is correct. I also pmed you the url of the script.

Tigga 12-28-2002 03:09 AM

That's really weird... I have no idea why it would give you that error if the file is in your admin folder. It shouldn't give you a "Page cannot be displayed" error if the file exists.
You could do the queries manually instead. This post has a zip file with the queries you can run though phpMyAdmin - https://vborg.vbsupport.ru/showthrea...513#post318513

Just follow the instructions in the post and that way should work. Oh, before you run the weather_template.php file though, open it and look for:

$DB_site->query("INSERT INTO setting VALUES (NULL,50,'Show Weather?','showweather','0','Show the weather forcast on your homepage.','yesno','21');");

Change the '21' at the end of that to '27'

Tony DiMera 12-28-2002 03:16 AM

Ok thanks, and will it automatically put the opotion inthe cp options to turn it on for the vbindex? Also could you try sending my the exact script you used to my e-mail at F_T_R@msn.com ?

Tigga 12-28-2002 03:26 AM

Yes, that will add the option to turn the weather on/off. That part you need to edit in the file is actually the query that adds the option.
Do you mean the exact weather_install.php script I used, or the zip file with the manual queries?

Tony DiMera 12-28-2002 03:28 AM

The exact weather_install.php file that you used for your site. Thanks again for you help.

Tigga 12-28-2002 03:47 AM

Ok, well I tried to send the file but the email was returned saying it was too big. I'll just attach it here.

Tigga 12-28-2002 04:02 AM

Ok MartyJ, here's at least half of what you wanted. :)
To make it so that you can make a news post in any forum:

You will need to run these queries in phpMyAdmin before uploading your changed files:
ALTER TABLE post DROP `isnews`;

Then this query:
ALTER TABLE post ADD isnews char(1) NOT NULL DEFAULT 'N';

Note that after you run those queries no news posts will be visible on your myvbindex page. This is necessary since you are in a sense completely changing the way the news part works.


Create a new template called newthread_newsopt with the following content:
PHP Code:

<br><input type="checkbox" name="isnews" value="Y"> <b>Make News:</bMake this post news

Then edit your newthread template and look for:
PHP Code:

<input type="checkbox" name="signature" value="yes" $signaturechecked> <b>Show Signature:</b> include your profile signature.  Only registered users may have signatures

Right Below that Add:
PHP Code:

$newsoption 

Edit your editpost template and find:
PHP Code:

<input type="checkbox" name="signature" $signaturechecked value="yes"> <b>Show Signature:</b> include your profile signature.  Only registered users may have signatures

Right Below that Add:
PHP Code:

$newsoption 


Open myvbindex.php and find:
PHP Code:

WHERE thread.forumid=$newsforum AND isnews='Y' GROUP BY thread.threadid ORDER BY thread.threadid DESC $newsmax"); 

Replace that with:
PHP Code:

WHERE isnews='Y' GROUP BY thread.threadid ORDER BY thread.threadid DESC $newsmax"); 

Then open your newthread.php file and look for:
PHP Code:

'$ipaddress','$iconid','1','Y')"); 

Replace that with:
PHP Code:

'$ipaddress','$iconid','1','$isnews')"); 

Still in newthread.php, find:
PHP Code:

  if ($permissions[canpostattachment] and (!$safeupload or function_exists("is_uploaded_file"))) {
    eval(
"\$attachmentoption = \"".gettemplate("newpost_attachment")."\";");
  } else {
    
$attachmentoption="";
  } 

Above that Add:
PHP Code:

$newsoption '';
if (
in_array($bbuserinfo['usergroupid'], array(56))){
eval(
"\$newsoption .= \"".gettemplate('newthread_newsopt')."\";");



Open your editpost.php file and look for:
PHP Code:

  $editattachment '';
  if (
$postinfo[attachmentid]!=and (!$safeupload or function_exists("is_uploaded_file"))) {
    
// show edit attachment options
    // keep, delete, new upload
    
$attachmentinfo=$DB_site->query_first("SELECT filename FROM attachment WHERE attachmentid=$postinfo[attachmentid]");
    
$postinfo[filename] = htmlspecialchars($attachmentinfo['filename']); 

Above that Add:
PHP Code:

  $newsoption '';
if (
in_array($bbuserinfo['usergroupid'], array(56))){
eval(
"\$newsoption .= \"".gettemplate('newthread_newsopt')."\";");


Still in editpost.php, find:
PHP Code:

  $DB_site->query("UPDATE post SET title='".addslashes(htmlspecialchars($title))."',pagetext='".addslashes($message)."',allowsmilie='$allowsmilie',showsignature='$signature',iconid='$iconid'$editedbysql$attachmentsql WHERE postid='$postid'"); 

Replace that with:
PHP Code:

  $DB_site->query("UPDATE post SET title='".addslashes(htmlspecialchars($title))."',pagetext='".addslashes($message)."',allowsmilie='$allowsmilie',showsignature='$signature',iconid='$iconid',isnews='$isnews'$editedbysql$attachmentsql WHERE postid='$postid'"); 


Upload the changed files and make sure you have ran the queries in phpMyAdmin. Now admins for your board will see an extra check box right under "Show Signature" with the option to make the thread news. If you don't want this option to be available to all admins let me know and I can tell you how to change who will see the option.

Tigga 12-28-2002 04:30 AM

jarvis - Here is how you would go about using multiple myvbindex's.

First make a copy of your myvbindex.php file and rename it to whatever you would like it to be called. In the copy, look for:
PHP Code:

WHERE thread.forumid=$pollsforum 

Replace that with:
PHP Code:

WHERE thread.forumid=$pollsforum2 

(Just adding a 2 at the end of $pollsforum)

Then look for:
PHP Code:

WHERE thread.forumid=$newsforum 

Replace that with:
PHP Code:

WHERE thread.forumid=$newsforum2 

(Again, just adding a 2 at the end)


Then you will want to run the following queries with phpMyAdmin:

INSERT INTO setting VALUES (NULL,50,'2nd News Forum ID','newsforum2','','The ID number of your news forum.','','31');

INSERT INTO setting VALUES (NULL,50,'2nd Polls Forum ID','pollsforum2','','The ID number of your polls forum.','','32');



That should be everything you need to do to use another myvbindex with different news and poll id's. The News & Poll ID settings will be at the bottom of your myvbindex options in the Admin CP.
Then to add additional copies, you would change the number in the file modifications each time to 3, then 4, and so on. In each of the queries you should run, I marked in bold the parts that will change with each new copy. The first part marked in bold has '2nd News Forum ID'. That can say whatever you would like to distinguish which part of the forum that is for. Then the '2' that is marked in bold should be changed to 3, then 4, and so on. Then the last numbers (31 for the news query, 32 for the poll query) is the part that orders the options. Those numbers should increment for every new option, so the next copy you add should have 33 at the end of the news query, and 34 at the end of the poll query.

Ok, that should be it. I tried to explain all that the best I could, so hopefully it makes sense. If you have any problems or don't understand part of it let me know.

TECK 12-28-2002 08:22 AM

Quote:

Originally posted by PlurPlanet
mYvBindex 3.0 released!

Credits:
mYvBindex uses modified versions of the following hacks:
Mini Calendar from vbPortal - by wajones
vB Weather Mk. 2- by JJR512

PlurPlanet, you also use my XX Latest Threads and some code technique borrowed from vbHome (lite) script.
You had that added before, but you decided to remove it.

Also you should mention to your users that the way you have set the script, it will add at least one query for every new article you display.
So if you have for instance 15-20queries (due to few options enabled) and you display 15 articles posted, your total queries will be [high]30-35[/high]. I'm sure if you enable all your options, you could endup easy with 40-50 queries easy on the front page.
40-50 queries on a busy site will kill your server, so you should be careful with the options and let the users know about it.

Tigga 12-28-2002 08:28 AM

Quote:

Originally posted by TECK PlurPlanet, you also use my XX Latest Threads and some code technique borrowed from vbHome (lite) script.
You had that added before, but you decided to remove it.
3.0 no longer uses your latest threads hack. Many parts of the coding were completely re-written.

Quote:

Also you should mention to your users that the way you have set the script, it will add at least one query for every new article you display.
Um, no. The number of queries does not increase with the number of news posts. It will be the same whether you have 5 or 50.

Quote:

So if you have your for instance 15-20queries (due to few options enabled) and you display 15 articles posted, your total queries will be [high]30-35[/high]. I'm sure if you enable all your options, you could endup easy with 40-50 queries easy on the front page.
40-50 queries on a busy site will kill your server, so you should be careful with the options and let the users know about it. [/B]
And no again. With every option turned on it will perform no more than 29 queries.

Smoothie 12-28-2002 08:42 AM

PlurPlanet-

Hi. I just checked your page, the first time it loaded there were 35 queries, the second time, 33. Yet you say max 29 queries with your script and all options enabled?

Tigga 12-28-2002 08:48 AM

Well if what Teck says is correct, then I would have to have more than one news post wouldn't I? My index page normally has 25 queries since I don't use all the options. If you'll look again, you'll notice a few things aren't working right now, and the reason it's displaying so many queries is because it's not caching the templates for some reason. I finally upgraded to 2.2.9 and I guess I did something wrong.

Tigga 12-28-2002 08:59 AM

Btw, if you look again it's running the way it should (20 queries as guest, 25 when logged in). When I ran the vB upgrade script I guess it deleted my templates, which would explain why nothing was working right. :)

TECK 12-28-2002 09:23 AM

Aha, post 2 more articles and let me know what's happening to the no. of queries. You will see that increases every time you post a new article, because you use queries in a loop.
Cheers.

PS. You still use my latest threads code. Hihi, bad boy. :p

Tigga 12-28-2002 09:39 AM

Quote:

Originally posted by TECK
Aha, post 2 more articles and let me know what's happening to the no. of queries. You will see that increases every time you post a new article, because you use queries in a loop.
Cheers.

My God, would you like me to make some more news posts on my site? Or would you like the url to my test server where there are about 8 news posts at the moment? You really have no idea what you're talking about. :rolleyes:

Cloud Strife 12-28-2002 09:47 AM

Wow... I really like this one, i got rid of vbindex2 to put this one on...

Great job...

Clicks install

cloud

Tigga 12-28-2002 09:59 AM

Thanks Cloud. Glad you like it. :)

Here's a couple of other sites you can compare as well Teck
http://killianboard.net/vbull/myvbindex.php
http://www.ls6.com/

TECK 12-28-2002 10:04 AM

Quote:

Originally posted by PlurPlanet

My God, would you like me to make some more news posts on my site? Or would you like the url to my test server where there are about 8 news posts at the moment? You really have no idea what you're talking about. :rolleyes:

Brian, quit being rude and listen instead. You obviously don't know that you perform a query in the loop for every article.
Let me explain to you where are the problems:
First, you use the getavatarurl() function that adds an extra query for each article you display.

Second, you really need to check your code syntax. I saw several mistakes there... like for example:
Code:

DESC LIMIT 1");{
Third, if you made your own code, why do you use the time() function, when in vBulletin is already defined? (not really important... but it shows if you know or not the vBulletin functions)

I could go on and on... but you get the idea. Why not be a nice guy and ask for help instead? And also post the credit where is due? Do you want me also to post here what php code and functions you used from vbHome?

Tigga 12-28-2002 10:19 AM

Quote:

Originally posted by TECK
First, you use the getavatarurl() function that performs an extra query for each article you display. Is better to ask instead of complaining...
Maybe you should take a look at the code again. The only place the getavatarurl function is used is to pull the users avatar in the welcome box. The way I pull the news avatar will not add any extra queries at all.
PHP Code:

// News Avatar
if ($shownewsavatar) {
  if (
$news[avatarpath]!="") {
  
$newsavatarurl "$bburl/$news[avatarpath]";
  } else if (
$news['hascustom']) {
  
$newsavatarurl "$bburl/avatar.php?userid=$news[postuserid]&dateline=$news[avatardateline]";
  } else {
  
$newsavatarurl "https://vborg.vbsupport.ru/images/clear.gif";
  }
  eval(
"\$news[avatar] = \"".gettemplate("index_newsbits_avatar")."\";");



Quote:

Second, you really need to check your code syntax. I saw several mistakes there... like for example:
Code:

DESC LIMIT 1");{

Thank you for pointing that out. I'm sure it's very possible that I have a typo or two in there, nobody's perfect. Something like that really isn't that big of a deal, but if saw other mistakes please point them out to me.


Quote:

Third, if you made your own code, why do you use the time() function, when in vBulletin is already defined?
The time function is only used in the original vBulletin code.

PHP Code:

Do you want me also to post here what php code and functions you used from vbHome

Please do. I've learned quite a bit about PHP since the first version of this hack and v3.0 is all original code or code straight from vBulletin, with the exception of the calendar and weather parts in which full credit is given.

Quote:

Not to mention that you infringe the Jelsoft copyright by copying several code segments onto your file...
If that's the case, then don't you as well? Where did the poll and online users part of your hack come from?

TECK 12-28-2002 10:52 AM

1. Aha, I see.. I thought you did this from my previous vbHome versions (1.0 or 1.1).
Good to know you didn't make the same mistake like I did.

2. Glad I could help. :)

3. Use $ourtimenow instead.

4. So far, from what I see you got ideas from my script on the following areas:
- alternate colors on threads function (old vbHome version)
- threads permissions
- latest threads
- plural function
- article
Basically you copied the code and edited a little the variables to look different.

5. I removed that remark, but you were to fast for me, since is not my place to judge this but the mods here at vb.org. Sorry.
However, my poll and online users code is not the vBulletin one.
Feel free to compare it.

jeffj 12-28-2002 03:17 PM

I just installed it and the instructions are very well done...

my only problem is that myvbindex.php hangs as soon as i add the forum ID that contain the polls if that forum has a POLL or a thread in it.

It does not hang if the forum is empty.

- jeff

jarvis 12-28-2002 04:22 PM

Plur,

Thanks for the response. I will do the modifications for multiple myvbindex loads tonight.

Your support has been first rate! Hope you feel better...

FWIW... Teck, you really should take your comments offline. This petty conversations just seems like an attempt at one upping or proving who the better coder is.

I looked at your product as well and thought it was great, but I just liked the way I could play around with the formatting in this one a bit better. It's the add-on community that continues to make vB a great product, but this mine-is-better routine is wearing thin.

/me steps down off soap box.

Take care!

MartynJ 12-28-2002 04:55 PM

Yes, I'd have to agree with jarvis. It is getting quite tedious. I've something to add to this thread (attachment wise) though I can't, because every time I click the "post reply" button I get the following error message:

Fatal error: Maximum execution time of 15 seconds exceeded in /www/vbulletin.org/htdocs/forum/admin/functions.php on line 1067

Anyone else got that?


All times are GMT. The time now is 11:32 AM.

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.02977 seconds
  • Memory Usage 1,945KB
  • 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
  • (3)bbcode_code_printable
  • (22)bbcode_php_printable
  • (17)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete