tzkmx
Forum Replies Created
-
Forum: Themes and Templates
In reply to: remove site titleA quick and dirty way would be add this rule in the style.css file of the theme:
h1.site-title { display: none; }
Forum: Fixing WordPress
In reply to: Twenty 11 : Footer messed upSeems like that is the line you should look for the syntax error in your file. That’s all we can say with the info you are sharing.
Forum: Your WordPress
In reply to: Hi, this is my site. Any feedback?Nice theme and selection of photos, however the yellow square it’s put above your logo when window is resized. I think solving that bit, will be a nice too look site in mobile devices! Nice work!
Forum: Fixing WordPress
In reply to: WordPress email welcome messageI think that lives in the database, no sure about where, maybe wp_options?
Forum: Fixing WordPress
In reply to: How to Stop 301 Redirects And Remove a Dead Diamond PostLooks like you are using a redirection plugin, I curled your linked URL and it returns a 200 code (that’s fine), then removed the last ‘e’ and it returns a 301 code (permanent) redirection to your linked URL (the one with loved-one/ at the end).
Forum: Fixing WordPress
In reply to: Let People Upload Images To My MediaLibraryA little bit of more effort searching for tags?
Forum: Fixing WordPress
In reply to: Custom htaccess rulesWhy are you putting again /fca/ in the WP rules?
Forum: Fixing WordPress
In reply to: .htaccessI don’t know exactly how that plugin works but, are you sure the rules should go after WP rules? I think they should go before
Use this rewrite rule for changing spaces to dashed before passing that to WP
After Rewrite Engine on:
RewriteRule (.*)\ (.*) $1-$2
It will cycle through all the spaces contained in the URL used by the visitors, until there is no more spaces.
Forum: Alpha/Beta/RC
In reply to: 3.5.1 Error logs for rewrite in MultisiteWhich version of Apache are you running?
Forum: Fixing WordPress
In reply to: Which are the right settings for php memory?1G seems like a lot for WP. Try with 128M I run two networks and nobody has complained about memory limit errors so far ??
Oh! and max_execution_time is about seconds; 3600, again it’s too much, danger of DoS on scripts going bad at runtime.
Forum: Networking WordPress
In reply to: Change URL of sub domain on MultisiteAbout the rewrite rule, if your change is something as easy as you posted first (from cat->mouse same domain and /URLs…), cPanel offers a fairly easy way to configure “wildcard redirection”. But what they do is just including a redirection like this in .htaccess:
RewriteCond %{HTTP_HOST} ^cat\.example\.com$ [OR] RewriteCond %{HTTP_HOST} ^www\.cat\.example\.com$ RewriteRule ^(.*)$ "http\:\/\/kittens\.example\.com\/$1" [R=301,L]
Edit: If you don’t need redirection with or without “www”, and just for the subdomain in question, remove the second rule and the [OR] keyword after the first one.
`Forum: Networking WordPress
In reply to: Newbie QuestionI don’t know, I’m sorry.
Forum: Networking WordPress
In reply to: Multi site not working at WP 3.5Rules and wp-config suggested by network setup does not work for you? I wonder at which degree you followed up the Codex on Create a Network page.
Forum: Fixing WordPress
In reply to: Adding a Blog to my WebsiteHave you tried with their own dedicated support forum?
Which Codex document are you using for your current setup?