wpbct7
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments on same lineRemove <h6> tag or replace it with
<strong></strong>Forum: Installing WordPress
In reply to: Installing behind a firewallWorpdress redirects users to Site Url and it seems that your WP Site Url is http://localhost. You should change it to the name of your router and configure port forwarding on the router (http://en.wikipedia.org/wiki/Port_forwarding)
Forum: Fixing WordPress
In reply to: Rewrite Rule syntax helpYour rewrite rule should look like:
RewriteEngine On RewriteBase /blog/ RewriteRule category/blog/\?cattag=events events/ [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L]You can find more examples here:
http://httpd.apache.org/docs/2.0/rewrite/rewrite_guide.htmlForum: Fixing WordPress
In reply to: PHP Errors: [function.is-writable] – Help!This code is related to database error logging, but such errors should not be raised when application works properly. Anyway, error logging will not work because error_log is outside of your home folder.
Another option is to add error shield operator before is_writable as follows:
if ( !empty($log_file) && ('syslog' != $log_file) && !@is_writable($log_file) )This also should eliminate warning.
Forum: Themes and Templates
In reply to: multi installation with shared themes>how to make a sybolic link from many folders to one link…
Each symbolic link is created separately:
/home/user1/webs/word_press_folder_installation/wp-content/themes is a symbolic link to
/home/user0/shared/themes/home/user2/webs/word_press_folder_installation/wp-content/themes is a symbolic link to
/home/user0/shared/themesetc.
Forum: Fixing WordPress
In reply to: PHP Errors: [function.is-writable] – Help!Set the error_log option to some file in your home folder.
Something like:@ini_set('error_log', '/home/axxxx/error_log');in index.php
Forum: Themes and Templates
In reply to: multi installation with shared themesUse symbolic links on Linux and junctions on Windows:
http://en.wikipedia.org/wiki/Symbolic_link
http://en.wikipedia.org/wiki/NTFS_junction_pointForum: Installing WordPress
In reply to: Uninstall to Fresh InstallationFantastico saves the information about installed software in its folder. You may try to search for this entry and remove it manually.
Of course, you can install WP without Fantastico.
Forum: Themes and Templates
In reply to: Grunge theme color code errorIt seems that they will not work together because of javascript includes: this plugins includes jquery an prototype – mixing these libraries on one page requires special style of coding. You can contact theme developer and ask him to fix this feature.
Forum: Fixing WordPress
In reply to: One blog on multiple serversIf you want to have two identical WordPress installations on two physical servers with different mysql instances you need to mirror these database servers except the options table.
http://dev.mysql.com/tech-resources/articles/mysql-cluster-for-two-servers.html
Forum: Installing WordPress
In reply to: Install questionWeb address (http://domain/folder/file?a=1) consists of four sections:
schema (http), domain name (domain), path (/folder/file) and query string (?a=1). The / path means root, so the “root of your domain” is http://domain/I have not understood “it’s own sub directory” – could you please provide a context of this phrase?
Forum: Fixing WordPress
In reply to: Got WordPress running locally, now I need it on my siteIf you already registered web hosting account and it use cPanel, then you can use Fantastico to install it.
If you have not Fantastico, use manual installation instruction on this site.
If you have not hosting account, purchase it: http://ww.wp.xz.cn/hosting/
Forum: Installing WordPress
In reply to: No wp-admin folder created in installHow you unzip it and which files it contains?
Forum: Installing WordPress
In reply to: How to swap, or transfer WP to main domainAs I see in requests, WordPress successfully redirects the browser from http://raygc1.com/milart/ to http://raygc.com/milart/ but then http://raygc.com/milart/ page redirects to http://87.248.13.200/in.html?s=hg_err which indicates that error occurs because of .htaccess configuration file or something in WordPress.
Could you please post here the .htaccess file for analysis?
template should be saved to wp-content/themes