csilveira
Forum Replies Created
-
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Won't work with WP 3.5Resolved. Upgrading to premium 1.8.4 fixed the issue. Works with WP 3.5.
Forum: Fixing WordPress
In reply to: 404 pages for more than one wordpress install/site.CORRECTION:
Under NOTE
AllowOverride None
under the .htacess instance of your httpd.conf file is supposed to be set toALL
Forum: Fixing WordPress
In reply to: 404 pages for more than one wordpress install/site.UPDATE:
Switching
ErrorDocument 404 /othersite/404.html
&/404.html
with:index.php?error=404
for both will call for your themes 404 custom page. This will be a better solution so you won’t have to update your 404 every time you change your theme.Forum: Fixing WordPress
In reply to: Permalinks without index.phpTry creating a .htaccess file. in that file put this:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Save the file
.htaccess
(make sure the “Save as type:” is set to All file(s)) upload it to your WordPress directory. See if that works.Forum: Fixing WordPress
In reply to: Cannot switch to “pretty” permalinkshttps://www.ads-software.com/support/topic/354612?replies=1
This might be the answer you need.
Forum: Fixing WordPress
In reply to: Background white pleaseCan’t you just plug in
background-color:#fff;
in your HTML rule of your CSS? EX:html { background-color:#fff; margin: 0px; min-height: 100%; }
Forum: Fixing WordPress
In reply to: index.php in ugly permalinkshttps://www.ads-software.com/support/topic/354612?replies=1
Here is how to get around https://www.example.com/index.php/%postname%
Forum: Fixing WordPress
In reply to: Permalinks other than default not working without index.phphttps://www.ads-software.com/support/topic/354612?replies=1
Here is how to get around https://www.example.com/index.php/%postname%
Forum: Fixing WordPress
In reply to: How to use Permalinks without /index.phphttps://www.ads-software.com/support/topic/354612?replies=1
Here is how to get around https://www.example.com/index.php/%postname%