Quote:
Originally Posted by Verionia
there it is
|
the problem seems to be your modified style.
Quote:
Originally Posted by sHORTYWZ
Entertain -
I wanted to let you know that I solved the bug that has been bothering me for a while and was posted on a number of times earlier in this thread.
PHP warnings were turned up a notch on my server and they were going off because $specialtemplates wasn't defined in a few of your scripts and the vB_Datastore_Filecache doesn't handle null values very well.
If you simply add
Code:
$specialtemplates = array();
to itrader_report.php, itrader_main.php, and itrader.php, the error PHP was throwing will go away.
Thanks.
|
Thanks, too! I addes this in the upcoming version.
Quote:
Originally Posted by cTak
Feature Request:
Have an option in the admin to set what forums the "rate seller" link is displayed.
Similar to "Forums Where Feedback Score is shown" but a "Forums Where Rate Seller link is shown"
I'd like to have the option to display the rate seller link on in my for sale sections not the rest of the forum.
Thanks, works great otherwise!
|
would be an idea...
Quote:
Originally Posted by digitalpoint
A few scalability issues...
- As someone else mentioned, you need $specialtemplates = array(); in your PHP files if you want them to work when people are using datastores.
- user.itrader_total needs an index if you want to sort the entire user table on it (you are in itrader_main.php).
- itrader table has 2 identical indexes (get rid of one of them)
- Not using the proper methods for SQL queries. Read queries should (usually) use $vbulletin->db->query_first_slave and $vbulletin->db->query_read_slave in place of $vbulletin->db->query_first and $vbulletin->db->query_read. The way it's setup now, all queries go to the master DB server instead of properly offloading the read queries to slaves DB servers.
|
I changed the 1st und the 4th for the upcoming version - how to fix the other ones?
Thanks for helping!
Quote:
Originally Posted by AlekonaKini
Every time I install a plugin (and activate it..) I get this message:
Parse error: syntax error, unexpected '<' in ..board/includes/class_bootstrap.php(1146) : eval()'d code on line 1
.. before board had my server info which I deleted. But this is the general information. I got this while installing the itrader plugin.
Background info: (Version 4)
I placed the XML in the coding area and used the cache_templates as the hook.
Any clue?
|
And when you disable this mod it works?