GetSimple Support Forum

Full Version: Editor Popups failing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
After my installation, I noticed the editor is not working correctly. When I try to insert a link or an image with the buttons, the screen is black for a very short time (like 0.1 seconds); Then there happens nothing. If I look at the demo, I should get a pop-up to choose etc.

I am new to this CMS so I don't know what data I need to give for help. So please inform me when I need to post the contents of a file... Can anyone help me?
make sure the URL you go to for the admin is the same as what you have in the settings page.

e.g. make sure they are not like "www.whatever.com" & "whatever.com"
Is this in chrome? Have you tried another browser?
The URL at the admin panel is the same as the URL in the browser. (Except my browser doesn't display the 'http://' part but that wouldn't mind...) Is there some hidden site URL, because I indeed changed the domain once?

It didn't work in all mayor browsers.

Thanks for your fast reply. Smile
please check the URL which you entered in the settings and check the .htaccess-file

maybe you did not update the RewriteBase

Code:
# Usually it RewriteBase is just '/', but
# replace it with your subdirectory path
RewriteBase /getsimple/

is it only the editor which fails or do pretty URLs fail as well?
U use Nginx as webserver, so as far as I know it doesn't support .ht* files. This is my website configuration and the URL at the admin panel is the same as the website URL.
Code:
server {
listen 80; ## listen for ipv4

server_name XXX.com;

access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;

root /srv/www/public_html;

location / {
include /etc/nginx/mime.types;
root /srv/www/public_html;
index index.php index.html index.htm;
if (-f $request_filename) {
        rewrite ^(.+)$ /index.php?id=$1 last;
}
}

location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /srv/www/public_html$fastcgi_script_name;
include fastcgi_params;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_intercept_errors on;
fastcgi_ignore_client_abort off;
fastcgi_connect_timeout 60;
fastcgi_send_timeout 180;
fastcgi_read_timeout 180;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k;
fastcgi_busy_buffers_size 256k;
fastcgi_temp_file_write_size 256k;
}

## Disable viewing .htaccess & .htpassword
location ~ /\.ht {
deny all;
}

location ~ /(data|backups|plugins){
deny all;
}

}

But even this should work with pretty URL's. They don't. Sad
(2013-03-13, 00:52:44)timo777 Wrote: [ -> ]But even this should work with pretty URL's. They don't. Sad

if you need a working well tested nginx config, working with pretty urls and more, give a look here: http://get-simple.info/forums/showthread.php?tid=1269