phuckd
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: howto set wordpress within my website?
Install wordpress in a seperate directory, as you have done with phpbb2 and make a new link in your sites headerhttp://www.globexposure.net/wordpressdirectory/”target=_blank”
Forum: Fixing WordPress
In reply to: Extract mail and URLrun a query into your wordpress database, from your phpMyadmin on your Cpanel
to get mail addys:
select distinct comment_author_email from commentsto get URLs
select distinct comment_author_url from commentsForum: Fixing WordPress
In reply to: How to put the_title() in the middle of the_content()?look at your loop and see what your title is renamed as.
Forum: Fixing WordPress
In reply to: application/x-httpd-php>>Maybe someone could provide a tcpdump?!
why would the packet headers help looking for a php issue?!!!!
Forum: Fixing WordPress
In reply to: Google erroneously indexing with wrong URL>> It as if Google has seen it as WordPress and decided it belongs in /blog. There is simply no other explanation for it.
They don’t really work that way..
As its a new domain, just have some patience – google knows your there and will come back soon and fix what they have cached πForum: Fixing WordPress
In reply to: error in static front page installationyou should contact the author of the plugin.
Forum: Fixing WordPress
In reply to: application/x-httpd-phpa dump of the servers cache might help here, are they using any mirroring or is it a clustered host?
Forum: Fixing WordPress
In reply to: How to put the_title() in the middle of the_content()?you do not need to use Explode(). It wont do what you are asking efficiently, if at all.
“Explode Returns an array of strings, each of which is a substring of string formed by splitting it on boundaries formed by the string separator. If limit is set, the returned array will contain a maximum of limit elements with the last element containing the rest of string.”
http://uk2.php.net/explodethe_title() is the call for the post title, unless you have modified it
Forum: Fixing WordPress
In reply to: application/x-httpd-phpIf it was asking you to open the file, then it’s more than likely a wrong implementation of PHP on your server, either it’s not configured properly to Apache or Apache cannot see the directory or php files it needs to parse the code.
BUT
as i can see it fine here on 3 machines i can’t see that necessarily being the problem, which is wierd as hell.
Might be worth posting on the Mozilla forums or having a scout through them, incase theres some wierd firewall/browser conflict
Can you get access to your php.ini file?
Forum: Fixing WordPress
In reply to: downloads on my blog>>things kind of go haywire
What happens? The lights go out? The doors start shaking?Firstly, check with your host that you can actually use .htaccess or if they need to enable it on the server before you can use the file.
Forum: Fixing WordPress
In reply to: application/x-httpd-phpno problems here on 1.5.0.7 from 3 boxes
could it be a rogue plugin or a corrupt install on the machines?
was firefox asking you to save the php file rather than open it when you were getting the message?
Forum: Fixing WordPress
In reply to: Google erroneously indexing with wrong URLYou should check the cache date of the google index, if you had the blog up and it was named domin.com/blog/hello.php and that is what google spidered, then that’s what it will keep in its cache untill it re-index’s you.
If thats not the case, a simple way is to re-write your .htaccess with, or check that this line exists:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^\~blogname\/(.*) http://www.domain.com/$1 [QSA,L,R=301]PS msn indexes and update far more often than the google overlords – hence why thier cache is a bit fresher
Forum: Fixing WordPress
In reply to: downloads on my blogIt sounds like a problem with your host access to the .htaccess file.
I presume you have a specific directory of files that you offer for downloading?
You could try adding a line like this to the .htaccess, which will force a download. Although, this should work in your root .htaccess, you may need to create another and put it in the specific download directory.
<Files *.mp3>
ForceType application/octet-stream
Header set Content-Disposition attachment
</Files>or for multiple types you could use filematch:
<FilesMatch “\.(zip|exe|mp3|rar)$”>
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>Forum: Fixing WordPress
In reply to: Another “theme” for “lo-level” admins ?to change the layout of the pages, edit the css & files in wp-admin folder.
to change what pages the user see’s on login, you can change the read options in the wp-admin/menu.php assigning different capabilities to different roles.
these could help you on your way:
http://codex.wordpress.org/Roles_and_Capabilities
http://codex.wordpress.org/User_LevelsForum: Fixing WordPress
In reply to: The uploaded file could not be moved to .Firstly, in options >> miscellaneous section of your dashboard, make sure that “wp-content/uploads” is in the textbox, not just uploads.
Secondly, ensure that the folder has write permissions on your server, CHMOD 777
this was annoying me as the text underneath the box says “Default is wp-content/uploads” but you have to manually store it in and save it