Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Default Icon
How about an extension that would make everyone start out with a default user icon? For example: a silhouette of a person or something. That way the whole icon thing would be more apparent to new users. They would see that its something they can change. Also, it would make things look more even (everyones name is pushed to the left a little, instead of just people who uploaded an icon)
0
This discussion has been closed.
Comments
Actually I think that's my guest icon, the default is a smiley face.
But your idea for this as an extension is great, I only wish I had the skills to tackle it.
Also, a default account picture would be nice too.
UPDATE LUM_User SET Icon = "your/default/icon.png" WHERE Icon IS NULL; ALTER TABLE LUM_User ALTER Icon DEFAULT "your/default/icon.png";
Ok, I really don't know php, but I finally got my new extension with those queries to not output errors (I told you I dont know php!) but it doesn't do anything. I'm probably just doing it wrong..
You would have to log in to a database management app, like HeidiSQL, MySQL or a terminal window to run that code. I took a casual look at writing an extension but nothing really stood out as a quick way to do it.
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 'DEFAULT "http://m...' at line 2
the url was too long but you get the picture
ALTER TABLE `LUM_User` CHANGE `Icon` `Icon` VARCHAR( 255 ) NULL DEFAULT 'http://wallphone.com/favicon.ico'
Tested it out and works great!
I've uploaded a Default Icon extension that displays a default icon and also has the option for a default picture, all without the need to make any changes to the database.
Until one becomes available ,the 'readme' includes information on how to edit the required file.
Next version will include an option for setting a different default icon for guests.