americasroof
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Discussion Section Missing in Edit Post in 2.9.2I’ll share my own resolution. The “screen options” in the upper right corner of the edit post menu needed to have the “discussion” option ticked.
Forum: Installing WordPress
In reply to: “wp_categories’ doesn’t exist” error in database wp 2.3I wound up using phpmyadmin to add the wp_categories table back. It wasn’t picky about field names or descriptors and that has gotten rid of the message. It does not appear to be affecting my blogs in anyway other than getting rid of the message.
Forum: Fixing WordPress
In reply to: Solution for 2.3 database errors / wp_post2cat does not existAfter considerable drama I used phamyadmin to add the table back (it was not picky about field names or descriptions). That solved the problem.
Forum: Fixing WordPress
In reply to: wp_categories doesn’t existI have mentioned in another thread that I had four successful upgrades on two domains but problems with two upgrades on a third domain. In all cases I deactivated the plugins and the I used phpMyAdmin to create the wp_categories table in both the errant upgrades and it solved the problem (and was not picky about field names or specifics).
Forum: Installing WordPress
In reply to: “wp_categories’ doesn’t exist” error in database wp 2.3BTW minimalnet what file had the configuration you mentioned earlier?
Also, I don’t know what you mean when you are referring to “K2”
Thanks.
Forum: Installing WordPress
In reply to: “wp_categories’ doesn’t exist” error in database wp 2.3Upon further thought about the problems on my installations. I wonder I successful upgrades from an incremental version while the unsuccessful upgrade was based on an much earlier version of wp (I don’t recall the delete tables command on the successful upgrade).
It seems like there are a lot of installation problem posts. Is there a way to safely DOWNGRADE to a more stable version that avoids this (and other problems)?
Forum: Installing WordPress
In reply to: “wp_categories’ doesn’t exist” error in database wp 2.3I did four upgrades that had no problems on two different domains hosted by the same ISP. However two upgrades on a different domain hosted by a different ISP had this problem. This is a VERY serious problem as it is exposing the database structure. I hope it can get resolved quickly. Thanks.
Forum: Fixing WordPress
In reply to: Anyone know how Geo plugin wants info?Convert it to decimal.
The formula:
Decimal Degrees = Degrees + minutes/60 + seconds/3600West longitudes and south latitudes are negative
Here’s a site that will do the conversion for you.
https://andrew.hedges.name/experiments/convert_lat_long/Forum: Fixing WordPress
In reply to: Uploading of Google Earth KML and KMZ FilesHere’s a discussion on altering the mime types.
https://www.ads-software.com/support/topic/53415Forum: Fixing WordPress
In reply to: Uploading of Google Earth KML and KMZ FilesYou need to alter the permitted mime types in the file
admin-functions.php (in the wp-admin subdirectory)Discussion of mime types
https://bbs.keyhole.com/ubb/showflat.php/Cat/0/Number/307890/Main/289764application/vnd.google-earth.kml+xml kml
application/vnd.google-earth.kmz kmzIf files do not launch from your website you will also have to add the mime types via cpanel
Forum: Plugins
In reply to: Calling Geo Plugin Functions in TemplatesThanks for your quick reply. In looking at the plug in in the editor I think the function is actually:
geo_UrlPopNav()
Forum: Fixing WordPress
In reply to: Geo plugin input formatNorth latitudes are positives (in decimal format)
West longitudes are negatives (in decimal format)That’s the case you’re posting about U.S. locations.
Forum: Installing WordPress
In reply to: Categories Not Alphabetizing and Showing Subcategories in 1.5After looking at the wiki I see you can change the options
https://wiki.www.ads-software.com/?pagename=wp_list_catsI got the number of posts back with the following code:
<?php wp_list_cats(‘sort_column=name& hide_empty=0& optioncount=1’); ?>However in this case it is listing categories with 0 posts but we’re getting there.
Forum: Installing WordPress
In reply to: Categories Not Alphabetizing and Showing Subcategories in 1.5Wow! Thanks macmanx for once again solving the problem amazingly quickly by simply
Using:
<?php wp_list_cats(‘sort_column=name& hide_empty=0’); ?>
Instead of:
<?php list_cats(0, ”, ‘name’, ‘asc’, ”, 1, 0, 1, 1, 1, 1, 0,”,”,”,”,”) ?>Now to look a gift horse in the mouth — if I could only get the number of posts in each category as was done earlier.
Forum: Fixing WordPress
In reply to: Possible to categorize the categories?I am also having problems with categories.
In 1.2.2 Kubrick this code allowed me to sort the categories alpha (and also show subcategories)
- <h2><?php _e(‘Categories’); ?></h2>
-
<?php list_cats(0, ”, ‘name’, ‘asc’, ”, 1, 0, 1, 1, 1, 1, 0,”,”,”,”,”) ?>
I see the same code on my sidebar.php in the template in 1.5 but it is not working properly.
Here’s an example of 1.2.2 working properly with Kubrick.
https://americasroof.com/Here’s an example of 1.5 with categories not sorting and not showing subcategories.
https://americasroof.com/wp/