HotShoeStudios
Forum Replies Created
-
Anyone have any luck?
I don’t have the IQ plugin. I disabled the few plugins that I do have and I still can’t get it to upload. If I can’t get it resolved I’ll have to bail and find another solution. Unfortunately my clients are very impatient and I’m not going to be able to stall them much longer.
Any preferred gallery options?
Any luck?
Anyone find a way to go to an old version? I have client’s calling wanting updates and they will only wait so long. Explaining it’s a free plugin and they are “looking into it” doesn’t cut it for them.
Tried every browser I have and it doesn’t work across the board.
I’m having the same exact problem using Safari.
Tried deactivating all plugins and it still won’t upload.
Forum: Fixing WordPress
In reply to: Static root pages won't workThank you so much for all your effort Brandon.
I was shocked to find out that everything was indeed correct and in the proper location. The problem was the owner of index.php was set to root.
Hard to believe one simple little thing like this could take sooooo much time on my part to solve. I think I’ll stick more towards graphics as the IT part makes me want to shoot myself! 😉
Thanks again!
Forum: Fixing WordPress
In reply to: Static root pages won't workcorrection.
The above .htaccess file is what I uploaded to the public_html directory. Ti then get s rewritten somehow.
The current .htaccess file that is live on the server is:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Forum: Fixing WordPress
In reply to: Static root pages won't workHere’s the .htaccess located in the domain’s public_html:
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [L]Forum: Fixing WordPress
In reply to: Static root pages won't workHere’s th eindex.php located in the domain’s public_html:
<?php
/**
* Front to the WordPress application. This file doesn’t do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*//**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define(‘WP_USE_THEMES’, true);/** Loads the WordPress Environment and Template */
require(‘./content/wp-blog-header.php’);Forum: Fixing WordPress
In reply to: Static root pages won't workI did indeed move the .htaccess file and the index.php to the root exactly like the codex states. I checked to see that they are correct.
If I go to http://www.universalautosports.com I get a 404.
Forum: Fixing WordPress
In reply to: Static root pages won't workI just tried using Fantastico to do a clean install to make sure it’s none of my files. Same issue.
Fantastico installs wordpress in it’s own subdirectory within root/public_html and it works only when viewed within it’s own directory.
The minute I go the settings/general and changed the site url to http://www.universalautosports.com I get the same 404 error. Could this be a permissions error? I have the public_html file where everything resides set to 755. Or could it be a user ownership problem?
Forum: Fixing WordPress
In reply to: Static root pages won't workI have it under the root in it’s own directory to keep everything neat.
Try again. I think you tried looking at it while I was trying something.
http://www.universalautosports.com/content/
I think it’s related top the .htaccess file located in root.
Forum: Fixing WordPress
In reply to: Static root pages won't workSorry Brandon. I’ve been moving things around and tried a clean install.
I even tried running everything under a different directory now called “content”. If you go to http://www.universalautosports.com/content/ you’ll see the site. I just can’t get anything visible outside of the WordPress directory.
The minute I change the settings to http://www.universalautosports.com I get errors.
Should I be using s different path for the site url other than http://universalautosports.com? I’m tempted to just install all the wordpress files as a root install and see what happens.
Forum: Fixing WordPress
In reply to: Static root pages won't workSorry, didn’t know the protocol.
The wordpress subdirectory is installed in http://www.universalautoports.com/blog/. All the wordpress files are in that subdirectory “blog”. I moved the index.html and .htaccess file to the root (www.universalautosports.com) which is under public_html.
I did everything to the letter regarding the index.php alteration and the settings. Just checked again.
Forum: Fixing WordPress
In reply to: Static root pages won't workSorry for not being clear. Let me try to word it better.
When I set the site url and the wordpress install to http://www.mysite.com/blog with the general settings everything appears fine.
When I change the settings so that the wordpress install is http://www.mysite.com/blog and make the site url http://www.mysite.com/ I get a bad request error and can’t view my pages.
I’ve gone thru the dashboard and chosen the correct settings for staid homepage. I have permalinks enabled and they work fine as long as both settings remain www/mysite.com/blog as explained above.
I’;ve followed the codex about having wordpress in it’s own subdirectory and have done the index.php and .htaccess copy.
I’m wondering if it’s an apache thing?