Readme.html GuppY

GuppY Version 4.6.19 - 30 March 2012


CeCILL Copyright (C) 2004-2012 by Laurent Duveau

Initiated by Laurent Duveau and Nicolas Alves

Website = http://www.freeguppy.org/

email = guppy [at] freeguppy.org

upgrade: Corrector 2012-03-30

Table of contents

0. Preamble (PLEASE READ IT ALL!)

1. Introduction

2. Setup

3. Upgrade

5. Configuration

6. Managing contents

7. Internal operation

8. Compatibility

9. Troubleshooting

10. Technical remarks

11. License

12. Donation

13. The informal GuppY team

14. Will you join us?

15. Versions history



0. Preamble (PLEASE READ IT ALL!)

Welcome on GuppY, the easy web portal that does not require a database. GuppY is the new name for miniPortail as from version 2.4. Why did we change the name? Well, it is pretty simple: many miniPortail users told us that the "mini" part of the name (which means "tiny" in French) mistaked them about the real and numerous features of this web portal. Why GuppY as a name then? Some people tried to find some kind of acronym like "GuppY is a Universal PHP Portal for You". But, to tell the truth, GuppY is just the favourite fish of aldweb This readme.txt file is long and as exhaustive as possible.

Two other documentations complement this readme.txt file:

