zetxek
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 500 Internal Server Error on any single post link since weird editContact the administrators of your server, it seems it’s running out of memory…
Forum: Fixing WordPress
In reply to: 2 wordpress installation on same serverI solved it with this code in the root .htaccess:
# To make the blog appear always without www
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.bloqnum\.com$ [NC]
RewriteRule ^(.*)$ https://bloqnum.com/$1 [R=301,L]# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
# Redirect FeedBurner to your own Feed
RewriteBase /
RewriteRule ^feedburner_675044/?$ /feed/ [R,L]
RewriteCond %{HTTP_USER_AGENT} ^FeedBurner.*$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# These Rules redirect all feed Traffic to FeedBurner
RewriteBase /
RewriteCond %{QUERY_STRING} ^feed=(feed|rdf|rss|rss2|atom)$
RewriteRule ^(.*)$ https://feeds.feedburner.com/Bloqnum [R,L]
RewriteRule ^(feed|rdf|rss|rss2|atom)/?(feed|rdf|rss|rss2|atom)?/?$ https://feeds.feedburner.com/Bloqnum [R,L]
RewriteRule ^wp-(feed|rdf|rss|rss2|atom).php https://feeds.feedburner.com/Bloqnum [R,L]
# These are the standard WordPress Rules
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>And this one in the folder of the 2nd wordpress:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /folder/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /folder/index.php [L]
</IfModule>
Note: you have to change folder for the folder’s name where you have installed the 2nd wordpress.Forum: Fixing WordPress
In reply to: 2 wordpress installation on same serverAs wordpress was not updating my .htaccess, I’ve done it by hand with the following code found at this thread https://www.ads-software.com/support/topic/93953?replies=6 :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /folder/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /folder/index.php [L]
</IfModule>And it’s solved now, at least it seems at the moment.
Forum: Fixing WordPress
In reply to: 2 wordpress installation on same serverYeah, they’re in different databases for sure:
define(‘DB_NAME’, ‘zetxek_wrdp2’); // The name of the database
define(‘DB_NAME’, ‘zetxek_wrdp1’); // The name of the databaseThe root .htaccess worked OK until I installed the 2nd blog, I didn’t notice any problem. But I don’t know if there can be any misconfiguration with it, due to the symptoms I describe (the “pretty” permalinks won’t work and cannot call some functions).
Anyway, I noticed something extrange. When I change the permalink structure, WordPress is suppossed to create (or modify) the .htaccess in the blog directory, right? Because when I changed it, wordpress said the changes were made but it made no changes to the file…
Forum: Fixing WordPress
In reply to: 2 wordpress installation on same serverUhm, yeah, twice blogs have the same prefix, but they are in different databases (wrdp1 and wrdp2, as I installed them with cpanel fantastico scripts and then updated them by myself).
As I have them in seperate databases, I thought they should not mess with the other installation…
Forum: Fixing WordPress
In reply to: 2 wordpress installation on same serverUhm, I also think the problem is in the .htaccess. Will it be technically possible to make the two installations coexist, arranging the .htaccess of the root directory?
By the way my root .htaccess is the following:
# To make the blog appear always without www
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.bloqnum\.com$ [NC]
RewriteRule ^(.*)$ https://bloqnum.com/$1 [R=301,L]# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
# Redirect FeedBurner to your own Feed
RewriteBase /
RewriteRule ^feedburner_675044/?$ /feed/ [R,L]
RewriteCond %{HTTP_USER_AGENT} ^FeedBurner.*$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# These Rules redirect all feed Traffic to FeedBurner
RewriteBase /
RewriteCond %{QUERY_STRING} ^feed=(feed|rdf|rss|rss2|atom)$
RewriteRule ^(.*)$ https://feeds.feedburner.com/Bloqnum [R,L]
RewriteRule ^(feed|rdf|rss|rss2|atom)/?(feed|rdf|rss|rss2|atom)?/?$ https://feeds.feedburner.com/Bloqnum [R,L]
RewriteRule ^wp-(feed|rdf|rss|rss2|atom).php https://feeds.feedburner.com/Bloqnum [R,L]
# These are the standard WordPress Rules
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>Forum: Fixing WordPress
In reply to: Cannot login – getting an image in wp-loginUhm, as i cannot login i will try to delete selectively some plugins and then my theme (still it had not given me problems, but lately i’ve installed a pair of new plugins, i’ll start taking them out).
Update: I’ve deleted the new plugins i had installed and it has worked ok… Thanks, Yosemite.
Just in case they cause problems, the 3 plugins were the cocomment system to make the blog “trackable”, dbmanager (a plugin to manage the database from the admin panel), and organizer (a file organizer). I deleted some trash files i had from a previous test of “Edit Comments 1.0″… I’ll try to find which of those plugins caused the trouble, but anyway thanks for the tip ??
Forum: Fixing WordPress
In reply to: Cannot login – getting an image in wp-login***Update: when i go to a non-existent page (like the mentioned before) sometimes i yes get a 404 error managed by wordpress (Error 404 – No se encuentra el archivo), but other times i get that blank jpg.
Forum: Fixing WordPress
In reply to: Cannot login – getting an image in wp-loginI’ve tried to do it and didn’t solve the problem ??
I’ve observed that if i try to go to a non existent page (like https://bloqnum.com/thisdoesnoexist.php , for example) the behaviour is the same that if I try to go to wp-login.php … should’t i get the “Page not found” error?
I can’t understand the behaviour my WordPress is having ??