I just looked on my local and it works for me as well.
— coRpSE wroteThat's strange that it is not working on both of yours, ##UTBaDaSS## zardos
Are there any errors that show up in the error log of your site or in the error log in the ACP?
Just watch this animated image, you can see it works on my site.
No errors, when I click on save images it just reverts to all black. Can we get a download of the module and the block.php?
— coRpSE wroteHere are the files taken straight from my site.
I didn't grab the SQL, but you may need that. If it doesn't work, then I will put up the SQL aswell.
Still does the same thing. hmmmmm
Try this. Run this SQL, clear your site's cache, then go back to the Theming section of the shout box and try changing the box arrows.
If that doesn't work, if you want, you can send me a PM with temp FTP, temp admin, and possibly SQL access and I will take a look.
Code: [ Select all ]
DROP TABLE IF EXISTS `nuke_shoutbox_theme_images`;
CREATE TABLE `nuke_shoutbox_theme_images` (
`id` int AUTO_INCREMENT PRIMARY KEY,
`themeName` varchar(50) DEFAULT NULL,
`blockArrowColor` varchar(50) DEFAULT NULL,
`blockBackgroundImage` varchar(50) DEFAULT NULL
) ENGINE=MyISAM;
If that doesn't work, if you want, you can send me a PM with temp FTP, temp admin, and possibly SQL access and I will take a look.
— coRpSE wroteTry this. Run this SQL, clear your site's cache, then go back to the Theming section of the shout box and try changing the box arrows.Code: [ Select all ]
DROP TABLE IF EXISTS `nuke_shoutbox_theme_images`;
CREATE TABLE `nuke_shoutbox_theme_images` (
 `id` int  AUTO_INCREMENT PRIMARY KEY,
 `themeName` varchar(50) DEFAULT NULL,
 `blockArrowColor` varchar(50) DEFAULT NULL,
 `blockBackgroundImage` varchar(50) DEFAULT NULL
) ENGINE=MyISAM;
If that doesn't work, if you want, you can send me a PM with temp FTP, temp admin, and possibly SQL access and I will take a look.
That worked! 8)
Thank you
Thanks coRpSE, works now. all that time and it was just sql.
Glad to hear. I noticed when I was looking at it on my site, the id's were all 0. Though it worked on my site, I don't know why it didn't on your site. So, I took my SQL, rewrote it so id was the primary key, and made it auto increment. That is the only difference that I changed from the default SQL.