Vous les trouverez en téléchargement et en lecture sur le site de GuppY (http://www.freeguppy.org/).

Read CAREFULLY this documentation before asking a question on the GuppY forum which is hosted on the GuppY website (http://www.freeguppy.org/). We kindly ask you to read it CAREFULLY because more than 90% of the questions raised on the GuppY forum are answered in this documentation.

Thank you for not writing to me personally with an e-mail for asking questions regarding the understanding or the use of GuppY, my e-mailbox is saturated all of the time with e-mails and my free time to answer you being limited! A member of the GuppY team or another user will answer you much quicker and often much better than I would do on the forum. In addition, all GuppY users will then benefit from your questions and the provided answers. But, before asking a question, please respect our work and check carefully that you read!

CAREFULLY all of the available documentation. I hope that I have made this point clear now!

As for saying thank you and for writing other nice comments, please consider posting a message in the guestbook on the GuppY website or on my personal website before writing to me....

Thanks! But, if for some reason you really want to write us, please use the infos@freeguppy.org e-mail address which is accessed by all GuppY Team members. I wish you a good reading,

Laurent Duveau (aka aldweb)

Back to contents

1. INTRODUCTION

GuppY is a small web portal, meant to be easy to use for the end user that you are, and which does not require a database to run. This architecture allows then to install it on almost all Internet web sites host (or almost all of them), the only prerequisite being that your host has to provide the PHP scripting language facility. You don't need to know HTML, the MySQL database administration or PHP, GuppY offers a full and secured administration interface to manage the look & feel of your web site as well as the content of the different headings of your site.

GuppY offers the standard functionalities of a web portal: portail web

Furthermore, GuppY provides a very ORIGINAL management of high added value: in addition to be natively MULTILINGUAL, GuppY offers the possibility of a BILINGUAL display of the contents,since a 2 language-display is available...

Back to contents

2. SETUP

2.1 FIRST SETUP (demo)

This first setup paragraph explains to you how to set up a GuppY web site with some demo content, so that you can play with it.

IMPORTANT NOTICE:

- If you do not plan to prepare a new clean database, delete the install/ directory now.

Otherwise anybody could run it on your web site and delete all the contents on your web site !

ALTERNATIVE:

you can also download:

- MiniGuppY on GuppY site. MiniGuppY is a package consisting in a web server, PHP et GuppY, all packaged with an automated install program for a PC with Windows. You just cannot do easier than that !

- EasyGuppY++ on the GuppY site. EasyGuppY is a package made of a web server, PHP and GuppY, all packaged with an automated install program for a PC with Windows. You just cannot do easier than that !

"CHMOD" note:

Here is how to set up files rights for web servers that require it (not all of them require it).

1. admin directory

2. data directory : rights = 777. command UNIX = chmod 777 data

3. file directory : rights = 777. command UNIX = chmod 777 file

4. img directory : rights = 777. command UNIX = chmod 777 img

5. pages directory : rights = 777. command UNIX = chmod 777 pages

6. photo directory : rights = 777. command UNIX = chmod 777 photo

7. For all skins directories, it is necessary to chmod the skin configuration files

Note : /* signifie que tous les files du directory doivent être chmodés comme indiqués. Exemple :

How can you detect that you should execute these "CHMOD" ? Well, pretty easy to know, it is in the case you get many error messages of this kind:

.htaccess notice:

GuppY comes with a .htaccess file in the root directory. This file is only useful if your web site runs with an Apache server (this is the case most of the time). Here is its structure:


< files ~= ^\.ht=></>files>

Order allow,deny

Deny from all

Satisfy All

< files ~= ^.*\.(inc|dtb=></>files>

Order allow,deny

Deny from all

Satisfy All

ErrorDocument 400 /error.php?err=400

ErrorDocument 403 /error.php?err=403

ErrorDocument 404 /error.php?err=404

ErrorDocument 500 /error.php?err=500


The first 5 lines are used to protect the content of your database from hackers and other bad people (and there are some !). Otherwise, files like the data/frth.dtb file for example which holds all e-mail addresses of the people who posted a message in the forum can be read and even help to enrich a Spam file (ugly !). These 5 lines are not to be modified.

The 4 following lines are used to direct users to the error page when they ask for a non existing page, or other possible errors. These lines might require to be adapted (with a simple text editor like Notepad or Wordpad for example) according to where you have put your GuppY. If you installed GuppY at the root of your site (URL = http://www.yoursite.com/) then you have nothing to do. But if you installed it in a directory of your site (URL = http://www.yoursite.com/here/ for example) then you will have to modify these 5 lines :


ErrorDocument 400 /ici/error.php?err=400

ErrorDocument 403 /ici/error.php?err=403

ErrorDocument 404 /ici/error.php?err=404

ErrorDocument 500 /ici/error.php?err=500


In some cases, you might need to modify these 4 lines as follows (for a website having an URL like http://www.yoursite.com/) :

ErrorDocument 400 http://www.votresite.com/error.php?err=400

ErrorDocument 403 http://www.votresite.com/error.php?err=403

ErrorDocument 404 http://www.votresite.com/error.php?err=404

ErrorDocument 500 http://www.votresite.com/error.php?err=500


Or, if installed in the here/ subdir :


ErrorDocument 400 http://www.votresite.com/ici/error.php?err=400

ErrorDocument 403 http://www.votresite.com/ici/error.php?err=403

ErrorDocument 404 http://www.votresite.com/ici/error.php?err=404

ErrorDocument 500 http://www.votresite.com/ici/error.php?err=500


It would also be wise to protect your admin/ directory by a user name and password within the .htaccess file. As the way of doing it is usually specific to your web host, please refer to its documentation on this topic. For further information on how to protect your web site with a .htaccess file, please refer to the official Apache documentation...

Back to contents

2.2 CLEAN SETUP

The clean setup is meant to erase the demo content and start with a brand new empty GuppY site if you fancy doing so. The starting point is for this clean install is anywhere between the first install and anything you did with the demo content. It will erase all of the content but keep the current parameters made in the different "Config something" admin areas.

A popup will show at least once a day if GuppY detects the "install directory" on the server.

If the popup shows, it only takes one click on the recycle bin to delete the install directory.

IMPORTANT NOTICE :

Back to contents

3. UPGRADE

You now have a running GuppY but you feel like upgrading it. What you must understand in the first place is how the different versions of GuppY have been named. A Guppy version is identified by three numbers, e.g. 4.6.10. The first two digits indicate the main version of Guppy whereas the third one is the corrective patch number of the main version. For instance, "4.6.10 means that the main version number is 4.6. upgraded with ten corrective patches for the main version.

When upgrading, you will have to make a choice: either your Guppy is already running on the last version available, or it is a previous version. In the former case, you have to add a patch to your running GuppY, and in the latter, you'll have to migrate from the old version of GuppY to the latest one.

3.1 UPGRADE FROM THE SAME MAIN VERSION (applying the latest patch)

Your GuppY is already in the 4.6.x version (x < 19) and you want to upgrade to 4.6.19. To achieve this, you can download patches on Freeguppy. (http://www.freeguppy.org/). And again there are two cases: either your Guppy is in the previous version (for instance 4.6.18 to be upgraded to 4.6.19), or it is in an older version (4.6.x with x range from 0 to 18).

One you have downloaded the right patch, all you need to do is decompress the archive zip of the patch to a temporary folder and copy all files and sub-folders of this directory into the root folder of your website.

3.2 UPGRADE FROM A PREVIOUS MAIN VERSION (MIGRATION)

IMPORTANT NOTICE:

the migration script is intended for websites running miniportail version 1.8 or later / 2.4 or later GuppY version.

If your site is in a previous version of miniportail / GuppY, you'll have to comply with these instructions:

Notice:

These old and "dirty" scripts are not maintained anymore by the Guppy development Team. On the contrary, the new script will be maintained for the next versions. Now, If your site is in version 1.8 ou later of miniPortail / in version 2.4 of GuppY ou later, please follow these instructions:

IMPORTANT NOTICES :

Back to contents

4. Ce paragraphe n'existe plus. Il a été intégré dans les paragraphes précédents.

5. CONFIGURATION

In case of doubt, the following method will automatically fill in the two boxes:

GuppY will then fill in the two boxes with the right address.

5.

The first set of icons is intended to set the parameters of your web site (languages, look & feel, services to activate, etc.), to maintain it (but you don't need to do it yet) and to change the administration password (do it right now!). Take the time to fill in correctly the forms that are called by the 8 "Config" icons.

You may now define collaborators that you will choose i, the admin members area under the "rights" icon.

6.

All other icons allow you to manage the content of your web site througha very intuitive interface.

IMPORTANT NOTICE:

Back to contents

6. MANAGING CONTENTS

GuppY works thanks to the latest web technologies.

To understand how it works, let's go back to the way a traditional web page is created. In a classical web page, you input some text in the middle of which you insert some HTML (acronym of Hyper Text Markup Language) tags that tell to the web browser (Netscape, Firefox or Internet Explorer for example) how to place and format the different components (text, images, links...) in the page.

You then need to manually link the different pages between them using the HTML linking tag. And, each time you want to change the look & feel of your web site, you have to work back on all pages... This is a heavy and tedious job, and you easily come to spend more time managing the formatting of your pages than their content !

Now there are full web programming languages that allow you to manage the Internet content like any software that runs on your PC. GuppY uses the most used of them being PHP (which stands for Hypertext PreProcessor).

The principle of GuppY is the following one : the content (which is stocked in a little "textfile" database) is separated from the formating (which is managed by the PHP scripts that make GuppY)

And, we then get what is called a CMS (abbreviation of Content Management System). So that eventually, you only have to input the information in the appropriated areas (articles, news, etc...) using an administration interface (which you reach through the Admin icon at the top right corner of the screen) and GuppY takes care of the management and the formatting of this information according to the clicks of your web site's visitors.

As HTML tagging is allowed, you can use all HTML tags that you want (IMG, A, B, I, U, etc...) in articles, news, links, etc. Check and make sure each time that these tags don't prevent your website to display correctly. By the way, your site will be beautiful too even if you don't use HTML tags.

Note

Visitors to your site can themselves post news, messages in the guestbook or in the forum. The use of HTML tags has been slightly restricted for them, in order to avoid any interference with your site's smooth display, but a tiny editor helps them use most usual tags.

You have 5 available directories to store specific objects (through the use of the Files icon):

Back to contents

7. INTERNAL OPERATION

Let's say it one more time, GuppY does not require the use of a database like MySQL. This provides a great flexibility and many advantages :

Back to contents

8. COMPATIBILITY

To work properly, GuppY needs that your web browser can manage correctly CSS stylesheets and HTML version 4.

GuppY should work properly with Internet Explorer, Firefox, Safari and Opera. It's been tested with those browsers your feedback with other browsers will be more than welcome.

The old editor has been kept available. It's been improved and can be used in simplified mode in case of non compatible browsers.

Back to contents

9. PROBLÈMES ÉVENTUELS

Back to contents

10. TECHNICAL NOTES

10.1. Email

If you write such a script for a web host specific function (see the Online.net.inc and Nexen.net.inc to learn how to proceed), the GuppY development team would be more than happy to receive a copy of it.

10.2. Free.fr - specific email

Now Free uses the standard php mail function. Then you don't need to use "protomail".

10.3. Files upload

Some web hosts disable the HTTP file upload functionality. Then, the Upload admin functionality will be useless. Upload your files on your site using your FTP software.

10.4. Content sharing between sites in RSS format

In that case, the news sharing module between sites in RSS format will not work.

10.5. How to access the mobile version of GuppY

If your site is accessed this way: http://www.yoursite.com/here/ (for example), then the mobile version (which is a lightened version of GuppY aimed for smartphone users and blind people) is easily and automatically accessed this way: http://www.yoursite.com/here/mobile/. Just put a link in your web site for telling your mobile visitors how to access it.

10.6. Follow-up e-mail to more than one recipient

An example of a function which sends follow-up e-mails to more than one recipients is given in inc/mail/more1receiver.inc. Be careful that you have to edit the inc/mail/more1receiver.inc file (with any basic text file editor) and input the additional names and email addresses.

Back to contents

11. LICENSE

GuppY is distributed freely under the terms of the free CeCILL license (see pages/copyright-en.txt file). It means that you can use this script for free, modify it for your own use. If you distribute a modified version of it, this modified version has to comply to the CeCILL license as well.

I CAN IN NO WAY BE HELD LIABLE IN THE POSSIBLE DAMAGES THAT COULD OCCUR DUE TO THE USE OF THIS SCRIPT.

Back to contents

12. DONATION

I develop and maintain my website and my freeware programs during my free time and also when I have a little money left. It is not my philosophy of life to get rich thanks to this work.

However, if you like my web site and find GuppY useful, please consider making a donation to show your support. Any amount will be greatly appreciated. For donating, just go to the following address: http://www.aldweb.com/give.html

Back to contents

13. THE INFORMAL GuppY TEAM

- That's me! If you want to know more about me, please read my Hobbys web page.
- e-mail : info@aldweb.com
- Web site : http://www.aldweb.com/
- Balou provides add-ons and sample parametrizations for typical portals
-(weblog, discussion board...). He also takes care of checking that the installed web sites follow the basic security rules.- e-mail : balou66@free.fr-

- Jean-Mi is expert es plug-ins, great PHP specialist and made the new search engine.

- e-mail : jmmis@free.fr

- Site web : http://www.jmmis.com/

- Not very bad but not the best at all... he made the GuppY blog and revamped the forum.

- email : albert.aymard@orange.fr

The new members:

- He made the new mini-editors for admin and adapted many wysiwyg editors for GuppY

- e-mail: jchouix@orange.fr

- Site web: http://lebrikabrak.free.fr

- Mobile internet addict, he wants to make GuppY friendly with all mobiles...

- e-mail : iguppy@free.fr

- Site web : http://iguppy.free.fr/

And now:

- Nothing can stop him when it's about coding.

- e-mail : webmaster@hpsam.info

- Site web : http://leconte-sylvain.hpsam.info/

- He always find a solution to please you, in particular center freeboxes.

- e-mail : richard@ghazette.com

- Site web : http://www.ghazette.com/

And I don'to forget Alex, historically the first to join me and Nicolas who made a lot of scripts for GuppY.

Back to contents


14. WILL YOU JOIN US?

If you like GuppY and you wish to help us promote and develop it, you are very welcome.

Here are a few ideas to improve it and for which your help will be more than welcome (there are improvements for all kinds of good willing people):

Back to contents

15. VERSIONS HISTORY

v5.0 (and following ones)

Perhaps not all of this wish list will be done in that release) - currently under development -

- Overall objective: with the 4.x series, we achieve a functional maturity level. Now, we will focus our work on new techniques for more user-friendly operation and better managing. KISS......

- conformity to W3C standards optimised, accessibility improved.

- suggestions written in freeguppy ideas box are acknowledged.e FreeGuppY

★★★★★★★★

v4.6.19 - March 29, 2012

Security patches and version 4.6.19

This non-cumulative patch 4.6.19 fixes a critical flaw, released and intended for any previous version of GuppY.

You MUST IMMEDIATELY install this fix for the security of your site.

We added some new features or corrections:

- Corrected function WriteDoc, thanks jchouix

- Added social networks, thanks Saxbar

- Added initialisation DBLOGL in install/cleanup.php, thanks Icare

- Replaced Close by $ admin458 in admin/inc/archbatch.php, thanks Icare

- Updated pages/db_guppy.txt, thanks Icare

- Correction in config8 config9 and sliders on the body, thanks Saxbar

- Correction in config2, deleting $page[24] for the cursor in the body and cursor:hand, thanks Saxbar and tonton_christian

- Added an additional step in the install directory migration scripts, in order to comply the datas with php5 (based on the script of the data-mill), thanks Saxbar, Icare, and JeanMi.

- display of lateral and central titleless boxes (if title's empty) thanks Saxbar.

BEWARE: all skin.inc files of the skins in the GuppY pack have been updated including no_skin to prevent display of box title if it's empty.

If you've customised one or all of your skin.inc files, then you have to make a backup not to lose them by overwriting.

Many thanks to all contributors to this patch

The GuppY Team

v4.6.18 - February 9, 2012

Security patches and version 4.6.18

Integration into GuppY of private groups has induced a number of disorders.

Some vulnerabilities have still been detected in this version.

We therefore propose version 4.6.18 which fixes these flaws and some squeaks.

This version also includes some new features.

Installation of this version is essential for data security of private groups, and to control the registration of members.

The following changes have been achieved in this patch:

On the tracker :

FS # 384 - Added missing font sizes in admin / editors / guppy_ckconfig.js (thanks Francois Saxbar)

FS # 387 - Remove inc/plugin.inc (thanks JeanMi)

FS # 388 - Fixed forum answer thread management (thanks linuxmr, Saxbar)

On the forum:

Forum - Added $supervision10 admin/inc/config5 in e-mail to moderators / administrators in supervision (thanks tonton_christian, Saxbar)

Forum - Fixed php4 compatibility admin/inc/config7.inc (thanks Laroche)

Forum - Added $ supervision10 in admin/inc/confupdt.inc (thanks tonton_christian, Saxbar)

Forum - fixed file admin/inc/logread.inc (thanks Papinou)

Forum - Added correction patch for download.php and dwnld_pr.php (thanks Laroche)

Forum - Added width choice of CK Editor in services config (thanks Saxbar)

Forum - Changed inc/includes.inc for editor width and changed version (thanks Saxbar)

Forum - Correction of $typ illegal value for blog, news, guestbook, and $ screen_choice (thanks Saxbar)

Other changes and improvements:

- Removed short tag line 236 of admin/inc/members.inc (thanks Laroche)

- Changed language file .fr and en.

- Added confirmation request to unsubscribe from the newsletter. (Thanks Saxbar)

- Fixed $uwebsite, deleted welcome message display in case of modification, correction reference to admin (thanks Laroche)

- Private groups control for forum archiving (thanks Saxbar)

- Fixed calendar adjustment iframe (thanks Saxbar)

- Fixed XHTML validation link (thanks Papinou)

- Changed copyright display bpage and maintenance (thanks Saxbar)

- Changed members registering control (thanks Saxbar)

- Fixed display icons for plugins allocation rights (thanks Saxbar)

- Display of active services for granting permissions to collaborators (thanks Saxbar)

- Deleted old boxes in profile changing area (thanks JeanMi)

- Added time zone (thanks Saxbar)

- Initialisation of default time zone at "Europe/Paris" (thanks JeanMi)

- Correction of function IsPrivateForumCat() (thanks Saxbar)

- Fixed IsPrivateForumCat() function (thanks Saxbar)

- Changed variable $obgo (thanks Saxbar)

- Correction of private forum management for mobile phone. (thanks Saxbar)

v4.6.17 - Octobre 21, 2011

What's new:

- Insertion of CK Editor 3.6.2 as WYSIWYG editor in GuppY (thanks jchouix)

- Adaptation of the mobile phone part to private groups (thanks Saxbar)

- Added flags of all countries in inc / lang (thanks François)

- Added batch addition of new members to a private group (thanks Saxbar)

- Created directory inc/inchead to allow automatic include of php scripts or html at the top of the page (thanks Saxbar - Laroche)

- Creation of a directory inc/incfoot to allow automatic include of php scripts or html at the bottom of the page (thanks Saxbar - Laroche)

- Creation of a link to the FAQ, download and links, add the thumbnail hyperlink in inc/img/general (thanks Laroche)

Corrections :

- Fixed characters to display country flags in log (thanks François)

- Change display of config look and config style (thanks Saxbar)

- Fixed calendar iframe display (thanks Laroche)

- Fixed "read more" display for the blog and the news on homepage (thanks Laroche)

- Optimization of Webmaster display box (thanks Saxbar)

- Correction of link making after search for planner and forum in search.php (thanks Saxbar)

- Correction of misprint in blog.inc. Deletion of &nbsp on line 315 (thanks JeanMi)

- Updated and added language files in the inc/lang/en-admin.inc in-web.inc, en-admin.inc, en-web.inc

- Fixed printfaq.php limited to the FAQ (thanks Laroche)

- Optimization of skin header Island display (thanks Papinou)

- Change pages display for printing (thanks Saxbar)

Securing private groups:

- Fixed private downloads (thanks Laroche)

- Correction of research to respect private groups data.(thanks Laroche)

- Fixed forum, private subjects, live forum display. (thanks Laroche)

- Possibility of having a forum without categories if not using private groups. (thanks Laroche)

- Modified the creation of a private section in the forum by a simple check box and creation of the corresponding private group PR.(thanks Laroche)

We recommend installing this version 4.6.17 for the complete security of your private groups, deleting the file/private folder and using of a personal sub- directory in /file for private downloads.

Reading the file readme.html and tutorial on the use of private groups is essential.

Caution!

As with any new version, remember to update your plugins, reinstall or do your forks again, revalidate your configuration pages.

v4.6.16 - September 02, 2011

Integration of private groups within GuppY has led to a number of disorders and especially security flaws that were not detected during the beta testing.

We therefore propose version 4.6.16 which fixes these flaws and some squeaks.

The installation of this release is essential for data security private groups.

On the bugtracker:

# 366 - fix vulnerabilities to private forums and downloads (thanks jchouix, Laroche, Pascal31)

# 367 - fixed display online forum (thanks jchouix, Laroche, Pascal31)

# 365 - fixed inconsistency creating data / temp (thanks hpsam)

# 363 - fixed display boost in counter.inc (thanks Papinou)

# 372 - fixed typo in forum.php (thanks JeanMi)

# 374 - taking into account optimization of languages ??in fck editor (thanks jchouix)

# 375 - change management record of the members (thanks Laroche)

Forum:

- Fixed icon frame in news.inc (thanks Papinou)

# Header correction in admin.inc

# Correction of language files -fr and -en

# Correction of latest news display on homepage (thanks Laroche)

# Correction of display and treatment of private downloads,

Creation of a sub-directory file/private with. htaccess to secure private downloads to be placed in this directory private (thanks Laroche)

# Change configuration files to control the creation of categories of private forum (thanks Laroche)

# Optimization of block quote box display in every pack of skins (thanks Papinou)

Attention

If you have customized a GuppY skin pack without changing the name, you must rename it before installing the patch or lose your changes.

Style.css files and skin.inc in each skin have been changed.

Many thanks to cece45 for pointing out the flaw in private forums.

We still have to adapt the "mobile part" of GuppY

Warning: : Delete the folder "mobile" is required when private groups are used..

With these corrections, if you do not configure or use private groups, theoperation of GuppY is unchanged.

v4.6.15 - July 01, 2011

On the bugtracker:

- # 327 - removal htaccess error 401.

- # 340 - is the addition of HR tag - thanks jchouix.

- # 357 - fixed number of days the previous month - thanks jchouix.

- # 358 - correction taken into account in domaine.domaine web address - thanks jchouix.

- # 359 - fixed validation error - thanks jchouix.

- # 360 - removal PGeditor access source code - thanks jchouix.

- # 361 - improvement in partial display new page and permalink - thanks Laroche.

- # 362 - improved display part of the year blog home page - thanks Laroche.

- English Forum: Fixed typo in inc / blogcalendar.inc.

- Suggestion Box No. 234: Fixed date display day event (other than d / m / a) - thanks Quefer.

New:

- Management of private groups of users - thanks Icare - thanks JeanMi.

(See specific tutorial).

v4.6.14 - 14 February 2011

Copyright - Version

-1- Update, year copyright inc/bpage.inc.

-2- Update, year copyright inc/hpage.inc.

-3- Update, version inc/includes.inc.

On the bugtracker:

-1- FS#348 - The editor icons are missing in tinymsg.

-2- FS#347 - Position of the tooltip linked to the class 'pop'.

-3- FS#354 - Report of graphic bug and correction..

-4- FS#340 - Suggestion box : about the addition of the HR tag.

-5- FS#338 - Blocked topics at the top do not stay there.

-6- FS#329 - Plugin connexion speed.

-7- FS#341 - In French, there are two $web434 and no $web435.

-8- FS#337 - At Free, control of last version fails.

Suggestion box:.

-1- Reaction n°217 - admin/inc/config7.inc correction.

-2- Reaction n°206 - Correction of file inc/log.inc.

-3- Reaction n°202 - Modification of admin/inc/admin.inc, by adding article title in Admin - Articles reactions.

PgEditor:.

- Addition and update of PgEditor 2.5.1 - Correction Opéra bug .

FS#355 Correction of security flaw by Antoine CERVOISE (http://www.antoine-cervoise.fr/).

Corrections and modifications were on the tracker..

PgEditor new version and the correction of security flaw are from djchouix..

v4.6.13 - 22 May 2010

#286 - initialization of the timezone with 'Europe/Paris' if version PHP >=5.1.

#316 - file inc/log.inc forgotten into 4.6.12.

#323 - correction of posting in admin/inc/members.inc.

#324 - correction of a bad character in admin/inc/poll.inc, thanks Laroche.

#325 - correction of the files of upload (continuation of #320).

#328 - correction of posting in inc/bloglist.inc if no ticket.

v4.6.12 - 01 May 2010

#314 - in admin/inc/admin.inc, correction of a tag .

#315 - in inc/pgeditor/style/pgeditor.css, replacement of a value "undeline" by "underline".

#316 - NEW: Addition of the statistics of the previous month, visible at the end of one month.

#317 - in admin/inc/members.inc, correction of the path of the icons of the minieditor.

#318 - addition of the fields author and email in the page of administration of the articles.

#319 - removal of the file admin/adminstrateur.php (only in the complete pack).

#320 - at the time of upload, the creation of directory is prohibited if the name of the repertory contains the word script.

#321 - correction of the poll administration page , which lost the value of the selected skin.

#322 - correction in inc/topforum.inc for W3C validation

v4.6.11 - December 11th, 2009

#291 - typo correction in preg_match() in admin/editors/minieditortextarea/popup/image.php.

#293 - typo correction in inc/blogcalendar.inc.

#294 - Document view secured in agenda.php by hpsam.

#295 - pluginlist correction in admin/inc/infos.inc.

#297 - functions.php corrected: generation of mailto link by ForceToAbsolute_callback() function.

#298 - lang/fr-admin.inc of pack 4.6.10 reviewed as was incorrect in the patches.

#299 - daily events summary corrected in inc/calendar.php, thank you Linuxmr.

#300 - css error corrected as well as duplicate of rubric title in blogrss.php.

#301 - selectDBFieldsBy functions optimised....

#302 - Empty link deleted in banners where undefined URL.

#303 - blog boxes view optimised; hr in blog, news.inc and boxreact.inc deleted.

#304 - $admin53 replaced by $admin173 in admin.inc, forum message modified.

#305 - correction, in upload.php extensions in capital letters taken into account.

#306 - test in inc/lang/fr-special.inc and en-special.inc corrected.

#307 - forum view made reliable (distortions removed and div.code classes in pgeditor optimised) and width replaced by style=width in table cells of various scripts.

#310 - added button to browse server for downloads in admin.inc, thanks Linuxmr.

#311 - correction of prag_match in admin/editors/minieditortextarea/popup/entities.php.

- added no go button in scripts install, cleanup and delete.php.

#312 - correction of display licence in download.php.

#313 - added daily warning in administrateur.php to remember the removal of install directory.

- updated all dates of copyright.

v4.6.10 - September 7th, 2009

#253 - correction of the relative addresses of the images (img/, Inc/img/and photo) in permanent addresses in the newsletter and flows RSS.

#253 - correction of the relative addresses of the links in permanent addresses in the newsletter, flows RSS and supervision emails.

#253 - correction of the anchors in the newsletter, which remain relatives.

#253 - correction of the function pubDate.

#253 - correction of the UpdateDBBlog function.

#256 - correction of management in zone members in postguest.php.

#259 - correction of error.php following the patch 4.6.9.

#260 - addition of the file install/migrate24.php.

#262 - correction of the bonds during the change of language.

v#263 - addition of a function iconv when PHP < 5, thank you linuxmr.

#266 - correction about the tests in the course of a repertory with the function to is_dir.

#267 - correction of the taking into account of the language in FCKeditor.

#268 - NEW: the Banners function becomes bilingual.

#269 - correction of the management of the rights on the plugins for the writers.

#271 - correction of the use of quotes in the categories.

#272 - replacement of the functions of family ereg depreciated starting from PHP 5.3.

#273 - suppression of the popup vacuum in the blog, when the option "Mask the address ename" is activated.

#274 - correction of many files for a better conformity with the recommendations of the W3C.

#275 - addition of freebox in the home page.

#276 - updated FCKeditor to release 2.6.4.

#278 - addition of images for the extension of files : pdf, doc, xls, ppt and OpenOffice.

#279 - improvement of tests on the URLS in General Config.

#280 - improvement of the diary page in the event of erroneous parameters.

#281 - impression of the central part of the pages with a dedicated stylesheet.

#282 - improvement of duplication with creation of the new element after validation and not before.

#283 - improvement of the test on REFERER in postguest.php.

#284 - improvement of duplication of the events of the diary.

#285 - correction of management member of the blog in banner page.

#287 - correction field not empty of FCKeditor.

#288 - correction code of all blog boxes.

#289 - correction css of head topic in thread.php, thanks Kamila.

#290 - removal of first (or third) column empty while displaying with two columns only.

v4.6.9 - December 25th, 2008

- Correction of safety test in admin/inc/access.inc #232.

- Correction of the test displaying the RSS icon en administration #231

- Function ShowBlock moved to inc/functions.php #221

- correction of the ShowBlock function

- Function SearchOption moved to inc/functions.php #219

- Correction of TestEmail function in admin/inc/nwlist.inc #226

- Correction of discrepancies in statistics #218

- Addition / correction of the statistics for the Blog and Admin pages #216

- Improvement of the checking of the variable $num in postguest.php #203

- Correction of the email used in the RSS #225 -

- Correction of the full page display mode of the blog #228 -

- Correction of the full page display mode of the forum #234 -

- Improvement of the forum in case of subjec absent or archived #237 -

- Added calendar limitation in the blog from the first note till now #221 -

- Added management of the non-existent pages of the blog #221 -

- Added checking of functions "Recommend this site" and "Mail PHP" #20 -

- Correction of items activation in the main menu #224 -

- Correction of some RSS feeds display #229 -

- addition of the field pubDate in flows RSS #240 -

- Added a test of security on the numeric parameters #242 -

- Added field URL of the site in the administration of the forum #241 -

- Added the header HTTP Content-Type with correct charset #245

- Added directory inc/jshead for the automatic loading of javascript in part HEAD of the page #246

- Many small corrections improving the compliance with W3C standards

- Improvement of the migration

- Optimization of the code of test of bank holidays

- Improvement of the function "Add to favourite (suggestions box #156)

- Remembering of the entry in case of already used pseudonym (suggestions box #160)

v4.6.8 - May 24th, 2008

- Corrected plugins list in admin/adminredac.php and admin/inc/plugins.inc.

- Modified select in inc/boxsearch.inc, search engine in search.php.

- Put again date of news (disapeared!) in inc/news.inc.

- Corrected link of popup dwnld in download.php.

- Added n° of topic, back to forum if no parameter in thread.php.

- Corrected HTTP_REFERER test, and supervision mails in postguest.php/mod_thread.inc.

- Corrected selecting comments in inc/bloglist.inc.

- deleted useless parameters of the link to global list in blog.php.

- corrected mistakes of $msg2 in admin/inc/members.inc.

- corrected display of fortopic.php, inc/topblog.inc and topforum.inc.

- corrected htmlentities management of FCKeditor.

- replaced include by include_once for funcrss in admin.inc and maintain.inc.

- modified config2/config8.inc (generate automaticaly style.css if permitted).

- added create/erase subdirectory in upload.inc.

- new release of pgeditor.

v4.6.7 - April, 23th 2008

- don't display useless icons in administration.

- corrected bad html tags in generic.htm.

- correction bug writing message in tinymsg.php.

- corrected search module.

- corrected bad tags br in postguest.php.

v4.6.6 - April, 14th 2008

- Corrected processing $serviz31 in admin/inc/config5.inc.

- corrected syntax errors in config6 et config7.inc.

- W3C validation icons are now removable in config1.inc.

- added select for categories, added puBR() in admin.inc.

- corrected language test in poll.php.

- corrected include place of hpage.inc in pages/sample.php.

- download possible if javascript not active et corrected caracteristics of the file in download.php.

- deletion of useless clear:both in links news and faq.

- corrected cursor in photorama.php.

- deleted useless quote in body tag of photoview.php.

- modification of updateDBdtb (new field date in blog) in functions.inc.

- created MAJ_BLOG.PHP to update the new field date of DBBLOG.

- corrected notes select in blogcalendar.inc.

- display error if a note isn't active in blog.php.

- corrected width and display of titles in blog.php, blog, blogcat and bloglist.inc.

- added attribute title in links of menu articles.

- corrected couic of forum counter and test thread topic in postguest.php.

- updated display of new and important in forum and thread.php.

- corrected empty $fieldmod, update fields for supervision in inc/mod_thread.inc.

- move onload adjust of calendar height to calendar.php for W3C compatibility.

- minimyzed search width in topblog and topforum.inc.

- added urlencode using all WriteMailto() functions.

- corrected hpage.js for display of news and last news.

- optimisation of hpage et bpage.inc to extend customisation facility.

- corrected days of the month in statcalc.inc.

- corrected searching photos in boxsearch.inc.

- corrected $err test in error.php.

- added header("HTTP/1.0 404 Not found") when page not found, thanks eDada.

- updated FCKeditor to release 2.5.1.

v4.6.5 - December 5th, 2007

- Subscription to newsletter with confirm message.

- Added rich text in tinymsg to all members.

- Corrected plugins list admin/plugins.

- Corrected erroneous $fieldd1 et $admin915 in admin.inc, thanks JeanMi.

- Better URLs input in config1.

- Updated texte[4] in config.

- Corrected $$serviz[36] added space to $serviz[31] in config5.inc.

- discard useless > in config6.inc.

- Corrected border attribut in config8.inc.

- Replacement of button by input class=bouton in nwllist.inc.

- Corrected Collaborator select in attribdroits.inc.

- Corrected language test in inc/boxpoll.inc.

- Corrected item title in spécial box.

- Added blog in inc/statcalc.inc.

- Cancel useless flag in mobile.

- Optimized display of last news (no display of the box if no news).

- Corrected mismatch display, delete display of read count if count unavailable in forum.php.

- Changed headTop table by divs in hpage.inc, thanks JeanMi.

- Corrected hardcoded itemsin download.php, boxsearch.inc, attribdroits.inc and upload.inc.

- Added stop on illegal input in printfaq.php.

- Auto adjustment of iframe height in inc/boxcal.inc.

- Corrected bad define CHEMIN and secure access in tinymsg.php.

- Corrected image display of stand alone note in blog.php.

- added checking destroy all in admin/inc/maintain.inc.

- added missing restriction to members in forum live.

v4.6.4 - November 04, 2007

- fixed vulnerability of error.php found by irk4z.

- fixed vulnerability of includes.inc found by irk4z>.

v4.6.3 - August 30, 2007

- new: added duplicate for article, blog, news, etc... in admin.inc, thanks JeanMi.

- added administrator valivation for reaction on articles and blog comments.

- newsletter activation is now in services config with optionnal test of email server.

- you can display a plugin (or special box) in welcome page page, thanks JeanMi.

- deletion of current language icon in menubar.

- corrected links for supervision mails in postguest.

- better mail test in newsletter.php and admin/inc/nwllist.inc.

- corrected copyright in bpage.inc.

- corrected download files and admin download for multilingual files.

- replacement of ouvrir and fermer par language strings in menus (articles, blog, faq, links and download).

- new strings in language files.

v4.6.2 - August 1st, 2007

- corrected css-validator link in bpage.inc.

- corrected screen_choice in hpage.inc.

- corrected blog display and missing end of page in blogrss.php.

- modification of select size in admin/inc/config6 and css rubr of config8.inc.

- new email testing process in newsletter.php.

- test email corrected in newsletter listing.

- corrected insert of CSS for IE in pgeditor.

- corrected DBNEWS item in functions.php.

- corrected p tag in agenda.php and inc/boxreact.inc.

- corrected some php short tags and bad xhtml tags forgotten.

v4.6.1 - July 3, 2007

- corrected last message link in forum and fortopic.php.

- corrected javascript in postguest.php.

- corrected css attributes in config8.inc.

- corrected padding for rubr class in style.css of each skin.

- corrected bug in IE editor.

- modification of test anti-thief of cookie in includes.inc.

- corrected thread modification in admin.inc.

- corrected accentuated characters management in FCKeditor config.

- corrected PathAbs() in functions.php.

- corrected supervision mails in postguest.php.

- added strip_tags for all scripts names wanted by icons menu.

- added search for blog and comments in search.php.

- updated e-mail checking in newsletter.php.

- optimization of integrity check.

- corrected bad link for articles in funcrss.php.

- adding automatically new boxes (if needed) in boxes config.

- corrected many bad xhtml tags.

v4.6.0 - 4 June 2007

- NEW : Guppy has now it's own blog !!!

- new forum release more efficient, with it's own configuration page (with charter).

- edition of the posts by their respective authors and the admin/moderators.

- reorganization of configuration management.

- access to the fast administration for the collaborators.

- added plugins management rights for collaborators.

- added optionnal charter display in fortopic module.

- standard XHTML compliance.

- change TypeTool wysiwyg editor by FCKeditor, much in and xhtml compliant.

- replacement of the admin mini-editor.

- replacement of the wysiwyg editor for postguest.

- new photo et photorama modules with possible subdirectories.

- corrected display bug in download, faq and links modules.

- correction vulnérabilité de archbatch.php et nwlmail.php

- optional posting of the license when downloading protected software.

- more efficient accessibility and better management with javascript disabled.

- choice of displayed page width (1024 or full size).

- choice of full width display for forum and blog.

- correction of the calendar and diary.

- improvement of the boxes positions (on top, at the bottom, in the center, on the sides).

- management of the skins individualized and coupled with the boxes positions.

- integrated management of the style sheet css (generation, modification).

- added disconnect/reconnect in user box with temporary save of your cookie.

- contact webmaster via the majority of messengers software.

- improved choice of the preferred message of the gold book in home page.

- improvement of the characters accentuated treatment in the name/pseudo.

- corrected php short tags for php5 compatibility.

v4.5.19 - November 10 2007

- correct error.php vulnerabilities discovered by rgod.

v4.5.18 - April 1, 2007

- correct FAQ member area.

- correct links mailto in Recommend and Webmaster contact mails.

- correct display bug of poll section in case of a second vote with IE.

- correct a link in the mobile version.

- Pseudo is read only when you modify your account. In other case a new member is created.

- Delete in admin counters the text over central box wich don't need to be here.

- correction function PathToImage

- correction 30 or 31 February display in calendar.

v4.5.17 - January 31, 2007

- correction vulnerability of error.php found by rgod

- correction boxcal.inc

v4.5.16 - - January 28, 2007

- correction function PathToImage

- correction news.inc

- correct download.php - faq.php - links.php.

- add function IncrNextID() to avoid crushing an old document at the time of the creation of a new document.

v4.5.15 - 27 January 2007

- correction in case of one element in article in the left article box.

- correction inversion between creation and modification in FAQ.

- correct news in second language.

- correct photorama for fit in galleries

- correct calendar box show if agenda is not activated.

- correct postguest to disalow pust in unactivated services.

- correction dwnld.php ($serviz[10] instead of $serviz[35])

- improvement of list of the subscribers to the neswletter.

- display of the most recent subscribers at the beginning of list.

- possibility of multiple deletions in only one action.

- maximum list display by page of 25 subscribers.

- correct tinymsg.php (deletion of the maxlength="10").

- improvement of the PathToImage function to also correct the urls links.

v4.5.14 - Mai 19, 2006

- updating errors of 4.5.13 patch

v4.5.13 - 19 Mai 2006

- correction of the files download.php, faq.php, links.php and news.inc.

- correction of the test prohibiting the use of the pseudo "Your Name" in newsletter.php.

- replacement of getenv("HTTP_USER_AGENT") by $_SERVER["HTTP_USER_AGENT"] in includes.inc.

- suppression of the posting of the reactions for the non-members in articles.php.

- correction of posting in photorama.php.

- correction of the activation of news RSS in hpage.inc.

- correction of the agenda for the second language.

- improvement of the search engine to respect the restrictions "members".

v4.5.12 - March 9, 2006

- correction vulnerability of dwnld.php found by kapda.ir.

v4.5.11 - December 25, 2005

- correction second language in search.php.

- correction of the initialization of the parameters of the anti-spam.

- correction of the forced color with white for the icon "minus" of the downloads.

- correction of a test in the admin of the diary/calendar.

- standardization of the pages downloads, links and faq.

- filling of the cells of the calendar beyond the last day of the month.

- addition of a warning for the administrator when its site is in work.

- addition of controls in case of files docXXX.inc absent, empty or corrupted.

Suggestions box n°63

- interdiction of the indexing of the error and newsrss pages by the robots.

Suggestions box n°48

- suppression of the underlining of the current page in the bar of navigation.

Suggestions box n°64

- addition of the text of the response on a subject of the forum in the mail of follow-up of a subject.

Suggestions box n°46

- correction of the return systematically in principal language at the time of the inscription of a visitor.

Suggestions box n°70

- addition of a posting unfolded when one reaches only one page of downloads (by &pg=99)

- addition of a posting unfolded when one reaches only one page of links (by &pg=99).

- addition of a posting unfolded when one reaches only one page of faq (by &pg=99).

Suggestions box n°28

- addition of the choice of the state (active or not) of the elements created in admin.

v4.5.10 - November 29, 2005

- correction of 5 vulnerabilties by rgod.

v4.5.9 - November 27, 2005

- correction of the selector of colors.

- correction of the menus articles under FireFox.

- minor corrections in many files.

- improvement of the archiving of the forum and the control of integrity.

- improvement of postguest.php.

v4.5.8 - October 16, 2005

- correction in postguest.php (add the missing break).

v4.5.7 - October 8, 2005

- correction of the poll.

- improvement of the mechanism anti-spam.

- addition of the parameter setting of the mechanism anti-spam.

- correction of a input tag not closed in admin.php.

- correction of a head tag badly placed in calendar.php.

v4.5.6a - September 28, 2005

- correction of printfaq.php.

v4.5.6 - - September 27, 2005

- correction of a vulnerability "file transverse flaw" in printfaq.php.

- correction of the error count during the control of integrity in batch.

- correction of two spelling mistakes in fr-admin.inc.

- improvement of the editor (meta and script) and the preview (flash).

v4.5.5 - September 10, 2005

- correction of the admin. pages of the counters.

- correction of the newsletter (addition of the charset)

v4.5.4 - September 6, 2005

- correction of two faults of safety (error.php and printfaq.php) Thank you Romano.

- final correction of the diary/calendar (see readme_agenda.txt).

- final correction of the editor.

v4.5.3a - 30 August 2005

- correction of the diary into admin/inc/admin.inc

v4.5.3 - 27 August 2005

- correction of the path of the file RSS (addition of data) thank you Tanet.

- correction of the diary/calendar.

- correction of the editor (taken into account of the path images, conversion \n <=>

into entry and exit).

- correction of General Config (suppression of : $site[29] = "" // Libre).

- correction of the couic putting the number of answers of the forum at 0 during physical suppressions.

- improvement of the shortened news (now in HTML).

- standardization of the bar of navigation (files of the forum and "mobile" part).

- improvement of the control of integrity by batch.

- addition of a mechanism anti-spam for all the posts.

v4.5.2 - 23 July 2005

- configuration in Config.Services of the number of files to be preserved in data/error.

- configuration in Config.Home of the number of characters of the news.

- correction of the class CSS of the categories on Download page and Links.

- correction of the class CSS of information (dates, counter...) on Articles page.

- correction of the path for the correct operation of the "shortcut ico".

- simplification of the selector of image which accepts the sub-directories recursively of img and photo (removal of the files listimg1.php and listimg2.php).

- addition automatic of "/" final of the URL of the site.

- improved the e-mails of supervision of the newsletter (e-mail in HTML + links usable).

- correction of the path of the image used by the plugin speed.

- suppression of the \r forgotten in inc/mail/standard_2.inc and inc/mail/standard_3.inc.

v4.5.1 07 July 2005

- Corrected collapsed categories list in photorama.

- optimized RSS news: new display with ceating date (thanks Tanet).

- corrected mail sending process where needed in many scripts.

- corrected inverted summary between Italic and Underline in TypeTool editor.

- corrected a typing mistake and modified some pathes in postguest editor (thanks Djchouix).

- Corrected writer connexion (it was able even if Writer option not checked!).

- Corrected eMailHtmlTo() function to include real sender in webmaster mail and recommend).

Back to contents

v4.5 - 28 Juin 2005

- Display managements lists with 25 items a page.

- Select actions by check boxes and global execution for all the page.

- Separate manager and writer connexion and better multi-management.

- New search engine with direct display of items found.

- Extension of quick management to all scripts.

- Checking tinymsg addresses to prevent mail usurpation.

- Partial news on home page (with "see more").

- Download, links and FAQ updated as Nicolas's fork.

- Improving-optimizing photo modules.

- Now the articles boxes stay opened on the selected article

- Optimization admin editors (popup option) and easier insert of others editors.

- Added text preview in the mini-editor of admin.

- Optimization postguest editor (newline, forbidden tags, cite, code, preview...).

- Corrected Planner: displaying events of current month year+1 is now correct.

- Added "alt" (thanks Hubby) and title on calendar days.

- On the calendar, clicking month name displays month planner, day displaying a summary of an event

- Compatibility with new PHP releases (whatever are "register_globals", register_long_array", "register_notice").

- Better security in includes and constants.

- Possible flash banners.

- Mail de supervision au format HTML

- Sending mails in multi-format (text + HTML).

- New webmaster mail and optimized recommendation.

- Added reading link on supervision mails

- Newsletter with HTML tags

- Correction de l'agenda (affichage évènements année+1 corrigé)

- Style ans skins optimized by using more div and css.

- Corrected second language of the calendar, today highlighted only for current date.

V4.0 06 December 2004

- New WYSIWYG editor also running with Mozilla and sons... for admin articles.

- Different admin levels.

- Admin icon in content for quick access on all document (for webmaster only).

- optional members management

- forum and guestbook posts submitted to administrator.

- title different on each page

- Gestion de l'UID améliorée

- more efficient counters management.

- agenda integrated with new calendar.

- new tiny WYSIWYG editor for forum, news, guestbook...

- Best looking forum, and so for all other pages.

- new tiny messages manager.

- form to write to the webmaster.

- Sending an email to users who wish it wheb a forum thread has been answered and they want to be informed.

v3.0p4 - September 06 2004

- limitation of the size of the inputs of the visitors.

v3.0p3 - July 29 2004.

- solved a security issue (found by L0rd L4m3R).

v3.0p2 - 9 April 2004

- Compatibility fix: now GuppY is fully compatible with Abyss webserver, KF Web Server, IIS and probably with other web servers (thanks Kromonos and lordloose).

- removed 2 debug information lines forgotten during v3.0 development in the Search script (thanks Realia).

- bug fix in the CSS style sheet (thanks Ouly).

- bug fix in the GuppY skins which fooled Netscape (by Icare).

- corrected the demo database in which some documents had parasitic "\" characters.

- removed the empty URL link display in the reaction box (thanks Realia).

- corrected "adress" typo mistake to "address" in admin minieditor (thanks JeanMi).

v3.0p1 - 26 February 2004

- bug fix (appeared with v3.0) in migration from v2.3 to v2.4, now migrates correctly the doc[n].inc files.

- bug fix, now checks e-mail correctly in the VerifyForm() function in user preferences.

- bug fix, now includes Protomail class only once in the Free.fr mail() management.

- ergonomic fixes in the e-mails sent when a user subscribes to the newsletter.

- bug fix, if no icons set selected, then do not display news image in the RSS news module.

- include only once reglobals if required (time saving when in admin).

v3.0 - 25 February 2004

- added a "skins" themes system for boxes (by Nicolas Alves and Laurent Duveau). Thanks to Ricsen for designing the submit buttons.

- added a newsletter functionality with inscription form (by Nicolas Alves and Laurent Duveau).

- added a logbook monitoring admin tool (by B@lou, Nicolas Alves and Laurent Duveau).

- date format display fix in the mobile forum script (by B@lou).

- added possibility to put all boxes on the right side in the user preferences

- added GuppY copyright information on all pages because too many people were hiding that their website was built with GuppY or were definitely usurping the copyright :-(

- pages compression introduced in v2.4 is now an admin option.

- created a plugins management system to ease the integration of plugin scripts to GuppY.

- changed sample external files to plugins.

- added 2 new options for dynamic list menu (thanks Graznok and Icare).

- added UID management for Tiny Messages.

- added check for "(", ")" and ";" characters to avoid Javascript pollution attempts in URL input for guestbook (security improvement).

- added check for too long words (to avoid display misalignment) in user posts, in tiny messages and in user preferences.

- Compatibility with php.ini register_globals=off parameter (thanks JonnyQuest).

- Friendly thanks (but late... because I had forgotten where I had found it!) to Pascal Aka "Le Sorcier" (http://lesorcier.free.fr) for the miniportail_1 counter images set (the very first set, included as from version 1.0!).

- also added a new progress bar for pages loading from Pascal Aka "Le Sorcier" as well as another one which I do not remember where I found it...

- new batch processing option for the database integrity check.

- fixed a bug in the DB integrity check that was so tricky that I just cannot find words to describe it...

- added check for valid forum category in user posts (security enhancement).

- new forum archiving and displaying of this archive module (please note that the search module does not scan the archived forum threads).

- added an option for a "Please Wait..." message while a post is being processed and a check to avoid redundant posting (thanks Icare).

- added a new pages/ directory to put external webpages in (instead of putting them in file/ rather dedicated to files downloads).

- simplified language switch source code in the language selection box.

- added focus in tiny message input area (by B@lou).

- fixed bug in search non working for News and Photos.

- news are now be published in the RSS standard Web content syndication format instead of a GuppY specific format (thanks Palmipod). This module uses the great GPL licensed lastRSS 0.6 PHP class to parse RSS files (by Vojtech Semecky, webmaster@webdot.cz, http/lastrss.webdot.cz/).

- added an links animation effect option (thanks reddog).

- replaced $REQUEST_URI global variable by $SCRIPT_NAME for IIS compatibility (thanks Erik).

- changed $web30 and $web115 labels for better understanding (thanks FabriceV).

- added Title meta tag management (thanks Tanet and Realia).

- upgraded the printable version of articles (thanks tuture and B@lou).

- bug fix in the user preferences that would hide forum signature in a very specific case (thanks bugs974).

- automated return after posting (thanks Icare).

- added 2 new PHP mail() functions standard formats.

- thanks to Realia for correcting the French spelling of the lisezmoi.txt file and to Neil for correcting my English in this readme.txt file.

- thanks to Realia for upgrading the demo database.

- thanks to the GuppY Team members for their hard beta testing!

- first developed plugins in addition to the sample plugins:

- live chat plugin (by Nicolas Alves) - NOTICE: separate download.

- postcards plugin (by Nicolas Alves) - NOTICE: separate download.

- radios plugin (by Nicolas Alves) - NOTICE: separate download.

- music plugin (by Nicolas Alves) - NOTICE: separate download.

v2.4p4 4 October 2003

- Various security corrections (by frog-m@n, http://www.phpsecure.info, thanks).

v2.4p3 29 September 2003

- upgraded the ob_gzhandler functionality (compression of pages), now is done only if relevant (do not trust PHP and browsers anymore).

- added an e-mail add-on for standard PHP mail() function, allowing to send follow-up e-mails to more than one receiver.

v2.4p2 - 28 September 2003

- bug correction = some users were suffering from very slow displaying of webpages, it is fixed now (thanks Nicol@s and Arnaud).

- bug correction = counter follow-up e-mail sends back counter value.

- bug correction = buttons bar would not appear correctly (centered instead of left aligned) if Stats button was not displayed (Thanks Raiponce).

- Translation upgrade = upgraded a French string (thanks FabriceV).

- bug correction = the search engine would return no answer if the site was monolingual (thanks Laorens).

- XSS security correction in the posting module (by Das, http://www.echu.org, thanks).

v2.4p1 - 26 September 2003

- bug correction = now free.fr script works.

- bug correction = now the Stats module counts back the Number of Visitors.

- bug correction = now [ back] works after forum thread posting.

- bug correction = in mobile version, if no site logo, HTML code is now good (thanks Michel).

- bug correction = some users could not post messages in the guestbook or forum, it is fixed now.

v2.4 - 24 September 2003

- added "Page loading" popup.

- Visitors counter now increments even if counter box not displayed.

- show pseudo of users online.

- added an icon for articles and news.

- added Search in one language only option.

- added a new smileys theme.

- added section icon in central boxes.

- added forum summary on home page (last messages).

- moved homepage parametrization from General config to Services config.

- added Guestbook's favourite message on home page.

- added homepage's choice of central boxes (homepage box, last news box, forum in live box, favorite guestbook message box).

- added a Config homepage icon in admin.

- changed mailto box to default pages' background color (no more white background).

- split dynamic menu line if line too long.

- renamed Left and Right Articles boxes to 1st and 2nd Articles boxes.

- added react to an article option.

- added character set management in all parts it was forgotten: editor, table, special characters, e-mail popup, image picker (thanks Pavol).

- replaced "Webpage Preview" string in the editor by string translated in the adequate language.

- upgraded the image picker.

- added access to the Image Picker in the admin basic editor

- corrected a bug in the mobile version: the showing of articles for each of the 2 articles boxes is now fine (thanks Hubert)

- added alternative label for language flag images.

- added alternative label for site's logo image (name of the site).

- fixed a bug in the DB integrity check that occurred when the last document was created but not recorded in the indexes.

- changed the title of the "Webmaster/Site Info" box by the shorter "Webmaster" (thanks Realia).

- dynamic menus are now centered in articles boxes (thanks Pavol).

- smileys now appear when content's text needs to be displayed in the admin's documents list (thanks Pavol).

- added a new "windy" counter set (thanks César) and a new "sunflower" counter set (thanks Realia).

- the information of box belonging (1st or 2nd) given for articles in the admin's documents list (thanks Pavol).

- added option for choosing Articles mark in articles boxes (thanks Pavol).

- added Quick Article Admin Access (by Nicolas Alves).

- "Become a member" button label becomes "Your preferences" if user registered (by Nicolas Alves).

- show user name in the user box option (by Nicolas Alves).

- Registered users can decide if they wish to appear in the online users list or not (by Nicolas Alves and Laurent Duveau).

- tiny messages can be sent to online registered users (by Nicolas Alves and Laurent Duveau).

- added number of times an article was read (by Nicolas Alves and Laurent Duveau).

- added number of times a forum thread was read (by Nicolas Alves and Laurent Duveau).

- added number of times a file was downloaded (by Nicolas Alves and Laurent Duveau). This counter does not work with the mobile version.

- added backup counter for next forum thread number.

- upgraded eMailTo() function to accept additional specific e-mailing according to providers.

- added the "-f" parameter in the e-mail sending function (thanks Michel).

- the eMailTo() functions works for the Free.fr webhoster (with the use of the Protomail library, GPL licensed.)

- added forum personalized signature for registered users.

- call to documents in database is no more done through an include() PHP function call but through a ReadDoc() dedicated function.

- fully reviewed all the Read & Write files access functions.

- added category ordering information for FAQ.

- added GetCurrentDateTime(), FormatDate() and FormatDateStamp() functions to ease various date and time formatings.

- added new date formats and created time formats.

- important source code upgrade in the admin/inc/config[n].inc scripts.

- added lookup for png and bmp images in IsImage() function.

- removed style sheet CSS from inc/hpage.inc and put it in a new inc/style.inc file.

- corrected a bug in the search script which would always say that articles found were in the 1st box (thanks Pavol)

- for faster output, pages are compressed before being sent to the web browser (for websites running PHP >= 4 and for web browsers which are able. to work with compressed pages)

- secured command line parameters (Secunia Advisory: SA9621 about the lng parameter).

- added 3 additional free boxes (by Nicolas Alves and Laurent Duveau)

- made many changes in all scripts to decrease size of database files

- NAME CHANGED : MINIPORTAIL BECOMES GUPPY

v2.3p1 - 03 August 2003

- corrected bug in which next page link button in mobile news was wrong thanks airhero.

- bug correction: replaced include("minieditor.inc") by include("inc/minieditor.inc") in admin.inc (thanks Eddie).

v2.3 27 July 2003

- added dynamic/list menu option.

- user news post: even if written in one language, put the news in both languages (until the webmaster translates it).

- added three new smileys themes.

- added two new icons themes (thanks B@lou and Florent).

- added case of only ONE news displayed on homepage (thanks Laurent Roger).

- added direct jump to pages (by Nicolas Alves and Laurent Duveau).

- changed from "tutoiement" to "vouvoiement" in the French language strings thanks Realia).

- minor font and text formating changes in search, quotations, general pages (thanks Realia and Nicolas)

- fixed security issue (thanks frog-m@n, Secunia Advisory: SA8750).

- fixed install script bug that would not launch home page when install files are erased.

- added a "no logo" option.

- WYSIWIG editor highly upgraded (by Nicolas Alves).

- added a calendar box (by Nicolas Alves and Laurent Duveau).

- option for choosing the number of items to display in news, forum threads, links, downloads, FAQ and Guestbook moved from Site Config to Services Config."

- homogenized central and lateral boxes rendering.

- bug correction: accepts emails like "firstname-lastname@site.com (accept "-" character). The check for the e-mail is not as exhaustive as it used to be but it checks for most bad input cases.

- added quotations style management (by Nicolas Alves and Realia).

- added forms style management (by Nicolas Alves).

- removed link on counter's numbers in counter box.

- changed from unformal "tu" to polite "vous" in the French version of this readme.txt file (by Realia)

- added a first level of user preferences management by cookie.

- added US date format management (thanks to Julien and to Realia for relaying the information).

- added choice for letting visitors submit news or not.

- added search focused on one category (forum, articles, news...).

- added a manual maintenance form for changing characteristics of a document (creation and modification dates, author and e-mail).

- added basic editor capabilities for user input and in admin area (by Nicolas Alves and Laurent Duveau).

- - smileys are now inserted at cursor position and no more at the end of text.

- removed automated ErrorDocument management in .htaccess file for Apache servers (thanks Michel).

- upgraded WriteMailTo() function for better SPAM protection (thanks Michel).

- bug fix, papers from right articles boxes would not appear when left articles boxes was not active.

- developed a miniPortail extension adapted to Palm display capabilities (thanks Palmipod). Furthermore, this light display version is adequate for our blind friends who can now easily read a miniPortail web site (thanks Hubert).

- images in side boxes are now always seen even if in the admin area (thanks Realia).

- added charset meta tag in the HTML print friendly version of articles (thanks Pavol).

- upgraded the installation / migration script.

- added two new sample external scripts which integrate with miniPortail (by Realia).

- if no category for an article, remove parenthesis in print friendly version of the article (thanks Realia).

- added an external script example integrated with miniPortail which displays the news of the aldweb Site.

- changed the order of Admin icons from a French alphabeutical sorting to one wanted to be more logical. (thanks B@lou)

v2.2 - 22 April 2003

- bug fix: "Times New Roman, serif" instead of wrong "Time New Roman, serif" (thanks Realia).

- bug fix: now current hour stats are also reset when required in Admin.

- added thread message being answered to for reminder in answer form (by Nicolas Alves).

- let webmaster decide how to place side boxes (by Nicolas Alves and Laurent Duveau).

- added another box for articles in order to split articles in 2 main categories (by Nicolas Alves and Laurent Duveau).

- added a new icons theme (by Roger).

- added a new counter theme (by César).

- added a smileys theme management (by Nicolas Alves)

- splitted language file in two (admin and web) for faster pages loading.

- small update of the layout for e-mail sent to the webmaster in case of new thread.

- small bug fix "inc/img/trans.gif" instead of "/inc/img/trans.gif" in inc/boxhome.inc file (thanks Michel).

- - replaced [P][CENTER] by [P align="center"] otherwise IE takes the default font instead of the required one (Thanks Michel).

- added option for choosing the number of items to display in news, forum threads, links, downloads, FAQ and Guestbook.

- upgraded CompteVisites() function to have it compliant to the miniPortail database, as well as all source code pieces thatqui accèdent aux fichiers ipstats.dtb et ippoll.dtb.

- changed source code for all accesses to the foreach() PHP function for compatibility with PHP3 as foreach() only works with PHP4.

- - changed source code for all accesses to the pathinfo() PHP function for compatibility with PHP3 as pathinfo() only works with PHP4.

- renamed all $service[] variables to $serviz[] (for strange compatibility problems with some local Linux, the Mandrake one if I remember well).

- automatic directory change in Upload area (no more need to press a button for changing of directory).

- click on text formatting tag copies tag to text in user post form.

- new color selector in Site Config (by Nicolas Alves).

- added a WYSIWYG editor for content in Admin area (by Nicolas Alves, who worked from a script basis whose original author is very badly unknown => we would have loved to ask for his approval and to thank him!).

- some cleanup in the images organization has been made.

- rewrote the install script which is now a real clean install and migration script.

v2.1 - 10 March 2003

- fixed bug where Site URL and Meta Identifier URL were inverted.

- fixed a bug in which Javascript functions could lead to errors if single quotes were passed to these Javascript functions.

- click on smiley copies smiley to text in user post form (by Nicolas Alves).

- management of 40x errors (for Apache web server only).

- added a counter theme management (by Nicolas Alves).

- added a color management for the side scroll bar (by Nicolas Alves).

- focus on first field in input forms (by B@lou & Laurent Duveau).

- fully rewrote the database integrity check and repair module.

v2.0 - - 27 February 2003

- bug correction of the data validation in the user input forms.

- set background color to transparent for the About and DB Check icons.

- added metatags management (by Nicolas Alves & Laurent Duveau).

- added fixed background image option (thanks Maxrebo).

- site logo is no more a must, you can set up a site without a top left image logo now.

- the admin cookie is now automatically un-activated when closing the browser, no more a 24 hours survival duration (thanks Marc).

- photos: corrected image file size calculation and merged the two boxes for photo displaying into one single box.

- added three new icons themes, one was made by B@lou.

- upgraded the Icon themes management (thanks Alex).

- added auxiliary indexes rebuild in index database rebuild.

- added freebox and photo search.

- added links to jump back in thread and forum (by Alex).

- removed input form on postguest form return & added back button to it.

- added a Go back to Top of page link at bottom of pages.

- added slogan display (thanks ßugs).

- added a more sophisticated photo display management (with photo description).

- added fortopic.php log (I forgot it in v1.9) and photorama.php log in Stats Log.

- added a system for e-mail addresses encryption (protection against SPAM) even though they appear fine on the browser's window.

v1.9 - 11 February 2003

- added update of statsbk.dtb and reset of ipstats.dtb when the visits counter value is manually modified.

- in the admin services selection, category for forum presentation was slighly changed for showing better that it is a sub option of Forum area.

- forum category added in the supervision e-mail sending.

- a few minor bugs were fixed.

- added a banners management.

- added an extra box (so called 'free box').

- added an 'about' popup window.

- database integrity check tool.

- added an icons theme management.

v1.8 - 05 February 2003

- changed the title's text for forum thread in admin (the text was not correct).

- title removed from Forum answers (was not needed and increased database size).

- corrected bug where search result to forum thread would go in error.

- put back in admin/inc/img/ the smileys that were removed by mistake in version 1.7.

- bug correction in the eMailTo() function call, in counter box and visitors posting.

- corrected bug in which forum, news or guestbook modification by admin would show poster's e-mail all the time (even if he checked that he did not want his e-mail to appear!).

- added forum topics.

- show news on homepage only if the number of news to show is higher than 0.

- added charset management (for languages like Arabic...).

- upgraded language change in admin (in case main language is changed and no alternative language is chosen.)

v1.7 - 28 January 2003

- fixed a forum page n/m bug where the m returned value was false in version 1.6.

- fixed display bug of pages right column.

- added box Recommend to a Friend.

- added category ordering information for links and downloads.

- upgraded the migration script for version 1.7.

- added 2 sample external scripts that integrate with miniPortail (file/speed.php and file/mind.php).

- upgraded links to smileys in the Special box and images in page footer when scripts are run from file/ directory.

- fixed bug that main language news title would popup all the time.

- switch language without going back to index page (thanks Alex).

- changed a PHP function call to have miniPortail compatible with PHP version < 4.1.0.

- - "invisible" bug fixed in search box

v1.6 - 23 January 2003

- new languages available: Spanish and Dutch

- improved translation: English

- added a popup window to help choosing RGB colors

- slightly updated the supervision e-mail formating sent for guestbook.

- added news publishing option for external sites (please refer to getmpnews.php script file).

- added transition effect option between pages (for IE browser only, no effect on the other browsers).

- display of 10 forum messages rather than 5.

- added option to let poster choose to hide or show his e-mail address on the site.

- corrected bug that would not save ICQ number when it was entered.

- added timer "page loaded in n.nn seconds" information.

- wrote a migration script from version 1.5 to version 1.6.

Back to contents

v1.5 - 10 January 2003

- replaced the Lynx and WebTV browsers by iCab and DA.

- upgraded the counter by creating a backup of its value in case it would be accidentaly deleted.

- replaced Hits by Visitors in the Stats module

- URL of guestbook posters now opens in a new browser's window

v1.4 - 07 January 2003

- upgraded the sent text in the supervision e-mails (stripslashes) for easier reading.

- the counter supervision e-mail is now only sent one time.

- upgraded the Stats module by creating one log file per hour (to avoid loosing too much data in case this file was accidentaly erased)

- corrected bug in hits capture.

v1.3 - 06 January 2003

- bug correction in the Stats module (news, links, photos, poll, search and stats were counted as index)

- corrected version number of miniPortail in the header of the readme.txt file

- added supervision services (the web site sends e-mails to the webmaster)

- use databases thread.dtb and forum.dtb introduced with v1.2 for quicker work on forum threads posts

v1.2 - 05 January 2003

- upgraded the displaying speed of all pages by creating an intermediate table that holds the information needed by the articles box

- accelerated the displaying speed of the Forum option

- fully rewrote the Statistics option that prooved to be much too slow for a web site that would have more than about 10 visitors per day.

v1.1 - 02 January 2003

- patch to avoid users to add records simultaneously on the same files (main problem found in the Stats)

- Users Post forms' look & feel upgraded (was not be beautiful for screen resolution inferior to 1024x768)

v1.0 - 30 December 2002

- initial release

Back to contents

Upgrade v.4.6.19: Corrector 2012-03-30