Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Editor Popups failing
#1
Sad 
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?
Reply
#2
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"
My Github Repos: Github
Website: DigiMute
Reply
#3
Is this in chrome? Have you tried another browser?
NEW: SA Admin Toolbar Plugin | View All My Plugins
- Shawn A aka Tablatronix
Reply
#4
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
Reply
#5
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?
|--

Das deutschsprachige GetSimple-(Unter-)Forum:   http://get-simple.info/forums/forumdisplay.php?fid=18
Reply
#6
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
Reply
#7
(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
Reply




Users browsing this thread: 1 Guest(s)