Forum Replies Created

Viewing 11 replies - 31 through 41 (of 41 total)
  • Thread Starter sccoder

    (@sccoder)

    Thread Starter sccoder

    (@sccoder)

    I’ve been told to delete the .htaccess file which I suspected up front was the problem since I just uploaded it last night

    then I was told to clear out the permalink structure which is displayed right on the admin panel but then told that having index.php in front is okay which is what I’ve got anyway

    so I still don’t know what I need to do to get the blog back, except for maybe reloading WP but not re-installing it becaue it would clear the history so then I asked if I could upload my local copy which would keep my theme settings but I haven’t heard about that yet, miss anything?
    not knowing,I’ll wait some more thx

    Thread Starter sccoder

    (@sccoder)

    that’s what I’ve been saying, forget the permalinks, how do i get the blog back?

    Thread Starter sccoder

    (@sccoder)

    Okay but I’m still confused. I deleted the .htaccess file from the host server and the permalink structure but I still only see the directory, no WP. So if I don’t backup the DB and I reload WP, the history is gone?

    The permalink structure I’m using (just tried using it again) is what is listed right on the permalinks panel so isn’t it okay to use it (like I was before)?

    What needs to happen (from the host, ping services etc.) before I know that this didn’t work? Because it just now didn’t so what should I be waiting for? TIA crash-course-learning

    Thread Starter sccoder

    (@sccoder)

    I was using the above values successfully before although I may have just added the first node which is why I asked about that last post. I just grabbed that from the admin panel so yes I can get to it, just not the posts (as they should be seen) so just to be clear, are you saying to clear the permalink structure form box out and delete the .htaccess file (already did a few minutes ago) because I may have added the index.php sometime over the last few days but I definitely added the .htaccess file last night and today is the problems. So when you say in your last sentence that it will revert to the default permalinks, my real problem is getting my blog back, not the permalinks, are we talking about the same thing here?

    Thread Starter sccoder

    (@sccoder)

    guess I’m bumping, sorry moshu

    /index.php/%year%/%monthnum%/???y%/%postname%/

    lets try that again

    /index.php/%year%/%monthnum%/%day%/%postname%/

    take the first node out?

    by uploading files of the same version, can I upload my local Wp copy (saving all my theme, etc. settings) or do I need to run from the WP install site? TIA

    Thread Starter sccoder

    (@sccoder)

    I do want them to go to a specific post, but not while it is on a page by itself if possible. You’re right (obviously), I goofed on the permalink stuff.

    But all of that doesn’t matter right now, my blog is completely down with the error msg being displayed that I started this with “No input file specified” so how do I get it back up? TIA

    Thread Starter sccoder

    (@sccoder)

    there are about 17k of stuff in the error log but no zero sized files in the directory

    Since I just uploaded that .htaccess file last night, I can’t help but think that that is the source of the problem I’m having today but I wouldn’t know how to check what files they may or may not have moved anyway so wouldn’t a WP reinstall start me over but keep my data?

    Thread Starter sccoder

    (@sccoder)

    podz, how do I know what files were possibly moved around?
    I’ll check for zero & the log now. thx

    Thread Starter sccoder

    (@sccoder)

    I was trying to get my permalinks working… I want users to be able to click on one of my stories when I leave a link to it outside of my blog somewhere and go to that post in my blog which it already did but they wound up reading the post on it’s own page. Can it be setup so that they see it while it is in my blog amongst all the other posts around it?

    Basically, if I just posted a blog story 3 posts ago, and then left that link at another forum, comment area, serp result, whatever, I would like for the user to come back to that blog location which would still be on my main page because it is only the third post down, not to a page that has just that one story.

    Okay, here’s the .htaccess file:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /blog/
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ – [S=35]
    RewriteRule ^feed/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?&feed=$1 [QSA,L]
    RewriteRule ^(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?&feed=$1 [QSA,L]
    RewriteRule ^page/?([0-9]{1,})/?$ /blog/index.php?&paged=$1 [QSA,L]
    RewriteRule ^comments/feed/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?&feed=$1&withcomments=1 [QSA,L]
    RewriteRule ^comments/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?&feed=$1&withcomments=1 [QSA,L]
    RewriteRule ^comments/page/?([0-9]{1,})/?$ /blog/index.php?&paged=$1 [QSA,L]
    RewriteRule ^search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?s=$1&feed=$2 [QSA,L]
    RewriteRule ^search/(.+)/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?s=$1&feed=$2 [QSA,L]
    RewriteRule ^search/(.+)/page/?([0-9]{1,})/?$ /blog/index.php?s=$1&paged=$2 [QSA,L]
    RewriteRule ^search/(.+)/?$ /blog/index.php?s=$1 [QSA,L]
    RewriteRule ^category/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?category_name=$1&feed=$2 [QSA,L]
    RewriteRule ^category/(.+)/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?category_name=$1&feed=$2 [QSA,L]
    RewriteRule ^category/(.+)/page/?([0-9]{1,})/?$ /blog/index.php?category_name=$1&paged=$2 [QSA,L]
    RewriteRule ^category/(.+)/?$ /blog/index.php?category_name=$1 [QSA,L]
    RewriteRule ^author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?author_name=$1&feed=$2 [QSA,L]
    RewriteRule ^author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?author_name=$1&feed=$2 [QSA,L]
    RewriteRule ^author/([^/]+)/page/?([0-9]{1,})/?$ /blog/index.php?author_name=$1&paged=$2 [QSA,L]
    RewriteRule ^author/([^/]+)/?$ /blog/index.php?author_name=$1 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?year=$1&monthnum=$2&day=$3&feed=$4 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?year=$1&monthnum=$2&day=$3&feed=$4 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$ /blog/index.php?year=$1&monthnum=$2&day=$3&paged=$4 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$ /blog/index.php?year=$1&monthnum=$2&day=$3 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?year=$1&monthnum=$2&feed=$3 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?year=$1&monthnum=$2&feed=$3 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$ /blog/index.php?year=$1&monthnum=$2&paged=$3 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/?$ /blog/index.php?year=$1&monthnum=$2 [QSA,L]
    RewriteRule ^([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?year=$1&feed=$2 [QSA,L]
    RewriteRule ^([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?year=$1&feed=$2 [QSA,L]
    RewriteRule ^([0-9]{4})/page/?([0-9]{1,})/?$ /blog/index.php?year=$1&paged=$2 [QSA,L]
    RewriteRule ^([0-9]{4})/?$ /blog/index.php?year=$1 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$ /blog/index.php?year=$1&monthnum=$2&day=$3&name=$4&tb=1 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /blog/index.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$ /blog/index.php?year=$1&monthnum=$2&day=$3&name=$4&paged=$5 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$ /blog/index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA,L]
    </IfModule>

    # END WordPress

    Again, I guess I screwed it up instead. I grabbed this from the original sub-dir my blog was in before I moved it from /Wordpress/ to /blog/, my hoster put it there, not me, although I’m sure I questioned them about it (although they didn’t actually respond to me).
    TIA

    Thread Starter sccoder

    (@sccoder)

    uploaded .htaccess to the host server last night

    today all my posts are gone from public access , I can see them in the admin panel but cannot access them either

    apparently, I should’ve never loaded it, (I read a million posts saying if your host is using an apache server… well, they never answered so I guess I found out) so now that the damage is done, how do I fix it? tia

Viewing 11 replies - 31 through 41 (of 41 total)