Cypher
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Your session has expiredClear all your cookies and try again.
Regards
Forum: Installing WordPress
In reply to: installed wrong? all wordpress links got main index.html fileDarcie,
For starters your website isn’t configured properly. The webserver has to be configured to use “index.php” as your Index page, you know that isn’t working when you go the “/” directory and get a directory listing instead of the blog itself.
So before anything else, contact your webhost and have this issue fixed. This might in turn fix everything else.
Regards
Forum: Installing WordPress
In reply to: failed to open streamHow about checking to see if the file “Index.php” exists, and if it does, is the I(eye) capatilized or lower-case? You are clearly on a Windows based machine and that sort of thing matter.
Ideally, it should be “index.php”, all lowercase. Check Line #247 and #248 of wp-blog-header.php and make sure that it is lower-case.
Regards
Forum: Installing WordPress
In reply to: vizutestWelcome to the forums and what exactly are you trying to accomplish with this? Post a POLL? You didn’t honestly think that the this would work, did you?
Regards
Forum: Plugins
In reply to: PHP Photo Gallery (hacked for WordPress)It’s broken in FF on XP BTW. Looks fine on IE.
Regards
Forum: Installing WordPress
In reply to: Automatic User Promotion?Well if the multiblog used different versionof the wp-register.php file, then sure, you could make the modification I suggested above.
If they are sharing the same file(codebase) then you would have to get a little more tricky by perhaps looking at the URL that was used to access the file and so on.
Regards
Forum: Fixing WordPress
In reply to: WP Hacked TwiceSome details, what version of WP, PHP and Apache? Ask your host about possible break-in’s. A lot of times, inappropriate security across users on a shared hosting can allow for such hacks.
Regards
Forum: Your WordPress
In reply to: Here’s my new site – Link Banners@chaaban, You don’t run some sort of pop-up blocker? Shame on you. 🙂
The site looks fine, don’t care much about the content.
Regards
Forum: Installing WordPress
In reply to: hideand seek
Forum: Installing WordPress
In reply to: Automatic User Promotion?You will have to manually change wp-register.php on line 58:
$user_level = get_settings('new_users_can_blog');
to
$user_level = 4;Regards
Forum: Fixing WordPress
In reply to: “Anonymous — ” How Will I delete it?Check whatever is geneating the “Popularity” piece and you might find it there..
Regards
Forum: Fixing WordPress
In reply to: WordPress and server loadUsing a plugin like “WP-Cache” will dramatically reduce the load because it will cache the requests. So using this in combination with reducing the queries might get you the best possible gains..
Regards
Forum: Fixing WordPress
In reply to: WordPress and server loadAlways start with the plugins. Which ones do you have loaded? Any statistic plugins? Since you are only dealing with database usage, you can ignore plugins that modify content on the fly, but look at those plugins that store information back into the database.
Regards
Forum: Fixing WordPress
In reply to: Problem with RSS linkAdditionally, you can download Flock (another branch of the Mozilla browser like Firefox) and use their integrated RSS reader to view your page.
Regards
Forum: Fixing WordPress
In reply to: Problem with RSS linkJust before the title=” line, you will find a “a href=” line and that’s where you will see the “feed:” bit, if you remove it, your links will show up in the browser normally..
The “feed:” bit is a future extention like a mime-type that is supposed to make your browser spawn a RSS Reader for you when you click the link.
The problem is it isn’t widely supported yet. So removing it will make it work for the here and now.
Regards