jonimueller
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: All my wordpress blogs on 8 different domains are acting crazyCheck your FF settings to make sure that JavaScript is allowed per apljdi’s advice above.
Forum: Installing WordPress
In reply to: Can someone help please?And also don’t forget to CONNECT the user to the database. I’ve been working with WP and other scripts for over six years now and I often in my haste forget this critical step!
Forum: Installing WordPress
In reply to: what username and password to use?What error message are you getting?
Forum: Installing WordPress
In reply to: what username and password to use?You don’t “install” the database anywhere on your server for the world to see. You “install” WordPress. WordPress grabs the database and uses it for its own purposes.
So if you upload the WordPress files from the distro (distribution zip file), into your /blog subfolder, then point your browser to:
(for example only)
http://www.mycooldomain/blog/wp-admin/install.php
then it should install itself. That is provided you’ve filled out and uploaded the wp-config.php file.
Why is this so darn hard to understand?
Forum: Installing WordPress
In reply to: what username and password to use?That’s a server *path*. An URL would be mycooldomain.com. So it would be whatever your domain is where you’re trying to set up WP. And in your case, that would be http://www.mycooldomain.com/blog….
When you uploaded a test file (say for example, you uploaded a text file called readme.txt) from your cPanel File Manager, where did you put it? In the site root? (Under /public_html?)
If so, then if you type this directly into your browser’s address bar (the domain and file name are for example only):
http://www.mycooldomain.com/readme.txt
you should be able to view/download the file, depending on the browser’s behavior. The point is that if you upload a file to your site root, you should be able to find it at your site root.
Forum: Installing WordPress
In reply to: what username and password to use?/public_html is your “site root.” You can type the file name directly into your browser’s address bar and you should be able to view the file.
If you are attempting to upload a file to a folder on your site, that target is likely /public_html/[foldername]
Anything ABOVE the /public_html folder is hidden from public view. (Hence the string “public” in “public_html”.)
You are better off in the long run using an FTP client. The WP Codex suggests several. I personally use WS-FTP Pro but a lot of people seem to like Cute FTP and Filezilla. It’s alot faster than trying to upload via cPanel. But the File Manager in cPanel is pretty foolproof so I don’t, once more, understand your problems with this.
Forum: Your WordPress
In reply to: Maddenholics.comWell it’s a template. Did you pay to have it customized? I was a little annoyed that a clickable link wasn’t provided within your post, like this:
If you want me to look at it, you should make it easy for me to do so. As it was I was a bit disappointed to find what I believe to be a generic theme there.
Is your forum and your main site sharing logins so users don’t have to register twice? I haven’t found a decent bridge between WP and any of the popular forum software yet.
Forum: Installing WordPress
In reply to: have uploafed word press but none of my site is in veiwNo need to do that. You can go to the old site and under Tools, EXPORT an *.xml file to your hard drive. This contains all your pages, posts, comments and most of your plugin settings. Categories should normally migrate as well, but warning you, sometimes they don’t.
Then in the new blog, go to Tools, and IMPORT, it will give you a chance to upload the *.xml file from your hard drive and it will ask you if you want to import file attachments. Always say “yes” to that.
Forum: Installing WordPress
In reply to: WTF, content won’t show! WP Gurus help me =)When you say you got the web site, do you mean it came with WordPress and content already in place?
Can you view the database in PHPMyAdmin? Can you BROWSE the posts in PHPMyAdmin?
When you say “[t]he website works once you get into it,” what exactly do you mean, it “works” if there are no posts or comments? If you have all those comments in your dashboard, you should have all the posts as well. Are the articles set to “draft”? I cannot imagine what the problem is without more info.
Forum: Themes and Templates
In reply to: Widgetizing Theme (Acting Up)Hi, Joel. The code that I posted above will work with just about any theme. 🙂
Forum: Installing WordPress
In reply to: what username and password to use?I’m a SHE, not a HE, BTW. Not that it matters for purposes of this discussion. Since you mentioned your familiarity with running a web site, I assumed you had basic knowledge of PHPMyAdmin and MySQL.
LAMP is an acronym for a server environment running on your own computer. It stands for Linux/Apache/MySQL/PHP. These are the components necessary to emulate a remote server environment. There are several pieces of software that can do this for you. A lot of web developers use this to develop their sites offline. This allows them to run the PHP and MySQL code needed to actually make the site behave as it would in a live server environment. Yellowtip is my favorite.
http://en.wikipedia.org/wiki/LAMP_%28solution_stack%29The reason I asked you this question was because in several of your posts, you kept referring to your computer at your home (or wherever you have it). That led me to believe you were trying to run LAMP on your computer. In reality, as numeeja pointed out, it’s just a misunderstanding, apparently. of what WordPress does and is.
And no need to put “friend” in quotation marks. I’m not a friend, I’m just here to try to help.
And as has been explained to you nearly to exhaustion, there is no need to concern yourself with the login credentials within the wp-config.php file. Let WordPress take care of that. All YOU need to supply it are:
Database hostname (which, unless you are on Dreamhost or some other odd web hosting service), is usually
localhost
MySQL Database (the database you set up for WordPress to use)
MySQL Database User (the user you created for the new WordPress database).
MySQL User Password (the password you assigned to the User you set up, referenced above)The important part which even I (whose been setting these things up for YEARS) sometimes forget: You have to ASSIGN the User to the Database or it won’t work properly.
Good luck with it all.
Forum: Themes and Templates
In reply to: Widgetizing Theme (Acting Up)You might want to start over with the widgets. Decide where you want your widgets and how many you’ll want. In one design we did, I have custom widgetized sidebars for each page, plus an actual sidebar widget, and three footer widgets.
Here’s my code. Notice that you can NAME each sidebar by including it between the
'in the parentheses. This goes in your functions.php file, I think you can figure out where to swap out the current widget code with this code. And of course, your styles will be different from mine, but this gives you an idea of their flexibility.if ( function_exists('register_sidebar') ){ register_sidebar(array( 'name' => 'sb-about', 'before_widget' => '<div class="navbox">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>', )); register_sidebar(array( 'name' => 'sb-contact', 'before_widget' => '<div class="navbox">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>', )); register_sidebar(array( 'name' => 'sidebar', 'before_widget' => '<div class="navbox">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>', )); register_sidebar(array( 'name' => 'footer1', 'before_widget' => '<div class="navbox">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>', )); register_sidebar(array( 'name' => 'footer2', 'before_widget' => '<div class="navbox">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>', )); register_sidebar(array( 'name' => 'footer3', 'before_widget' => '<div class="navbox">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>', ));And then in your templates, call them as follows (place this line where you want the widget to appear):
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer1') ) : ?>And don’t forget to change the name to match what you’ve laid out in your functions.php file. 🙂
Have you tried contacting the theme’s creator? And if you open that file in a text editor (which hopefully has a line counter on the side), what exactly is on line 18? Maybe you can comment that out. And the way to comment out code in php is to put this:
//before each line you want to comment out.Forum: Your WordPress
In reply to: SmartBoyDesigns.com – Brilliant CreationOh, absolutely it’s a compliment. He’s my best friend in the world and got started on the internet at a young age and grew that forum to the monster it is today. And I see you were even younger when you started out. Now if we could just convince plugin developers to spit out validating CODE for their plugins, life would be pretty much perfect, wouldn’t it?
Forum: Installing WordPress
In reply to: what username and password to use?Are you running LAMP on your computer or are you talking about installing WP onto your server?