wphelpcenter
Forum Replies Created
-
Forum: Plugins
In reply to: slideshowsYou might want to ask your web host if they can give you a hand here. You can also read the following article:
http://codex.wordpress.org/Changing_File_Permissions
But essentially, you would want to ask your web host if the can make “/home/a9693082/public_html/juniors/wp-content/uploads” writable by the user the PHP runs as. (that should make sense to them even if it doesn’t make sense to you) They’ll want to change the permissions recursively.
Forum: Installing WordPress
In reply to: Moving wordpress database to new serverWordPress does somewhat bind to a URL.
In the database in the *_options table there is a value for “home” and “siteurl” which contain URL’s that WordPress relies on to properly function. Otherwise it will keep trying to kick you to the old domain.
Forum: Themes and Templates
In reply to: category pageI believe you’re missing an endif after your endwhile. The problem isn’t actually on line 33.
Forum: Themes and Templates
In reply to: category pageYou don’t call template files directly in your browser. Category-3.php will be used by WordPress whenever WordPress is trying to provide a category listing for whichever of your categories has the ID of 3.
Sorry, that’s a little convoluted but it is the best way I can think of to explain it. Does it make sense to you?
Forum: Themes and Templates
In reply to: where is the code for main page post preview display?You could create/modify a home.php file and control the main post listing.
There’s a fair amount of information regarding this here: http://codex.wordpress.org/Template_Hierarchy
But feel free to ask follow up questions.
Forum: Fixing WordPress
In reply to: All category posts not showing correctlyJohn — You’re correct as to why it’s only showing two per page. Basically you have two options:
– Change the setting to 10, or however many you would like to have displayed on your category page, then modify your theme’s home.php (or create one if it doesn’t exist)
– Leave the setting as it is, and create/modify a category.php file.
In whichever file you decide to modify, before the loop starts, you’ll want to add a call to query_posts() to modify the number of posts returned per page. More information on this function can be found here:
Forum: Fixing WordPress
In reply to: URGENT – SITE DOWN – CACHE.PHP file blankHave you tried grabbing a cache.php file from a fresh download of WordPress?
Forum: Installing WordPress
In reply to: Problem during instalationDid you setup your wp-config.php file to provide database information, etc? If not, you might need to locate your error logs (your web host might can help with this) to better determine what the error is.
Forum: Fixing WordPress
In reply to: Long load times in the admin back-endEven with the front-end being fast, the back-end could be related to your hosting company. The administration area has lots of queries to perform, etc. Also, if there is cacheing of any sort on the front end that would cause it to load a great deal faster as well.
Perhaps your host can look to see if there are “slow queries” being performed or something along those lines?
Forum: Fixing WordPress
In reply to: Beefed Up Login Area?@stiplayer – If this is a strong concern of yours, I would recommend a few possibilities:
– Work with your webhost to place a .htaccess password restriction on your wp-admin folder
– Consider using a plugin such as: http://wordpress.org/extend/plugins/limit-login-attempts/ – it allows only so many login attempts for locking the user out for a time period
– If you’re REALLY worried about it, and you have a predictable IP address (static or rarely changes) you could also work with your webhost to only allow access to your wp-admin folder based on your IP or IP range.
Forum: Installing WordPress
In reply to: Blank Permalink SettingsAre you noticing this on any other admin pages or only the permalinks page?
Forum: Fixing WordPress
In reply to: Download a file from a post or page.Can you zip the PSD? It might also save your users some time on the download.
Forum: Installing WordPress
In reply to: Upgrade to 2.9 from 2.8.6 fails@omarmnn – it would seem that plugin is incompatible with your version of WordPress. Have you tried contacting its author?
Forum: Fixing WordPress
In reply to: Missing script for header-img.phpYou could download a fresh copy of WordPress and grab the specific file you need.
Forum: Fixing WordPress
In reply to: Download a file from a post or page.The simplest method for this would be to use the built-in media uploader. It’s not just for jpg’s and gif’s. You can upload any file with it and use the Insert into Post link to provide a download link to the file.