radiofranky
Forum Replies Created
-
Hi,
I was wondering if is possible to insert the code in the theme file directly instead to the post.thanks
Forum: Fixing WordPress
In reply to: is there a way to display total in a page?is there possible to have the permalink of the $page?
Forum: Fixing WordPress
In reply to: is there a way to display total in a page?thanks.
Forum: Fixing WordPress
In reply to: move to new server, all my permalink are deadI change the 000-default file and modified to this and worked.
<Directory /var/www/>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>Forum: Fixing WordPress
In reply to: move to new server, all my permalink are deadthanks. I have full access to the root.
o_module (static)
alias_module (shared)
auth_basic_module (shared)
authn_file_module (shared)
authz_default_module (shared)
authz_groupfile_module (shared)
authz_host_module (shared)
authz_user_module (shared)
autoindex_module (shared)
cgi_module (shared)
deflate_module (shared)
dir_module (shared)
env_module (shared)
mime_module (shared)
negotiation_module (shared)
php5_module (shared)
rewrite_module (shared)
setenvif_module (shared)
status_module (shared)Forum: Fixing WordPress
In reply to: move to new server, all my permalink are deadthis is my .htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Forum: Fixing WordPress
In reply to: move to new server, all my permalink are deadyes I did and restarted apache server
sudo a2enmod rewriteForum: Fixing WordPress
In reply to: 3.0.1 upgrade weired issue with permalinkhow come 2.9.2 doesn’t have this issue?
i tried to change /%postname%/ to something else but it’s still the same.I’m rolling back to 2.9.2.
Forum: Fixing WordPress
In reply to: 3.0.1 upgrade weired issue with permalinkoh..boy.. this is bad! I have about 3000 pages with number at the end.
just upgraded from 2.9.2 which doesn’t have this issue. ??Forum: Fixing WordPress
In reply to: pages and permalinks on importi’m having the same issue. When I import.
my original permanlink gets added parent title.for example,
original page before import title = “1”
parent title =” something”after the import, my “original page” permalink becomes “something-1”
this is not good… why parent title gets embedded?
thanks
Forum: Installing WordPress
In reply to: after upgrading 2.9.2 to 3.01 my database is deadi’m currently using “import” tool to import my posts from 2.9.2, 3.0.1.
the auto upgrade is not working. I checked the data and they’re all intact, but 3.0.1 won’t read it. Maybe something is missing..Forum: Installing WordPress
In reply to: after upgrading 2.9.2 to 3.01 my database is deadI’m on a local machine.
i’m not getting any error… the site is just plain empty.
in admin page, everything is 0. But during the db update it says everything is done with no error.Forum: Fixing WordPress
In reply to: how to retreat next page title?thanks. but the problem is I’m using wp_list_pages to list the pages.
Can I still use wp_link_pages?tks
Forum: Fixing WordPress
In reply to: in the mid of posting page, I get wordpress database errorthanks for your help. After doing some search on google apparently there’re a lot of wordpress user has encountered the same issue.
MYSQL time out and has gone away issue. The work around is to issue multiple query and check if the query is valid or not.
this is what I found and maybe the next person with this problem wont’ struggle.. ??
“The original workaround posted in this article (labeled “workaround-old” now) was originally conceived by openadvent. In that workaround, PHP code was added that would try to “ping” the mysql server before each query. If this ping was unsuccessful, then the workaround would try to reopen a connection to the MySQL server and then repeat the query. The connection would try to be reopened and queried 4 times before declaring a failure.
The newer workaround that I have on here now does not do this ping, giving better performance. Instead, it just tries to perform the query. If the query is successful, the PHP code continues on, and no new connection to the MySQL server is opened. If the query fails, the PHP code will try to reopen the connection and do another query. Just like the old workaround, the connection would try to be reopened and queried 4 times before declaring a failure.”
Forum: Plugins
In reply to: is there a plugin that make custom fields become a linkthanks. Actually what I want is make those custom fields become links that when user click on it, it will show the “query_post” result.