Forum Replies Created

Viewing 10 replies - 76 through 85 (of 85 total)
  • Plugin Contributor Emil Gustafsson

    (@gesen)

    Hi rwatuny,

    Images with special or international characters in the filenames sometimes can not be displayed by the browsers. That’s why we developer this plugin so that the filenames of images gets cleaned when uploaded to the media library.

    Other file types like PDF’s, that are not embedded in a web page like images, are usually not a problem for the browsers.

    However, you can use the plugin filter to change the set of mime types that are cleaned when uploaded. In an upcoming release of the plugin we will also add a settings page for easier selection of which mime types are cleaned when uploaded.

    Plugin Contributor Emil Gustafsson

    (@gesen)

    When using the filter you override the default mime types. That gives you the possibility to only clean the filenames for the file types you want.

    I will clarify this in the description.

    What does the multisite settings in you wp-config.php look like?

    /* Multisite */
    define( 'WP_ALLOW_MULTISITE', true );
    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', false);
    define('DOMAIN_CURRENT_SITE', 'example.com');
    define('PATH_CURRENT_SITE', '/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);

    I’ve seen that pesky redirect error message before, but can’t seem to remember how it was solved.

    Anyway, most of the multisite networks I’ve installed is set up using subdomains. However, the most recent network is installed using the subdirectory setup. I compared your htaccess to mine and they are pretty much the same up until the following lines:

    Yours:

    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) trecalt/$2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ trecalt/$2 [L]

    Mine:

    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]

    Notice the difference near the end of the lines?
    Do you have WordPress installed in a directory called “trecalt” in your root directory?

    Sounds strange. Do you have phpMyAdmin or some other way to get into the database? Can you log in to verify that the database looks ok?
    I’ve installed numerous multisites and never run into this problem.

    Plugin Contributor Emil Gustafsson

    (@gesen)

    Thanks for the review and suggestion!

    We were aiming more at developers in the initial release and therefore included the filter. I think we will add a settings page in the next release.

    Then I recommend you try to get help from GoDaddy or the ones who developed the theme.

    I don’t have much experience from WordPress on IIS7, but from what I understand you have to add some configuration to you web.config file, something like this:

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
    <system.webServer>
    <rewrite>
    <rules>
    <rule name="WordPress Rule" stopProcessing="true">
    <match url=".*" />
    <conditions>
    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
    </conditions>
    <action type="Rewrite" url="index.php?page_id={R:0}" />
    </rule>
    </rules>
    </rewrite>
    </system.webServer>
    </configuration>

    If you don’t have the possibility to edit you config file you can try using this as your permalink setting: /index.php/%year%/%monthnum%/%day%/%postname%/ However, that will make your permalinks start with /index.php/ followed by year, month, day and post name.

    Did you follow all the steps in this guide Create A Network?

    Hi,
    Do you know what theme your are using?
    Did you develop the theme by yourself?

Viewing 10 replies - 76 through 85 (of 85 total)