Ryan Yu
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Image upload http errorHi briang77,
If it’s an Internal Server Error, let’s check your .htaccess file.
1. Back up the current .htaccess file.
2. Delete all of the code in the .htaccess.
3. Add new .htaccess with the code below.# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressrefer to http://codex.ww.wp.xz.cn/Using_Permalinks#Creating_and_editing_.28.htaccess.29
Try this and let’s see how it goes.
Forum: Fixing WordPress
In reply to: Unable to expand menu in admin pageThat would be a javascript error.
Please try to deactivate plugins and see if one of the plugins causing the issue.Forum: Fixing WordPress
In reply to: Image upload http errorHave you checked the folder permission such as wp-content, uploads?
If you don’t see wp-content/uploads/2011/09
then your wordpress cannot create a new folder every month (by default).So check the folder & folder permission and see how it looks like.
Maybe this thread would help.
http://ww.wp.xz.cn/support/topic/photos-not-uplading-properly?replies=10Forum: Fixing WordPress
In reply to: Changing the color of the navabar backgroundIn the twentyten theme folder, open up the style.css in your preferred text editor and find the line around 431.
It should look something like
#access li:hover > a, #access ul ul :hover > a { color:#fff; background:#333; }Change the background color to what you wish to have.
Forum: Fixing WordPress
In reply to: can i add wordpress to my current site?If you are adding your WordPress posts onto your static site,
it’s doable with feeding your wordpress posts to your site.It was long time ago, but I have done the similar job for one of my clients.
If that’s not what you are after, could you please give us a bit more details?
Forum: Fixing WordPress
In reply to: Positioning 2 Sidebar ThemeYou will need to modify the layout and css.
Currently the layout looks;
<div class="column-right"> <div class="widget-left">...</div> <div class="widget-right">...</div> </div> <div class="column-center">...</div>You will need to change this layout to something like;
<div class="column-right">...</div> <div class="column-center">...</div> <div class="widget-left">...</div>And also change the css of column-right, column-center and widget-left to something like;
.column-right { float: left; margin: 0 22px 0 0; width: 228px; } .column-center { float: left; height: 100%; overflow: hidden; padding: 0 0 15px; width: 457px; } .widget-left { float: right; margin: 0 0 0 10px; width: 225px; }You will need to adjust the css a bit more to match how you wanted to display.
Forum: Fixing WordPress
In reply to: Redirecting to home (not wanted)Hi Lori,
Did you check your .htaccess file?
Also check if you have installed/upgraded any plugins
which would cause this issue such as a redirect plugin etc.Forum: Fixing WordPress
In reply to: Images not showing up on pages@kmessinger: ye that’s how WordPress would do as default, but you can change the upload directory.
Forum: Fixing WordPress
In reply to: Images not showing up on pagesHey esmi,
I know, I just wanted to check if dataport is missing something 🙂
Forum: Fixing WordPress
In reply to: Images not showing up on pagesIt doesn’t seem the images are uploaded correctly.
http://www.haydays.ca/wp/wp-content/uploads/lupins.jpgWhen you upload the images, what is the “Link URL”?
(If the “Link URL” is empty, click “File URL” button).Forum: Fixing WordPress
In reply to: [WP125] [Plugin: WP125] WP-125 shortcodes?If you need to run the php code in the widget,
try using:
http://ww.wp.xz.cn/extend/plugins/php-code-widget/From my experience, a lot of times, 500 error is caused by .htaccess.
I’m not 100% sure if wp-supercache caused that,
but that might be possible…If you are getting another 500 error, check your .htaccess
and see if the code looks ok.Forum: Fixing WordPress
In reply to: Cannot modify header information error w/in DashboardCheck your functions.php and remove all the blank spaces at the top and bottom of the functions.php.
Check this out:
http://ww.wp.xz.cn/support/topic/i-cant-login-and-im-getting-a-warning-message?replies=18It seems your site is up and running 🙂
If you have this issue again, check .htaccess file and see if it looks ok.
Forum: Fixing WordPress
In reply to: Making my .com my wordpressIn this case, you need to install WordPress on your server.
If you are on cPanel, you can quickly install WordPress
using fantastico.If you just want to install it manually on your server,
download WordPress here;
http://ww.wp.xz.cn/download/and follow the steps here.
http://codex.ww.wp.xz.cn/Installing_WordPress