Search found 32 matches

by delan10
Sat May 23, 2015 9:37 am
Forum: Addons and Plugins
Topic: Fotogalerie : pictures displayed in wrong order
Replies: 3
Views: 2073

Re: Fotogalerie : pictures displayed in wrong order

Try following in index.php of FotoGalerie:

Code: Select all

Code: Select all
         // search for:
        ... 
        $groups=fogaRFile($fngroup); 
        $files=fogaRFile($fnfile);

        rsort($files); // add this new line
        ...
Thank you very much, this does exactlly what I wanted :)
by delan10
Fri May 22, 2015 4:59 pm
Forum: Addons and Plugins
Topic: Fotogalerie : pictures displayed in wrong order
Replies: 3
Views: 2073

Fotogalerie : pictures displayed in wrong order

Hello I'm using the Fotogalerie plugin (v4.0) for some of my websites, which I find very usefull. But is there a way to display the pictures in chronological order ? Indeed I would like the last picture uploaded to be shown in first position in the album (and not last as by default). What piece of c...
by delan10
Thu Feb 12, 2015 7:55 pm
Forum: References
Topic: Portfolio
Replies: 3
Views: 5927

Re: Portfolio

Yes, shame on me :)
I still have to update to a more recent version of cmsimple.
Cheers
François
by delan10
Mon Mar 03, 2014 3:47 pm
Forum: Addons and Plugins
Topic: [HELP] Responsive image slider
Replies: 12
Views: 4652

Re: [HELP] Responsive image slider

Hello

Another option to consider : http://www.wowslider.com
Easy to use with cmsimple and highly customizable.
by delan10
Thu Jan 09, 2014 4:55 pm
Forum: References
Topic: Portfolio
Replies: 3
Views: 5927

Portfolio

Hello everybody I’ve been using cmsimple as a “pro” for 5/6 years now. My business website : http://www.azertix.fr Some projects made for my customers (with cmsimple of course !) : http://www.meubles-amiens-domicile.fr/ http://www.aeroclub-picardie-amiens.com/ http://www.cydprod.fr/ http://www.lefev...
by delan10
Sat Nov 02, 2013 9:35 am
Forum: Editors
Topic: Impossible to edit
Replies: 25
Views: 20918

Re: Impossible to edit

OK thank you, I'll test it soon.
by delan10
Fri Nov 01, 2013 1:36 pm
Forum: Editors
Topic: Impossible to edit
Replies: 25
Views: 20918

Re: Impossible to edit

I will definitely consider the option of using the lastest version of CMSimple for my future website projects.
Do I have modifications to make for my actual templates to be compatible with xh_1.5.x or 1.6 ?
by delan10
Thu Oct 31, 2013 12:56 pm
Forum: Editors
Topic: Impossible to edit
Replies: 25
Views: 20918

Re: Impossible to edit

Wonderful ! It works like a charm ! Thank you very much :) Furthermore you might need to do the following modifications (it seems they are sufficient to use the FCKEditor to edit the page contents): Code: Select all // FCEditor/fckeditor_php5.php, line 159 $HtmlValue = htmlspecialchars( $this->Value...
by delan10
Wed Oct 30, 2013 4:45 pm
Forum: Editors
Topic: Impossible to edit
Replies: 25
Views: 20918

Re: Impossible to edit

Ah, I see. I assume this is caused by a slight change of htmlspecialchars() and htmlentities(): in PHP 5.4 the $encoding parameter was changed to default to 'UTF-8'. The result of calling htmlspecialchars() on a string containing invalid UTF-8 byte sequences will be an empty string. See http://cmsi...