2009-05-27, 03:03 PM
2009-05-28, 12:50 AM
(2009-05-17, 10:00 AM)Smethead Wrote: [ -> ]I know I kept you waiting for this. And actually I planned on waiting to release it until I firmly tested it on a live board. But as I don't have access to a live board anymore, here it is anyway. I hope there are not too much bugs in it.I clicked in link, and i get message:
Installation instructions:
Upload everything except the Preview images and the README.txt file to their respective directories and install & activate the plugin through you're Admin CP
Enjoy.
2 Preview images attached (not showing everything of the plugin)
Download it right here: http://mods.mybboard.net/view/advanced-s...mybb-1-4-x
Wow, I hadn't even written this post and it already has 17 downloads :o
Currently only available in English, but feel free to create and upload additional language packs to the mods site.
Stats: Most downloaded plugins for MyBB 1.2.x
1. Downloads Section: 6798 downloads
2. Forum Warning System: 5759 downloads
3. Advanced Stats on Index/Portal (that's this one's predecessor): 4620 downloads
PEOPLE USING DIFFERENT THEMES AND STILL ON ASOI/P 3.0:
If you have problems with the layout of asoi/p, you can do the following to help a little.
Go in your database to the table themestylesheets
Search for the row with name asoi.css and edit the tid to 1 instead of 2.
"
Invalid Download
The download you are attempting to view appears to be invalid."
This is not good link.
2009-05-28, 01:28 AM
Yeah, we all know. Seems the updated plugin hasn't been approved yet. We are all patiently waiting.
2009-05-28, 11:15 AM
So Thanks
2009-05-28, 12:07 PM
Until it gets validated, I'll just upload it here 
[attachment=13995]
Edit: validated, so this link is removed. Go to the first post in this thread for the download link.

[attachment=13995]
Edit: validated, so this link is removed. Go to the first post in this thread for the download link.
2009-05-28, 04:42 PM
Why don't you PM an admin?
2009-05-29, 06:19 AM
Smethead...found a bug in inc/plugins/asoi.php
if(!$index && !$portal)
That should be
if(!$index || !$portal)
It could be why there was a conflict before for Hemi.
if(!$index && !$portal)
That should be
if(!$index || !$portal)
It could be why there was a conflict before for Hemi.
2009-05-29, 09:20 AM
(2009-05-29, 06:19 AM)labrocca Wrote: [ -> ]Smethead...found a bug in inc/plugins/asoi.phpNo, it's right the way it is.
if(!$index && !$portal)
That should be
if(!$index || !$portal)
It could be why there was a conflict before for Hemi.
if(!$index && !$portal)
is the correct way.
2009-05-30, 03:55 PM
I looked at my portal coding. I use a custom portal page filled with html and tables. Your plugin when installed put your plugin tags at "every"
Instead of 2 tags I had one for every table which was 17 of one code and 17 of the other for a total of 34 times.
Im also going to assume no one elses portal page has been redone like mine, that's why they were not having issues. Labrocca can confirm this as I also sent him my output code from the portal page after your plugin is initiated.
Quote:<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
Instead of 2 tags I had one for every table which was 17 of one code and 17 of the other for a total of 34 times.
Im also going to assume no one elses portal page has been redone like mine, that's why they were not having issues. Labrocca can confirm this as I also sent him my output code from the portal page after your plugin is initiated.
2009-05-30, 03:59 PM
(2009-05-30, 03:55 PM)hemi Wrote: [ -> ]I looked at my portal coding. I use a custom portal page filled with html and tables. Your plugin when installed put your plugin tags at "every"
Quote:<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
Instead of 2 tags I had one for every table which was 17 of one code and 17 of the other for a total of 34 times.
Im also going to assume no one elses portal page has been redone like mine, that's why they were not having issues. Labrocca can confirm this as I also sent him my output code from the portal page after your plugin is initiated.
That could probably be the issue. There should only be two tags: one for the top and one for the bottom. Have you tried to remove all of them while the plugin is activated?
The multiple tags cause the javascript to be loaded every time, which may cause conflicts.