Home
Download
Add-ons
Help
Forum
Organisation
Project
Welcome,
Guest
. Please
login
or
register
.
March 21, 2010, 10:16:21 AM
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Search:
Advanced search
WB 2.8.1 released!
Download and additional information are available
here
.
110577
Posts in
15968
Topics by
9312
Members
Latest Member:
rumarsies
WebsiteBaker Community Forum
English
Modules
(Moderators:
Argos
,
BerndJM
)
ShoutIt v1.5 released
Pages:
[
1
]
Author
Topic: ShoutIt v1.5 released (Read 4300 times)
ruebenwurzel
Leaders Team
Offline
Posts: 7211
Keep on Rockin
ShoutIt v1.5 released
«
on:
March 24, 2008, 02:25:17 PM »
Hello,
after a long time with no changes I'm proud to present a new version of Shoutbox.
Changelog:
v1.4 Mar 24, 2008
- frontend output is now XHTML valide
- fixed all E_ALL notices
- replaced all short tags
- moved javascript to frontend.js
- moved all styles from body to frontend.css and backend.css
- error messages now stylable in frontend.css
- Added default index.php to all folders to prevent directory spoofing
- replaced all copyright notices now includes 2008
Hope you like it.
Matthias
«
Last Edit: April 07, 2008, 08:20:50 AM by ruebenwurzel
»
Logged
You search for help, please look here:
Help-Page
You search for Modules, Templates or Languages, please look here:
Addons-Page
ruebenwurzel
Leaders Team
Offline
Posts: 7211
Keep on Rockin
Re: ShoutIt v1.5 released
«
Reply #1 on:
April 07, 2008, 08:11:14 AM »
Hello,
Just released a new Version of Shoutbox
Changelog:
v1.5 Apr 06, 2008
- added support for edit CSS functions of WB 2.7
- added ` quotes for all DB queries table names and fields to prevent issues with MySQL special chars like -
- changed mechanism to prevent files from beeing accessed directly (redirect instead off displaying an error message)
Download:
You can download the new version on our addons Page.
ShoutIt_v1.5
Requirements:
- To get the css files displayed in the head section of your template and not in the body section, add the following code to the head section of the index.php from your template:
Code:
<?php
// this allows to include the optional module files (frontend.css, frontend.js) into the head section
if(
function_exists
(
'register_frontend_modfiles'
)) {
register_frontend_modfiles
(
'css'
);
register_frontend_modfiles
(
'js'
);
}
?>
This code only works in WB 2.6.7 and WB 2.7, if you use a lower version of WB, you don't need to make changes in your template. The css will be displayed in the body tag as it was in previous versions.
- The latest release uses the integrated edit module CSS functions of the WB 2.7 core (introduced with WB 2.7 RC3). To add this feature to WB 2.6.x, one needs to copy the files
/framework/module.functions.php
and
edit_module_files.p
hp
from a WB 2.7 (RC3 or higher) to the WB 2.6.x installation. In addition one needs to define 3 language variables in the WB language files:
Code:
$TEXT['CAP_EDIT_CSS'] = 'Edit CSS';
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
How to update?:
- First make a copy of modul stylesheets and if you have already 1.4 installed from your frontend.css.
- Then simply install the new version over the old one
- Copy now the stored stylesheets in the frontend.css by using the Edit Css funktion.
!!!Please remember, that this is only a shoutbox and no chat modul!!
Hope you like it.
Matthias
«
Last Edit: April 07, 2008, 08:29:21 AM by ruebenwurzel
»
Logged
You search for help, please look here:
Help-Page
You search for Modules, Templates or Languages, please look here:
Addons-Page
iggyFlames
Offline
Posts: 25
Can't uninstall ShoutIt v1.5
«
Reply #2 on:
August 20, 2008, 09:00:29 PM »
Hi Matthias!
I've installed ShoutIt to see if I could use it as a "question-answer" box with my students. It's a great work but it's not what I'm looking for so I opt to unistall the module but something is wrong because when I click uninstall button at Add-Ons nothing happens
I mean everything under menu bar goes blank and "success" message don't show. If I reload the admin add-on page an look at modules ShoutIt is still there.
BTW, I'm using last versions both WB and ShoutIt, Linux server, Apache 1.3.3 Mysql 4.1+ PHP 5.x
I *think* I can erase things in databank, but I'm unsure if that's the best way to solve this problem.
Would you please point me some secure way to proceed?
TIA,
Iggy
Logged
lilmiss
Offline
Posts: 6
Re: ShoutIt v1.5 released
«
Reply #3 on:
November 07, 2008, 06:37:28 PM »
I have the ShoutIt setup on my main thanksgiving page...however I have no idea how to go about deleting or editing any of the comments made or if that is even possible. Can you please direct me in the right direction.
I've tried the Feedback Module...however I don't like the look of it...I do however like that the comments can be edited.
Also is there a link on how to make the look and feel of this ShoutIt module possible?
Thanks!
Logged
Katie
www.LilMissKaties.c
om
Lil Miss Katie's, LLC
bluegum
Offline
Posts: 4
Re: ShoutIt v1.5 released
«
Reply #4 on:
November 08, 2008, 12:12:38 AM »
I use the shoutbox and users request a time and date stamp on the messages?
how can we do this>?
Logged
h1ghway
Offline
Posts: 2
Re: ShoutIt v1.5 released
«
Reply #5 on:
November 09, 2008, 12:23:54 AM »
hi ruebenwurzel,
we use shoutit in the member section of our choirpage.
Is it possible to make shoutit show when a entry has been made, like this:
"
13.11.08 22:22
Wildschwein
: bla bla bla"
Is there a (german) manual available
yours,
h1ghway
«
Last Edit: November 09, 2008, 12:28:44 AM by h1ghway
»
Logged
ruebenwurzel
Leaders Team
Offline
Posts: 7211
Keep on Rockin
Re: ShoutIt v1.5 released
«
Reply #6 on:
November 09, 2008, 10:35:32 AM »
Hello,
attached you find a new view.php wich gives you the result you want. But as the way the date is stored in the database is changed all old entries have a now wrong date and time. This view.php only works with new entries.
Following changes are done:
changed Line 64 from date to mktime:
Code:
$date = mktime();
added around line 95:
Code:
//Get the entry date and time
$entry_date = gmdate(DATE_FORMAT, $r['date']+TIMEZONE);
$entry_time = gmdate(TIME_FORMAT, $r['date']+TIMEZONE);
changed line 115 (112old):
Code:
echo "<li><small>$entry_date $entry_time</small> <strong>$name</strong>: $message</li>\n";
Have fun
Matthias
Logged
You search for help, please look here:
Help-Page
You search for Modules, Templates or Languages, please look here:
Addons-Page
ruebenwurzel
Leaders Team
Offline
Posts: 7211
Keep on Rockin
Re: ShoutIt v1.6 released
«
Reply #7 on:
November 09, 2008, 06:34:51 PM »
Hello,
and as it was a cold november sunday i fixed a typo in uninstall.php and decided to release an new version.
Changelog:
v1.6 Nov 09, 2008
- fixed typo in uninstall.php
- added support for the date and time settings in WB
Have fun
Matthias
«
Last Edit: November 09, 2008, 06:38:52 PM by ruebenwurzel
»
Logged
You search for help, please look here:
Help-Page
You search for Modules, Templates or Languages, please look here:
Addons-Page
h1ghway
Offline
Posts: 2
Re: ShoutIt v1.6 released
«
Reply #8 on:
November 09, 2008, 09:03:15 PM »
hallo ruebenwurzel,
many thanx to you, it works fine.
h1ghway
Logged
roedental
Offline
Posts: 79
Re: ShoutIt v1.5 released
«
Reply #9 on:
November 12, 2008, 04:42:54 PM »
The Smileys doesn´t work at shoutit v.1.6!
Sven
Logged
ruebenwurzel
Leaders Team
Offline
Posts: 7211
Keep on Rockin
Re: ShoutIt v1.5 released
«
Reply #10 on:
November 12, 2008, 05:54:20 PM »
Hello,
you simply need to call the frontend.js in the head section of your template (index.php of your template). Look a few posts above it is explained at the 1.5 announcement.
Matthias
Logged
You search for help, please look here:
Help-Page
You search for Modules, Templates or Languages, please look here:
Addons-Page
chabar2000
Offline
Posts: 118
Re: ShoutIt v1.5 released
«
Reply #11 on:
January 27, 2009, 09:59:42 AM »
Hi,
Shoutbox works, but when I try to edit the CSS file:
Error
Premature end of script headers: edit_module_files.p
hp
Server problem?
Thank You
Karl
Logged
ruebenwurzel
Leaders Team
Offline
Posts: 7211
Keep on Rockin
Re: ShoutIt v1.5 released
«
Reply #12 on:
January 27, 2009, 10:11:36 AM »
Hello,
wich version of WB did you use?
shoutbox 1.6 requires WB 2.7 Final.
Matthias
Logged
You search for help, please look here:
Help-Page
You search for Modules, Templates or Languages, please look here:
Addons-Page
chabar2000
Offline
Posts: 118
Re: ShoutIt v1.5 released
«
Reply #13 on:
January 27, 2009, 01:57:44 PM »
Yes, just installed latest versions... WB 2.7, Shoutbox 1.6
Logged
CodeALot
Offline
Posts: 38
Re: ShoutIt v1.5 released
«
Reply #14 on:
April 28, 2009, 09:10:38 PM »
What exactly is "too high" in the settings? What will happen if I set it to... let's say 100?
Logged
Pages:
[
1
]
Jump to:
Please select a destination:
-----------------------------
General
-----------------------------
=> General Announcements
=> Security Announcements
=> Documentation
=> Guest Area & Off-Topic
-----------------------------
English
-----------------------------
=> Help & Support
=> Modules
=> Droplets (PHP code for use with Droplet module) & Snippets (raw PHP code)
=> jQuery
=> Templates, Menus & Design
=> WebsiteBaker Language Files
=> WebsiteBaker 2.x discussion
=> WebsiteBaker 3
=> Archive (posts up to 2007)
-----------------------------
Deutsch (German)
-----------------------------
=> Ankündigungen
=> Hilfe/Support
=> Module & Snippets
=> Templates & Design
=> Tutorials
=> jQuery
=> Diskussion über WB
=> Off-Topic
=> Archiv für Themen bis 2007
-----------------------------
Nederlands (Dutch)
-----------------------------
=> Aankondigingen
=> Hulp & Ondersteuning
=> Niet-Terzake (Off Topic)
-----------------------------
Francais (French)
-----------------------------
=> Help/Support
-----------------------------
Italiano (Italian)
-----------------------------
=> Help/Support
Loading...