rspenc29
Forum Replies Created
-
Forum: Your WordPress
In reply to: Upgrade automatically without FTP?Solution here
Forum: Developing with WordPress
In reply to: Adding WP Links to a nav menu outside wordpress directoryAllowing your pages outside wordpress to use wordpress functions is as easy as adding the following line of code to those pages
<?php require(‘path_to/wp-blog-header.php’); ?>
Be sure to change path_to to the correct path for the file.
Forum: Plugins
In reply to: WP Ecommerce Permalinks Not Workinganyone have a solution?
Forum: Plugins
In reply to: WP Ecommerce Permalinks Not WorkingThere are two options in the wp_options table that could be the problem.
rewrite_rules
page_urisCan someone who is familiar with this check it out?
Forum: Plugins
In reply to: WP Ecommerce Permalinks Not WorkingI did change the permalinks after. I also went into the shop options and set them up properly. The result:
/shop/products/?category=1?product_id=1
The products part is right but its not changing the category or product id to names. I also deactivated and activated the plugin a few times and still didnt work.
Forum: Fixing WordPress
In reply to: Error 404no the .htaccess isnt in /blog I added the mod rewrite code into my main .htaccess file but I found a fix for it.
http://trac.wordpress.org/ticket/3796
When permalinks are enabled from the admin interface it prevents access to a password protected folder within the root directory and supplies a 404.
I have found that a way to fix this would be to add the following lines before the wordpress part of the .htaccess:
ErrorDocument 401 /secure/
ErrorDocument 403 /secure/Changing /secure/ to the name of the folder that access is required for. This could be implemented into the admin interface in the style of a few text boxes where folder names can be inserted and the interface generates the lines necessary to allow access to the folder.
Forum: Fixing WordPress
In reply to: iframe bug?I didnt have to disable the visual editor. Instead I posted in code view and it worked. Before, I was adding the code in code view then switching to visual to see how it looked. This is when the post would go blank. Thanks for the tip.
Forum: Fixing WordPress
In reply to: iframe bug?thanks i will try it now. I was thinking it had something to do with the preview at the bottom.