manstraw
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Where do I host it?Interesting. I guess their method of making money is from the google ads on their forum. If the forum is active, more traffic to it, and more google revenue. For this, they are willing to give away a modest free account. I’d rather just pay for it than waste my time pimping their forum. But this might be a good option for those who have more time than money.
Forum: Themes and Templates
In reply to: Removing damn borders on all images!Post the link to an example so we can have a look.
Forum: Fixing WordPress
In reply to: Explorer Screwup?I haven’t looked at the page in IE, but I really don’t need to. The box model in IE doesn’t conform to standards, and it bites a lot of people in the butt. I suspect this is your problem. However …
If you remove the login requirement, you can use http://validator.w3.org/ to make sure you don’t have coding errors. Best rule that out first.
An other thing you can do is install this > http://ie7.sf.net. It’s basically javascript that fixes all the errors Internet Explorer has with it’s rendering. The only penalty is speed, in that Firefox renders faster than IE with javascript assist.
Forum: Installing WordPress
In reply to: Post-> How many times has it been readThe http://performancing.com option will work fine. Have you checked it out?
Forum: Fixing WordPress
In reply to: how could a plugin not show up?It could be incorrect permissions, or incorrect owner/group. Look at what a working plugin has, and copy that. Do it for both the files and folder it’s in.
Forum: Requests and Feedback
In reply to: Easier Upgrade MethodAlthough I’ve never had a problem, I certainly understand the concern of some people. You bite your nails, cross your fingers, and hit the button. The fear that something disasterous will happen is very real.
I think wordpress could adopt a roll back option. Perhaps by evolving the backup script it currently comes with. If you mess something up, make it easy to run a roll-back process. It would be up to the user save a roll back file, or maybe even have WP do one periodically, like weekly. Has any of the developers discussed this sort of thing?
Forum: Installing WordPress
In reply to: Post-> How many times has it been readIf you don’t want it to be public, you could sign up with performancing.com. You basically stick a bit of code in your footer, and performancing will track all sort of stats for you. Find out what the screen resolution of your visitors for example. It will track views for each post as well.
There’s one problem with that though. Some people just read the list, they never click on a post, or even a category. They come, they read the list, skip over some items, read others. There’s no real way to know which posts they actually read. Tracking post reads is more meaningful when they are old, and people are finding the archive through google etc. When it’s fresh content, it’s hard to be sure.
Forum: Plugins
In reply to: Where is main WordPress HTML file?I knew someone would call me on that. 😉
Yes, PHP can, and does do other things. PHP is also used to make the xml rss feeds. I myself actually use php for all my shell scripts on my server. And I even use php to generate and feed frames of video to a special viewer. But for the purposes of this discussion, and with the internet on the whole, it’s pretty much always busy making html code.
Oh, and let’s not forget that it’s name is PHP Hypertext Preprocessor.
Forum: Plugins
In reply to: Where is main WordPress HTML file?Yes. PHP pages always return html, and contain recognizable chunks of html. The whole point of php is to create html, but to do it dynamically. In simple terms, php customizes the page for each view. It finds the very latest info, and formats it to proper html. It typically gets the data from a mysql database, and this is how wordpress works as well.
In the old days, we used to write 20 pages of code if we needed twenty pages of html. When we need to change the navigation on every page, we had to change the code on all pages. Quite a task, when the page count increases. PHP let’s you bust the page up into pieces, so if you need to change the navigation for all 20 pages, you really just change a bit of code in one place one time, and it will instantly be shown on all pages. Because we build the page each time it’s viewed, we always have up to the minute html code.
Did that make sense? It’s all about being dynamic instead of static.
Forum: Installing WordPress
In reply to: wordpress images upload like FTPah, ok.
The picture is there full size, but it doesn’t display the full size by default. It’s easy to get the big version though.
After you browse for the file, and it’s uploaded, you see a thumbnail of it in the upload area. Just click that image, and you’ll see some options. The first option is where it’s set to use thumbnail. You can click on it to change it to use the full size image. (I forget the exact wording).
There is also an option right below that says Not Linked to Image. Click that and change it to say linked to image if you want people to click the thumbnail and see the whole image.
Play with those settings a bit, and you’ll figure them out.
Forum: Fixing WordPress
In reply to: ModerationYou could temporarily change the moderation settings for the whole blog. And then just switch it back after the heat has died down. That’s what a lot of people do.
Forum: Installing WordPress
In reply to: wordpress images upload like FTPI guess you’re saying that they appear when you upload with ftp, and do not when you use the wordpress upload function while writing a post.
Perhaps your uploads directory is not set with the correct permissions. Typically they should be 755, but you could also try 777. Do you know how to change the permission on a dir?
Forum: Plugins
In reply to: Where is main WordPress HTML file?I’ll just explain that a little further.
Inside each theme is the html for how the page looks. There is an initial page, index.php (inside your theme dir as explained in the previous post), which is basically a page that calls up the entries from every category and makes a list. The index.php page will call header.php, sidebar.php, and footer.php. Header is all the html until just past the body tag, sidebar is the side navigation html, and footer closes off the page with the closing body and html tags.
There are other pages that have slightly different tasks, like single.php, archives.php etc. They all want to do different things on the page, like display a single post, or display all posts from a single category, but they will all generally call the header and footer into the page, and often the sidebar.
By having common header, footer, and sidebar files, each page will built pretty much the same. A lot of what you want to customize will be in the header, footer, and sidebar files. These files frame the page. To get specific in the middle of the page with the meat of the content, look to index.php, single.php, archive.php, archives.php, etc.
The is an over simplificaion, but I hope it gives you the general picture. Each theme has it’s own unique header, footer, etc., and of course, a unique style.css file. Most of the colour stuff, and a LOT of the layout is actually in the style.css file. In short, if you want to change how it looks, edit the style.css file. If you want to change what appears, look to the php files, and look for the html within then.
Forum: Installing WordPress
In reply to: Do not get password after installationAre you hosting it on a local machine? Or are you using a pay hosting service? The necessary bits for emailing could possibly not be available on a local webserver.
As far as the password. IIRC, it’s encrypted. So unless you put in an encrypted password, your override won’t work. Since you can access your database tables, find the password field and put this in “5f4dcc3b5aa765d61d8327deb882cf99” (not the quotes of course). It’s an encrypted form of “password”. That should let you in, where you can change the password to something more secure.
btw, this is an online md5 tool, if you want to make other passwords: http://www.allhype.co.uk/tools/md5/
Forum: Installing WordPress
In reply to: Where do I host it?ah, you want free. well. I don’t know of any free hosting that will run wp, other than the wordpress.com type thing. it costs money to run those servers. pretty much gotta pay something. http://wordpress.org/hosting/