[SOLVED] [fckphplist] Insert image: no "Browse Server" button

I installed PHPList version 3.2.4.
When I try to insert a picture in a text, it does not appear the “Browse Server” button .

I can not choose / upload a photo.

In another installation the button appears

How can I do ?
Thank you

I found the solution :slight_smile:

  1. I created the folder “upload images” in the installation root of phplist: in my case "public_html/newsletter/uploadimages".

  2. I modified the file

    public_html/news/config/config.php

inserting rows

BEFORE BEFORE BEFORE BEFORE BEFORE BEFORE

<?php

/*

* ==============================================================================================================
* 
* 
* The minimum requirements to get phpList working are in this file. 
* If you are interested in tweaking more options, check out the config_extended.php file
* or visit http://resources.phplist.com/system/config
* 
* ** NOTE: To use options from config_extended.php, you need to copy them to this file **
* 
==============================================================================================================

*/

AFTER AFTER AFTER AFTER AFTER AFTER
<?php

/*

* ==============================================================================================================
* 
* 
* The minimum requirements to get phpList working are in this file. 
* If you are interested in tweaking more options, check out the config_extended.php file
* or visit http://resources.phplist.com/system/config
* 
* ** NOTE: To use options from config_extended.php, you need to copy them to this file **
* 
==============================================================================================================

*/


define("USEFCK",0);
define("FCKIMAGES_DIR","/newsletter/uploadimages");
define('UPLOADIMAGES_DIR',"/newsletter/uploadimages");

and now everything is working properly
I hope this can help other :slight_smile:

1 Like