summerz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: frontend visual edtor doesn't work to authorsi figured it out few days later.
i didn’t load wp_footer() on my page for authors because i don’t support the admin top bar for authors usually this site.
i added wp_footer() and it works great.
i just wanted to know wether there is another option but it works anyway now.
Forum: Networking WordPress
In reply to: 404 error at wp-signup.php (on Windows)my web.config is like this.
====
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength=”2147483648″ />
</requestFiltering>
</security>
<rewrite>
<rules>
<rule name=”WordPress Rule 1″ stopProcessing=”true”>
<match url=”^index\.php$” ignoreCase=”false” />
<action type=”None” />
</rule>
<rule name=”WordPress Rule 2″ stopProcessing=”true”>
<match url=”^wp-admin$” ignoreCase=”false” />
<action type=”Redirect” url=”wp-admin/” redirectType=”Permanent” />
</rule>
<rule name=”WordPress Rule 3″ stopProcessing=”true”>
<match url=”^” ignoreCase=”false” />
<conditions logicalGrouping=”MatchAny”>
<add input=”{REQUEST_FILENAME}” matchType=”IsFile” ignoreCase=”false” />
<add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” ignoreCase=”false” />
</conditions>
<action type=”None” />
</rule>
<rule name=”WordPress Rule 4″ stopProcessing=”true”>
<match url=”^(wp-(content|admin|includes).*)” ignoreCase=”false” />
<action type=”Rewrite” url=”{R:1}” />
</rule>
<rule name=”WordPress Rule 5″ stopProcessing=”true”>
<match url=”^([_0-9a-zA-Z-]+/)?(.*\.php)$” ignoreCase=”false” />
<action type=”Rewrite” url=”{R:2}” />
</rule>
<rule name=”WordPress Rule 6″ stopProcessing=”true”>
<match url=”.” ignoreCase=”false” />
<action type=”Rewrite” url=”index.php” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>=============
but i solved this problem.
i just to try make all my multisites to Mature and suddenly /wp-signup.php works.
it’s weird but working now.
(fyi: my /wp-login.php and /wp-admin/ have been working fine)
Ipstenu, thank you for helping me. ??
Forum: Networking WordPress
In reply to: 404 error at wp-signup.php (on Windows)it is windows server. so don’t have .htaccess.
Forum: Networking WordPress
In reply to: 404 error at wp-signup.php (on Windows)yes there are wp-signup.php and wp-login.php too.
when i try to access wp-login.php, it automatically redirects to wp-signup.php and goes 404 error.
i don’t know why…
any ideas?