Forum Replies Created

Viewing 15 replies - 1 through 15 (of 26 total)
  • Thread Starter someonehere15

    (@someonehere15)

    That is certainly strange. Normally I didn’t do almost any customization at all. Virtualbox, install Ubuntu server 14.04, easyengine, and worked. When I updated the site with the wpsc option, it didn’t anymore. Unless it’s a dyndns problem I don’t know what else. I use noip for that.

    I can’t assist at the moment because I need to finish the other stuff and the site is not in the initial state now, but maybe later.

    Forum: Plugins
    In reply to: [Glossary] Tooltip styles
    Thread Starter someonehere15

    (@someonehere15)

    To be honest, yes I may consider it, but I would have to see it first. But you should still keep a free one without a lot of limitations either way,e.g. not limit the customizer only to the paid version.

    I was also thinking some other stuff since we’re here: can you add an option to disable creating archive pages? I actually love the fact that it does, no other plugin does it, but I also use a custom page for the glossary list which is styled Same as some other indexes I have, and I can add the author list to /author/ matching the author profiles link, or /tag/, but cannot add a page to /glossary/ to serve as the main entry to it. I hope I’m clear enough. Ideally I would like to disable the archive page for /glossary/ in order to put my page, but keep the other archive pages for the glossary sub categories. Not a big problem, but just asking.

    Furthermore, also an option to change the glossary permalinks Base would be nice, e.g. if I want to change from /glossary/ to /keywords/ or something.

    Thanks again for replying.

    Thread Starter someonehere15

    (@someonehere15)

    Thank you very much.
    Just another thing:any chance you can add this to you next update, maybe as an option?
    If not, then is it at least possible to add the modification externally, e.g. as a hook, without modifying the plugin itself? I am asking because I normally want to use Code Snippets to add stuff without modifying so that it remains after the plugin is updated.

    Thread Starter someonehere15

    (@someonehere15)

    I didn’t change anything, the default settings EE configures, with the –wpsc command. I cannot check anymore now because I removed, but you just need to use that.

    Thread Starter someonehere15

    (@someonehere15)

    I was thinking you could modify the caption to add an icon or the source title, linked to the source url.
    There are some snippets for that, but they only work for the [caption] shortcode, and not the [gallery].
    I’m not sure if you can find the caption of the image from the content, since maybe it may be different for jetpack and other plugins, but if you could find a way to append the source to the caption would be great. Maybe it would be easier to modify the caption even before the content is actually loaded on the page, so that you can modify the caption before jetpack or others retrieve it.
    Another possibility may be to replace the caption field when uploading or editing an image, with a custom caption field, and when the changes are saved, the actual caption field is saved by merging the custom caption, and the link to the source. Just some ideas if you want to consider.
    Maybe I would have worked on this but my hands are very full now, because I am preparing a prototype where I need many functionalities, and image sources were one of them. Unfortunately I am under a lot of pressure so I can’t. Don’t take this the wrong way, not to demand or something, but if and only if you maybe find a workaround or a solution, possibly in the next two weeks, let me know. Otherwise thanks anyway for taking the time to answer.

    Thread Starter someonehere15

    (@someonehere15)

    And now I just tried removing WPSC from my actual site, and it worked there too. I guess I found the conflict. I don’t necessarily need to use WPSC at the moment, but if it’s not only me, maybe you need to check what the problem is.
    Or maybe EE configures it wrong, i don’t know.

    Thread Starter someonehere15

    (@someonehere15)

    Ok, so i tried first with the default settings, and it appeared to have worked, at least the short time I tried.
    But then I updated the site with EE to enable WP super cache, and after that it didn’t work again, even after disabling the WPSC plugin (just disabled from WP, not uninstalled).

    Thread Starter someonehere15

    (@someonehere15)

    It is a local VM yes. What do you mean by different server? I only have one VM with this, I don’t have multiple setups or anything.

    Thread Starter someonehere15

    (@someonehere15)

    I did, and no it didn’t change anything. I haven’t changed anything there, beside the additional domain I added. But none of that should be a problem since everything else works, even the share buttons on the frontpage. Do you need something else?

    Thread Starter someonehere15

    (@someonehere15)

    I guess you don’t use the native WP query right? Because I am able to enable search by ID with the native search, but Ajax Search does not seem to make use of that. Can you tell me a snippet or something I could use to enable this please? It would really help me.

    Thread Starter someonehere15

    (@someonehere15)

    Thanks for the quick reply.
    I tried with only twenty sixteen, but overlay didn’t work. The links below the content work so no problem there, but I wanted to use the overlay. As I said, possibly with jetpack since that’s the gallery I’m using. Is it compatible with jetpack or is it only my problem?

    Thread Starter someonehere15

    (@someonehere15)

    So it’s monday again. Any chance you can help me please? I am still desperate about finding a solution for this. No idea why it’s not working.

    Thread Starter someonehere15

    (@someonehere15)

    just to be sure, here’s my locations.conf file too, although this is configured by EE and replaced on updates:

    # NGINX CONFIGURATION FOR COMMON LOCATION
    # DO NOT MODIFY, ALL CHANGES LOST AFTER UPDATE EasyEngine (ee)
    # Basic locations files
    location = /favicon.ico {
      access_log off;
      log_not_found off;
      expires max;
    }
    location = /robots.txt {
      # Some WordPress plugin gererate robots.txt file
      # Refer #340 issue
      try_files $uri $uri/ /index.php?$args;
      access_log off;
      log_not_found off;
    }
    # Cache static files
    location ~* \.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|css|rss|atom|js|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf|swf)$ {
      add_header "Access-Control-Allow-Origin" "*";
      access_log off;
      log_not_found off;
      expires max;
    }
    # Security settings for better privacy
    # Deny hidden files
    location ~ /\.well-known {
      allow all;
    }
    location ~ /\. {
      deny all;
      access_log off;
      log_not_found off;
    }
    # Deny backup extensions & log files
    location ~* ^.+\.(bak|log|old|orig|original|php#|php~|php_bak|save|swo|swp|sql)$ {
      deny all;
      access_log off;
      log_not_found off;
    }
    # Return 403 forbidden for readme.(txt|html) or license.(txt|html) or example.(txt|html)
    if ($uri ~* "^.+(readme|license|example)\.(txt|html)$") {
      return 403;
    }
    # Status pages
    location /nginx_status {
      stub_status on;
      access_log off;
      include common/acl.conf;
    }
    location ~ ^/(status|ping) {
      include fastcgi_params;
      fastcgi_pass php;
      include common/acl.conf;
    }
    # EasyEngine (ee) utilities
    # phpMyAdmin settings
    location /pma {
      return 301 https://$host:22222/db/pma;
    }
    location /phpMyAdmin {
      return 301 https://$host:22222/db/pma;
    }
    location /phpmyadmin {
      return 301 https://$host:22222/db/pma;
    }
    # Adminer settings
    location /adminer {
      return 301 https://$host:22222/db/adminer;
    }
    Thread Starter someonehere15

    (@someonehere15)

    I also just checked passing parameters to a phpinfo file in the wp folder, and they show up in the REQUEST_URI variable, so I guess the variables are being passed?

    EDIT: I just tried disabling permalinks in wp, and now it is working. Why is that? can you tell me how to fix this? I need the pretty permalinks of course.

    Thread Starter someonehere15

    (@someonehere15)

    server {
    
        server_name example.com www.example.com soziotech.serveblog.net;
    
        access_log /var/log/nginx/example.com.access.log rt_cache;
        error_log /var/log/nginx/example.com.error.log;
    
        root /var/www/example.com/htdocs;
    
        index index.php index.html index.htm;
    
        include  common/wpsc.conf;
        include common/wpcommon.conf;
        include common/locations.conf;
        include /var/www/example.com/conf/nginx/*.conf;
    }

    this is the nginx conf for the site. As I said, I have only added the last temp domain.

Viewing 15 replies - 1 through 15 (of 26 total)