MyBB Community Forums

Full Version: Trying to make the Forum Icons ( Ficons ) compatible with 1.6 "compatibility" =>
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
I have tried to make the http://www.mybbcentral.com/thread-953.html compatible with 1.6, however I cant seem to find the "compatibility" => etc... to change it to "compatibility" => "16*",.Has anyone got any ideas because its not in the plugin file information.
You need to get support over at MyBB Central for labrocca's plugins.
function ficons_info()

{

	return array(

		'name'			=> 'Forum Icons',

		'description'	=> 'Adds icons to forums on index.',

		'website'		=> 'http://www.mybbcentral.com',

		'author'		=> 'Jesse Labrocca',

		'authorsite'	=> 'http://www.webmasterforums.biz',

		'version'		=> '2.1',

		"guid" 			=> "",

		"compatibility" => "*"

	);

}

Seems like it is already set.

Anyway, plugin support for his plugins should be made over at MyBB Central.


He is a bit busy atm sorting things out with his datacenter, but I'm sure he'll help you when he gets a chance.
(2011-05-09, 06:31 PM)Malcolm. Wrote: [ -> ]
function ficons_info()

{

	return array(

		'name'			=> 'Forum Icons',

		'description'	=> 'Adds icons to forums on index.',

		'website'		=> 'http://www.mybbcentral.com',

		'author'		=> 'Jesse Labrocca',

		'authorsite'	=> 'http://www.webmasterforums.biz',

		'version'		=> '2.1',

		"guid" 			=> "",

		"compatibility" => "*"

	);

}

Seems like it is already set.

Anyway, plugin support for his plugins should be made over at MyBB Central.


He is a bit busy atm sorting things out with his datacenter, but I'm sure he'll help you when he gets a chance.


I am subscribed over at mybbcentral click here to see my profile, just cant get hold of him at the moment. I have changed it over to compatibility" => "16*", now but I am getting this error when I activate it in the mybb panel.

Quote:SQL Error:
1060 - Duplicate column name 'ficon'
Query:
ALTER TABLE mybb_forums ADD ficon VARCHAR(120) NOT NULL DEFAULT 'shim.gif' AFTER defaultsortorder


The Cmod has been changed as well to 777 in the uploads folder, so I am really stumped whys its not working.
That's in the database. Go to the database and remove the ficons column and reinstall it. Easiest method. Toungue
(2011-05-09, 07:20 PM)Clarkie Wrote: [ -> ]That's in the database. Go to the database and remove the ficons column and reinstall it. Easiest method. Toungue

Lol I wish I had an idea, how to even do that,
Go into your cPanel and find phpMyAdmin, select your MyBB database, click the SQL tab, run this query:
ALTER TABLE `mybb_forums` DROP COLUMN `ficon`
(2011-05-09, 09:19 PM)AJS Wrote: [ -> ]Go into your cPanel and find phpMyAdmin, select your MyBB database, click the SQL tab, run this query:
ALTER TABLE `mybb_forums` DROP COLUMN `ficon`




Hi AJS


Thanks so much for assisting me with this problem, I have now ran the query like you mentioned, and I have got these results back,

!
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'PHP Code: ALTER TABLE mybb_forums DROP COLUMN ficon' at line 1


Run SQL query/queries on server "mysql.latest-trends.net"


PHP Code:
ALTER TABLE mybb_forums DROP COLUMN ficon


Because I am very limited with this type of stuff I would need some tips on what to do next if that is ok, simply because I have only been using Mybb for roughly 2 weeks now, I would say I am some what getting used to some of the functionalities. However I am far from any level you guys are at right now.


Lee
Don't include PHP Code:, that's not part of the query.

All you need is: ALTER TABLE mybb_forums DROP COLUMN ficon
(2011-05-10, 08:27 AM)AJS Wrote: [ -> ]Don't include PHP Code:, that's not part of the query.

All you need is: ALTER TABLE mybb_forums DROP COLUMN ficon

Hi AJS

Where would I apply this > ALTER TABLE mybb_forums DROP COLUMN ficon to exactly, does it need to go in a template or something. Or written into the plugin file itself.
Pages: 1 2 3