<?xml version="1.0"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
		<channel><title>[Support Center] Recently Updated Articles</title><link>http://geodesicsolutions.com/support/helpdesk/rss/kb/recent_changes</link><description></description><item><title>What happens in the database when an ad expires?</title><description>&lt;h3&gt;Problem: &lt;/h3&gt; What happens to the ad/auction in the database when it expires? Does it go away? Is it archived? &lt;br /&gt; &lt;br /&gt; &lt;hr /&gt; &lt;br /&gt; &lt;h3&gt;Solution: &lt;/h3&gt; When an ad/auction expires it initially remains in the "live" database table geodesic_classifieds table for a default period of thirty days and is marked as not live. Once it has been thirty days (set at default and editable in the admin tool) and marked as not live the ad is then moved to the geodesic_classifieds_expired database table and is stripped of any images, category id, extra questions,...etc.  This leaves it with only the core data...i.e. ad id, ad title, ad description, etc... The amount of space required to store this information is extremely small and is therefore stored indefinitely as an archive. These ads can be removed by if you feel that this table is becoming large. Please note that the information that is stored in this table is extremely small and will not hender the performance of the database.  &#xD;
&lt;p&gt;For more on why the listing isn't immediately archived, how and where to adjust the date of archiving from expiration and even having archived listings removed from the database by the software look to these support wiki articles&lt;/p&gt;&lt;br /&gt;&#xD;
&lt;p&gt;http://geodesicsolutions.com/support/wiki/admin_menu/listing_setup/general_settings/start#listing_management_settings&#xD;
&lt;/p&gt;&lt;br /&gt;&#xD;
&lt;p&gt;http://geodesicsolutions.com/support/wiki/admin_menu/listing_setup/general_settings/start#expiration_settings&#xD;
&lt;/p&gt;</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/33</link><pubDate>Mon, 21 Nov 2011 19:51:04 GMT</pubDate><guid isPermaLink="false">cc1e50103253536b6b36f6fbe8475d09</guid></item><item><title>Changing servers - How do I do this?</title><description>&lt;h3&gt;Problem: &lt;/h3&gt; I want to move my software to a new server. How do I do this and what do I need to consider in the software? &lt;br /&gt; &lt;br /&gt; &lt;hr /&gt; &lt;br /&gt; &lt;h3&gt;Solution: &lt;/h3&gt;&lt;p&gt;&#xD;
Look to our steps explained in the support wiki here:&#xD;
&lt;br&gt;&lt;br&gt;&#xD;
http://geodesicsolutions.com/support/wiki/tutorials/server/moving_installation&#xD;
&lt;/p&gt;</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/92</link><pubDate>Thu, 18 Aug 2011 21:41:44 GMT</pubDate><guid isPermaLink="false">e2e20d69ccaf1e926a473736898e9ab0</guid></item><item><title>How do I turn on the country and/or city fields within my site search page?</title><description>&lt;h1&gt;This modification will only work on pre v5 installations of the software&lt;/h1&gt;

&lt;P&gt;The admin tool LISTING SETUP &gt; FIELDS TO USE has settings to turn on the use of the city and country fields within the software but these fields do not appear in the site search field when you turn them on in the above admin tool. The reason the country field is this way is that so few of the site using our software are multiple country sites that need this field turned on within the search form specifically yet want it displayed in several other places this field was commented out within the php code of the software.&lt;/p&gt;

&lt;P&gt;The city field does not display for a slightly different reason. The city field in the search form can cause more problems than it solves. With the proliferation of suburbs many searchers could be missing listings right next to them because the city search does an exact match search for the city and not a proximity search which they may be expecting. Problems in spelling city name is another major problem with the city search. Cities may be spelled correctly between a person posting a listing and another person looking for that listing. Fort Lauderdale will not match Ft Lauderdale even though both are acceptable spellings of the city's name. Because of these problems we have suggested that area based searches be based on the postal/zip codes. The script can do proximity searches with the use of the longitude/latitude data that comes with the postal/zip code addon.&lt;/p&gt;

&lt;P&gt;If you still wish to use these fields in your site search form you can. The code to search by these fields is still in the php code but has been commented out. The changes you will need to make these fields appear are within the search_form function of the search_class.php file. &lt;/P&gt;

&lt;P&gt;To uncomment the city form field search for the following line within the php code mentioned above:&lt;/P&gt;

&lt;PRE&gt;
//if the client wants to search by city they can uncomment
//otherwise the zip filter feature makes this unusable

/* if ($this-&gt;field_configuration_data-&gt;USE_CITY_FIELD)
{
   //search by city
   ......
}*/
&lt;/PRE&gt;
You will need to remove the comments coding to make the above appear like:
&lt;PRE&gt;
//if the client wants to search by city they can uncomment
//otherwise the zip filter feature makes this unusable
if ($this-&gt;field_configuration_data-&gt;USE_CITY_FIELD)
{
   //search by city
   ......
}
&lt;/PRE&gt;
To uncomment the country field to make it appear in the default search form look for the following php code:
&lt;PRE&gt;
//un-comment the following to add a drop down for countries.
/* 
//Begin Commenting out
if ($this-&gt;field_configuration_data-&gt;USE_COUNTRY_FIELD)
{
   .......
}
// End Commenting out
*/
&lt;/PRE&gt;
You will need to remove the comments coding to make the above appear like:
&lt;PRE&gt;
//un-comment the following to add a drop down for countries.


//Begin Commenting out
if ($this-&gt;field_configuration_data-&gt;USE_COUNTRY_FIELD) 
{
   .....
}
// End Commenting out
&lt;/PRE&gt;

our site same settings that turn on the use of the city and country fields within the </description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/111</link><pubDate>Fri, 15 Apr 2011 20:06:43 GMT</pubDate><guid isPermaLink="false">5be92c503f940e1b2e4993748d7aa50f</guid></item><item><title>How can I protect my admin from visitors</title><description>&lt;h3&gt;Problem: &lt;/h3&gt; Although the admin is very well protected by the login and authentication routines used by the software, there are additional actions that you can take to further protect the administration of the software. &lt;br /&gt; &lt;br /&gt; &lt;hr /&gt; &lt;br /&gt; &lt;h3&gt;Solution: &lt;/h3&gt;&lt;p&gt; All admin files and functionality are stored within the "admin" directory. Because of this separation, from the files/functionality of the front side of the software, you can do two things to further "hide" the administration.&lt;br /&gt; &lt;br /&gt; 1. Password protect the entire admin directory using htaccess. This is a server side feature so talk to your host about protecting directories if you are not familiar with this process.&lt;br /&gt; &lt;br /&gt; 2.Use the following support wiki article to change the name of the admin directory to something "not standard" like it is at default: /admin&lt;br /&gt;
&lt;br /&gt;
http://geodesicsolutions.com/support/wiki/tutorials/admin/change_dir_name&lt;/p&gt;</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/29</link><pubDate>Mon, 21 Mar 2011 22:25:28 GMT</pubDate><guid isPermaLink="false">a6f04138853345b9f7c26d3441b9256f</guid></item><item><title>How do I move my installation from one directory to another?</title><description>&lt;h3&gt;Problem: &lt;/h3&gt; I want to move my installation from a one directory to another on my site. How do I do this? &lt;br /&gt; &lt;br /&gt; &lt;hr /&gt; &lt;br /&gt; &lt;h3&gt;Solution: &lt;/h3&gt;
&lt;p&gt;These instructions are in the support wiki here:&lt;br /&gt;
http://geodesicsolutions.com/support/wiki/tutorials/server/moving_directories
&lt;/p&gt;</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/72</link><pubDate>Mon, 21 Mar 2011 18:23:37 GMT</pubDate><guid isPermaLink="false">f59d4c3ac6d7d155b700f0f549f9c6f0</guid></item><item><title>How do I set up my site to use Turkish charset?</title><description>&lt;p&gt;&lt;strong&gt;How to set up a site to use Turkish text:&lt;/strong&gt;&lt;br /&gt;  &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;font size="4"&gt;Versions 3.0+&lt;/font&gt; &lt;/strong&gt; &lt;br /&gt; These instructions are included in the following support wiki article:&lt;br /&gt;
&lt;br /&gt;
http://geodesicsolutions.com/support/wiki/tutorials/using_different_character_sets/start&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;font size="4"&gt;&lt;strong&gt;Versions Before 3.0:&lt;/strong&gt;&lt;/font&gt; &lt;br /&gt;&lt;br /&gt;1.  Edit the file xss_filter_inputs.php (or clean_inputs.php if that file exists instead).  Find the line: &lt;div style="border: thin dashed blue; padding: 3px"&gt;$input_vars=htmlentities($input_vars);&lt;/div&gt; Replace with: &lt;div&gt;$input_vars=&lt;strong&gt;htmlspecialchars&lt;/strong&gt;( $input_vars&lt;strong&gt;, ENT_COMPAT, 'UTF-8'&lt;/strong&gt;);&lt;/div&gt; &lt;br /&gt;&lt;br /&gt;2.  In the same file, find the line: &lt;div style="border: thin dashed blue; padding: 3px"&gt;$_REQUEST['b']['username'] = htmlentities($_REQUEST['b']['username']);&lt;/div&gt; Replace with: &lt;div style="border: thin dashed blue; padding: 3px"&gt;$_REQUEST['b']['username'] = &lt;strong&gt;htmlspecialchars&lt;/strong&gt;($_REQUEST['b']['username']&lt;strong&gt;,ENT_COMPAT,'UTF-8'&lt;/strong&gt;);&lt;/div&gt; &lt;br /&gt;&lt;br /&gt;3.  Follow the instructions &lt;strong&gt;2-4&lt;/strong&gt; of the &lt;strong&gt;Versions 3.0+&lt;/strong&gt; section at the top.&lt;br /&gt;&lt;p&gt;&#xC2;&#xA0;&lt;/p&gt;</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/136</link><pubDate>Mon, 21 Mar 2011 18:20:25 GMT</pubDate><guid isPermaLink="false">6aeccec58df0cbaf75b32193e028d132</guid></item><item><title>Changing and finding css controls</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
If you know the css tag you wish to change or the page it is attached to and want to know where to change it....
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
We've moved these instructions into the support wiki here:&lt;br /&gt;
&lt;br /&gt;
http://geodesicsolutions.com/support/wiki/tutorials/finding_changing_css/start	 </description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/81</link><pubDate>Mon, 21 Mar 2011 18:16:48 GMT</pubDate><guid isPermaLink="false">a713a604bf6b8e11b4656e0be4d10faa</guid></item><item><title>Category links only produce server 404 error pages...pages not found?  Why?</title><description>&lt;p&gt;If linking within the software (mainly category browsing) is broken the SEO addon has most likely been turned on without all the steps to install SEO Addon being completed.  The error you most likely see looks something like this:&lt;br /&gt;&lt;br&gt;
&lt;br /&gt;&lt;br&gt;
404 Not Found&lt;br /&gt;&lt;br&gt;
The requested URL /index/listings/categoryXXX.htm does not exist. &lt;br /&gt;&lt;br&gt;
&lt;br /&gt;&lt;br&gt;
Where XXX is the category id.&lt;br /&gt;&lt;br&gt;
&lt;br /&gt;&lt;br&gt;
You will need to either turn off the SEO addon in the Addon Management tool of your Geodesic admin tool or complete the SEO module installation instructions within the online user manual here:&lt;br /&gt;&lt;br&gt;
&lt;br /&gt;&lt;br&gt;
http://geodesicsolutions.com/support/wiki/addons/seo/installation&lt;br /&gt;&lt;br&gt;
&lt;br /&gt;&lt;br&gt;
and the following section of the admin tool:&lt;br /&gt;&lt;br&gt;
&lt;br /&gt;&lt;br&gt;
ADMINISTRATION MENU &gt; ADDONS &gt; SEO &gt; SETTINGS&lt;br /&gt;&lt;br&gt;
&lt;br /&gt;  &lt;/p&gt;
</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/151</link><pubDate>Thu, 03 Mar 2011 19:56:07 GMT</pubDate><guid isPermaLink="false">59919778e297371c3bf027b4212f7faf</guid></item><item><title>How Do I Insert Meta Tags?</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
How Do I Insert Meta Tags?
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
The following pages of the support wiki answer how to do this in v5:
&lt;br /&gt;
&lt;br /&gt;
http://geodesicsolutions.com/support/wiki/tutorials/v5_meta_tag_management/start&lt;br /&gt;
http://geodesicsolutions.com/support/wiki/tutorials/v5_meta_tag_management/category_specific_meta&lt;br /&gt;
http://geodesicsolutions.com/support/wiki/tutorials/v5_meta_tag_management/listing_details_meta
</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/28</link><pubDate>Thu, 03 Mar 2011 19:51:48 GMT</pubDate><guid isPermaLink="false">f943f2d375041e51f32440a158c3a3ce</guid></item><item><title>Configurations to speed up your post 3.1 performance.</title><description>This support wiki article provides suggestions on speeding up page load within v5:&lt;br /&gt;
&lt;br /&gt;
http://geodesicsolutions.com/support/wiki/tutorials/speeding_up_pages/start	 </description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/80</link><pubDate>Thu, 03 Mar 2011 19:49:42 GMT</pubDate><guid isPermaLink="false">ede4bee310c1f324112fa327ba242c6e</guid></item><item><title>There is text all over the site/emails that I don't like. How do I change it in my v3.0 version software?</title><description>&lt;h3&gt;Problem: &lt;/h3&gt; There is text all over the site/emails that I don't like. How do I change it? For example the registration email does not contain the information that I would like my users to see. Also, the weclome text on the home page is not right. ??? &lt;br /&gt; &lt;br /&gt; &lt;hr /&gt; &lt;br /&gt; &lt;h3&gt;Solution: &lt;/h3&gt;&lt;p&gt; This is fully explained in the support wiki here:&lt;br /&gt;
http://geodesicsolutions.com/support/wiki/tutorials/finding_editing_text/start	 

&lt;/p&gt;</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/78</link><pubDate>Thu, 03 Mar 2011 19:48:16 GMT</pubDate><guid isPermaLink="false">c39dff36d2ef35a17e5237f91abc910e</guid></item><item><title>How does the affiliate system work?</title><description>&lt;h3&gt;Problem: &lt;/h3&gt; How does the affiliate system work in the Enteprise products? &lt;br /&gt; &lt;br /&gt; &lt;hr /&gt; &lt;br /&gt; 
&lt;h3&gt;THIS FEATURE WAS REMOVED FROM THE SOFTWARE WITH V5.  THE STOREFRONT FEATURE REPLACED IT AND PROVIDES MUCH MORE FLEXIBILITY FOR THE CLIENT&lt;/h3&gt;&lt;BR&gt;&lt;BR&gt;
&lt;h3&gt;Solution: &lt;/h3&gt; You can grant affiliate privileges on a group by group basis. The affiliate privileges allows the affiliate a backdoor link to the classifieds/auctions software that will only display that affiliates(sellers) ads/auctions. The page templates and ad/auction display templates used within this back door section will be determined within the group administration for the specific user group that user belongs to. You can also allow the affiliate/seller the ability to place their own html within the affiliate backdoor template. The affiliate/seller has an "affiliate html" textbox within the affiliate/seller's client side user information edit form. Any html entered into this box and saved by the affiliate/seller will be placed within the affiliate side templates where you place the "" tag within that template. &lt;br /&gt; &lt;br /&gt; The affiliate/seller side does not use the category navigation. The ads/auctions are displayed from newest to oldest and spill onto a secondary navigation page if necessary. &lt;br /&gt; &lt;br /&gt; If the user has affiliate privileges an affiliate link will appear automatically &lt;br /&gt; within the personal information section of the client side admin (only &lt;br /&gt; viewable if the user is logged in). &lt;br /&gt; &lt;br /&gt; The user can use the affiliate link provided within their personal information page as a link from their own site or any site on the web directly to their affiliate&#x9D; section displaying only their ads. &lt;br /&gt; &lt;br /&gt; No external links (lead out of the affiliate section) are created within the dynamic part of the content. You can however determine your own links within the page and ad display template that could possibly link to your mainstream&#x9D; site or other sites on a group by group basis. No affiliate&#x9D; stats are currently generated. &lt;br /&gt; &lt;br /&gt; Each user group (with affiliate privileges) can have their own set of "affiliate-side" page and ad/auction display templates...or you can set all groups to the same templates. &lt;br /&gt; &lt;br /&gt; The following templates can be determined for each group for use within the affiliate site: &lt;br /&gt; Affiliate Home template - page template viewed when the affiliate link is used. Essentially the template used on the "home" page for affiliate section. When the affiliate link is used this is the page that the system "defaults" to. Together with all the most recent ads. If there are more ads/auctions than can be displayed on this page a link to the secondary page will be displayed. You can place the "" tag within this template. &lt;br /&gt; &lt;br /&gt; Secondary Template - page template for subsequent page results beyond the affiliate home template. If there are more ads/auctions than can be displayed on the affiliate "home" page a link will be generated to this page...and to any subsequent pages if necessary. You can place the "" tag within this template. &lt;br /&gt; &lt;br /&gt; Ad display template - body detail of the ad display. &lt;br /&gt; &lt;br /&gt; Ad display extra question template - controls display of category specific extra question values attached to each ad. &lt;br /&gt; &lt;br /&gt; Ad display checkbox template - controls display of category specific checkbox question values attached to each ad Each template can have a different template for each language attached to the site.&lt;br /&gt; &lt;br /&gt; The below article in the forum has additional information with image representation.&lt;br /&gt; &lt;br /&gt; http://www.geodesicsolutions.com/products/user_forum/phpBB2/viewtopic.php?t=786</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/21</link><pubDate>Thu, 03 Mar 2011 19:46:32 GMT</pubDate><guid isPermaLink="false">b6c33bca88e53cc53ec490a60e912d5e</guid></item><item><title>How Do I Edit/Delete Live Ads/Auctions as the Admin?</title><description>&lt;h3&gt;Problem: &lt;/h3&gt; How Do I Edit/Delete Live Ads/Auctions as the Admin? &lt;br /&gt; &lt;br /&gt; &lt;hr /&gt; &lt;br /&gt; Answered in the support wiki here:&lt;br /&gt;
&lt;br /&gt;
http://geodesicsolutions.com/support/wiki/tutorials/delete_edit_listing/start</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/27</link><pubDate>Thu, 03 Mar 2011 19:44:28 GMT</pubDate><guid isPermaLink="false">1edecf2958aefa4bef6d6c2b3e1a4044</guid></item><item><title>What are the minimum server/software requirements for the software?</title><description>&lt;h3&gt;Problem: &lt;/h3&gt; What are the minimum server/software requirements for the software? &lt;br /&gt; &lt;br /&gt; &lt;hr /&gt; &lt;br /&gt; &lt;h3&gt;Solution: &lt;/h3&gt;&lt;p&gt; Refer to this page of the support wiki for our requirements:&lt;bR&gt;&lt;br&gt;
&lt;a href="http://geodesicsolutions.com/support/wiki/server_requirements/start"&gt;http://geodesicsolutions.com/support/wiki/server_requirements/start&lt;/a&gt;
 &lt;/p&gt;</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/1</link><pubDate>Thu, 03 Jun 2010 15:20:13 GMT</pubDate><guid isPermaLink="false">4a7230e9d9f12196c2b1e67d49e09092</guid></item><item><title>I need to edit report abuse link email in my listing details.</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;The email address in the listing details page is wrong. How do I change it?&lt;br /&gt; &lt;br /&gt; &lt;hr /&gt; &lt;br /&gt; &lt;h3&gt;Solution: &lt;/h3&gt;&lt;p&gt;There is no specific "report abuse" feature within the software but we have put an "email link" within the listing details page that will popup a box within the browser that will allow the client to send an email to the email address contained in the link.  The email address field in the popup will automatically be populated with the email address contained within that email link.&lt;/p&gt;&lt;p&gt;To change the email address contained within that link you will need to edit the listing details template used on your listing details page to display the listing detail information. You can find out which detail template by going here in the admin tool:&lt;/p&gt;&lt;p&gt;PAGES MANAGEMENT &gt; BROWSING LISTINGS &gt; LISTING DISPLAY PAGE&lt;/p&gt;&lt;p&gt;If you have not changed the default design the template you will look for is "CLASSIFIED DETAILS TEMPATE 1". After finding the listing details template you use you can find that template within the template admin tool. Click the "edit" link next to that template in the template admin tool. If you have the WYSIWYG editor in use you will need to click the "html" in the WYSIWYG editor to see the html source code. If you do not have the WYSIWYG editor on you will see the html source code to edit.&#xA0; Search for the email address (default: admin@yourdomain.com) in that html source of your listing details pages. Once edited click the "update" and "save" if using the WYSIWYG editor...click the "save" if not. This should save your change to the listing details template. If a refresh of the browser on the client side does not change you most likely did not edit the correct template. Start again above to verify.&lt;/p&gt;&lt;p&gt;Within the default installation the text for the report abuse link is within "additional text 10" text field in the text admin tool of the LISTING DISPLAY PAGE page admin tool. &lt;br /&gt; &lt;/p&gt;</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/116</link><pubDate>Thu, 22 Jan 2009 22:09:01 GMT</pubDate><guid isPermaLink="false">0526104579ffa960ba6a56460024aa5a</guid></item><item><title>Not all items are secure when in ssl</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
When set to use an ssl address I am getting a warning that not all items are secure.
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
The reason that you ever see a message like that is because there is &lt;br /&gt;
something being reference improperly in the html for use on an https &lt;br /&gt;
address. Typically this is because something is referenced absolutely &lt;br /&gt;
instead of relatively. &lt;br /&gt;
&lt;br /&gt;
Below is our best attempt to explain this and please forgive any html inaccuracies as it is for point demonstration only.  &lt;br /&gt;
&lt;br /&gt;
If you were wanting to call an image in html and the image is located at: &lt;br /&gt;
&lt;br /&gt;
http://www.geodesicsolutions.com/images/someimage.jpg &lt;br /&gt;
&lt;br /&gt;
You could do so with the below image tag absolutely: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;img src=http://www.geodesicsolutions.com/images/someimage.jpg&gt; &lt;br /&gt;
&lt;br /&gt;
Or relatively &lt;br /&gt;
&lt;br /&gt;
&amp;lt;img src=images/someimage.jpg&gt; &lt;br /&gt;
&lt;br /&gt;
If done relatively then the missing path information is filled in relative to where the page is located that is being viewed on the site in either http or https. So if done relatively, viewing the page from https the image is called from https://www.geodesicsolutions.com/images/someimage.jpg and if viewing the page from http then the image is called from &lt;br /&gt;
http://www.geodesicsolutions.com/images/someimage.jpg. Either address the image is called properly but most importantly it is being called from https when needed and is therefore secure and will not cause any warnings in the browser. &lt;br /&gt;
&lt;br /&gt;
TIP: To find out where the image is being reference when viewing the page in a browser, right click on an image an view its properties. &lt;br /&gt;
&lt;br /&gt;
Hope this helps</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/18</link><pubDate>Tue, 23 Sep 2008 15:32:07 GMT</pubDate><guid isPermaLink="false">c9cc438ee07c4e73aef69d85f1573f28</guid></item><item><title>Why can't users renew certain listings, or why does the renew button not display?</title><description>&lt;p&gt;There are 2 main factors that determine if a listing can be renewed or not.&lt;/p&gt;&#xD;
&#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;In the admin, on the page &lt;strong&gt;Listing Setup &gt; General Settings&lt;/strong&gt;, look at the setting &lt;strong&gt;renewal period&lt;/strong&gt;.  See the tooltips help on that setting for more info.&lt;/li&gt;&#xD;
&lt;li&gt;If the listing has been expired for more than 30 days, the listing may have been archived.  Archived listings can not be renewed.  If you wish to change the amount of time before a listing is archived, you can do so by adding the following line to your config.php file:&#xD;
&lt;div class="smallfont" style="margin-bottom: 2px;"&gt;Code:&lt;/div&gt;&#xD;
	&lt;pre class="alt2" dir="ltr" style="border: 1px inset ; margin: 0px; padding: 6px; overflow: auto; width: 640px; height: 34px; text-align: left;"&gt;define("BETA_OVERRIDE_DAYS_TO_ARCHIVE",30);&lt;/pre&gt;&#xD;
To change the number of days, in the line above you would change &lt;strong&gt;30&lt;/strong&gt; to be whatever the number of days you wish it to be.&#xD;
&lt;br /&gt;&lt;br /&gt;Note that changing the number of days to a high number will result in slower page load times and more disk usage, since images for listings are kept until the listing is archived.&#xD;
&lt;br /&gt;&lt;br /&gt;Also note that the archive # days setting was first introduced in version 3.1.0.&#xD;
&lt;/li&gt;&#xD;
&lt;/ul&gt;</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/150</link><pubDate>Mon, 18 Aug 2008 18:49:24 GMT</pubDate><guid isPermaLink="false">3325289727300fe8997ea156c8d80471</guid></item><item><title>Images upload fine in non ssl but do not in ssl - why?</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;&#xD;
When I turn on ssl mode in the software, I can no longer upload an image during ad/auction placement. What is wrong?&#xD;
&lt;br&gt;&#xD;
&lt;br&gt;&#xD;
&lt;hr&gt;&#xD;
&lt;br&gt;&#xD;
&lt;h3&gt;Solution: &lt;/h3&gt;&#xD;
Typically this is caused because the funtcion getimagesize within GDLibrary is not reporting any size. Your host can correct this by making the below change within the php.ini file.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
open_basedir "/var/www/yoursite.com/httpdocs:/tmp:/var/tmp"&lt;br /&gt;&#xD;
</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/50</link><pubDate>Sat, 16 Aug 2008 04:08:48 GMT</pubDate><guid isPermaLink="false">70d314cc573ccd5c88ed4386c87483ce</guid></item><item><title>Quick css tag search within browser address bar</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;&#xD;
Need a quick way to search for css tags within the admin tool without waiting for the css font list page to load.&#xD;
&lt;br&gt;&#xD;
&lt;br&gt;&#xD;
&lt;hr&gt;&#xD;
&lt;br&gt;&#xD;
&lt;h3&gt;Solution: &lt;/h3&gt;&#xD;
Enter the following urls to search for individual css tags within the admin tool:&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Within the auctions enterprise admin tool:&lt;br /&gt;&#xD;
http://www.usedcarfactory.com/auctions/admin/index.php?a=1108&amp;b=1&amp;z[search]=xxx&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Within the classifieds enterprise admin tool:&lt;br /&gt;&#xD;
http://www.usedcarfactory.com/classifieds/admin/index.php?a=108&amp;b=1&amp;z[search]=xxx&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
Just replace the "xxx" in the links with the css you want to search for.  Like "display_auction_label" or "display_ad_label".</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/99</link><pubDate>Sat, 16 Aug 2008 04:08:21 GMT</pubDate><guid isPermaLink="false">14fde1882764a6bb81921728de10fe1b</guid></item><item><title>Some pages on my site are pulled from cache</title><description>&lt;p&gt;Many hosts&#xA0;are employing proxy servers and/or your clients browser may cache content too often.&#xC2;&#xA0; All pages within the Geo software are created dynamically each time they are accessed and many of the pages that may have the same url will have completely different content within them.&#xC2;&#xA0; This is because there are different pieces of data to create each page and not all are passed to the script through the url.&#xC2;&#xA0; So there are times where clients will see content or transaction information that comes from a cached page.&#xC2;&#xA0; If the problems reported by your clients are caused by browser caching the following meta tags will most likely correct the problem:&lt;/p&gt;&lt;p&gt;&lt;META HTTP-EQUIV="CACHE-CONTROL: &lt;strong&gt;&lt;font face="Courier New"&gt;must-revalidate&lt;/font&gt;&lt;/strong&gt;" CONTENT="NO-CACHE"&gt;&lt;/p&gt;&lt;p&gt;&lt;META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"&gt;&lt;/p&gt;&lt;p&gt;The "expires" meta date just needs to be set in the past to make sure the browser (and proxy server)&#xC2;&#xA0;goes to get fresh content.&lt;/p&gt;&lt;p&gt;&lt;META HTTP-EQUIV="EXPIRES" CONTENT="Mon, 22 Jul 2002 11:12:01 GMT"&gt;&lt;/p&gt;&lt;p&gt;&#xA0;&lt;/p&gt;</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/124</link><pubDate>Sat, 16 Aug 2008 04:07:45 GMT</pubDate><guid isPermaLink="false">a60f02eb1496770e042d5b5c17ce0e50</guid></item><item><title>How does the site filter system work within the Enterprise versions?</title><description>&lt;font size="2"&gt;Several users have asked for a better explanation of the "&lt;strong style="color: #ffa34f"&gt;site&lt;/strong&gt;" filters contained within the admin. The client side "search filters" should not be confused with them. Below is a better explanation of the &lt;strong style="color: #ffa34f"&gt;site&lt;/strong&gt; filters to alleviate any discrepancies...it is a long one. Hope it helps and lets people know how powerful tool the &lt;strong style="color: #ffa34f"&gt;site&lt;/strong&gt; &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; tool can be. &lt;br /&gt;&lt;br /&gt;&lt;strong style="color: #ffa34f"&gt;Site&lt;/strong&gt; filters can be a powerful tool to simplify browsing throughout your &lt;strong style="color: #ffa34f"&gt;site&lt;/strong&gt;. The &lt;strong style="color: #ffa34f"&gt;site&lt;/strong&gt; &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; is used to pre-populate a specific field used within a classified ad (and possibly a registration field) and then use that field to &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; out classified ads that do not have the value chosen with the &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt;. &lt;br /&gt;&lt;br /&gt;You begin by attaching creating a hierarchy of filters much the same way you create categories. The main or top level &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; values are more general while sub-level &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; values get increasingly specific. To illustrate the use of filters better we will use a state and county hierarchy example. The first level of filters will contain the states. The second level will contain the counties in each state (remember this is just to illustrate...that&#xE2;&#x20AC;&#x2122;s a lot of states and counties). Any counties within a state will be contained within that state (added to that state) as if it were a subcategory of another category. &lt;br /&gt;&lt;br /&gt;Once you have your hierarchy you then attach each level of the &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; organization (state and county in above example) to an optional &lt;strong style="color: #ffa34f"&gt;site&lt;/strong&gt; wide field using the &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; administration tool. For our example we will attach the state level to optional &lt;strong style="color: #ffa34f"&gt;site&lt;/strong&gt; wide field 1 and the county level to optional &lt;strong style="color: #ffa34f"&gt;site&lt;/strong&gt; wide field 2. Also turn on the use of optional &lt;strong style="color: #ffa34f"&gt;site&lt;/strong&gt; wide fields 1 and 2 on a &lt;strong style="color: #ffa34f"&gt;site&lt;/strong&gt; wide basis within the AD CONFIGURATION &gt; FIELDS TO USE admin tool. &lt;br /&gt;&lt;br /&gt;The next step is to attach each &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; level to a registration optional field. For our example we will attach the state level to the registration optional field 1 and the counties to registration optional field 2. Also turn on the use of registration optional fields 1 and 2 within the registration configuration screen. &lt;br /&gt;&lt;br /&gt;From now on when a user registers they will be asked to choose a state and county as steps within the registration process. The first level choice will appear immediately after the registration code screen (if you choose to use registration codes). The county choice screen will come next with the appropriate county choices that belong to the state chosen in the previous step (all based on the category-&gt;subcategory model used within the category administration). We are assuming the user will choose their state and county from the choices...so give explicit instructions to do so within the instructions on the &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; choice page. The normal registration form will now appear asking for the usual personal information. Registration optional field 1 will contain the state choice and registration optional field 2 will contain the county choice. An edit link will appear next to each allowing the user to edit the values if they need to. &lt;br /&gt;Once the user completes registration those fields can be edited within their personal information edit screen. &lt;br /&gt;&lt;br /&gt;These fields/values within the registration field 1 will now be used to automatically populate the optional &lt;strong style="color: #ffa34f"&gt;site&lt;/strong&gt; wide field 1 when the user places an ad. The registration optional field 2 value will be used to populate optional &lt;strong style="color: #ffa34f"&gt;site&lt;/strong&gt; wide field 2 within the place an ad process. This information will be saved along with the ad. Every ad the user enters will automatically have this &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; information within it. And if these values are edited within the user information administration section on the client side these values will automatically be updated within all ads attached to that user. &lt;br /&gt;&lt;br /&gt;Now insert one of the &#xE2;&#x20AC;&#x153;&lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; dropdown display&#xE2;&#x20AC;&#x9D; modules into your browsing pages. Where they are placed will appear dropdown(s) prepopulated with the state and county information. If no state has been chosen (in our example) the state dropdown will contain the states built within the &#xE2;&#x20AC;&#x153;state&#xE2;&#x20AC;&#x9D; level of the &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; administration. Once a state is chosen the second level counties attached to that state will appear in the second dropdown. &lt;br /&gt;&lt;br /&gt;Now only ads that fit the &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; value chosen will appear while browsing. If you chose a state only ads that have that state value will be displayed. Once a state (or another state) has been chosen the page will refresh and show only ads belonging to that state. Now the second level counties for that state will be in the second dropdown. If you choose a county only ads within that county and state will appear (in our example). Both filters can be changed to display different ads fitting the criteria within the filters or cleared to display all ads. &lt;br /&gt;&lt;br /&gt;In conjunction with the category system a user can quickly narrow down the number of ads to browse through to reach the content they are wanting to view. &lt;br /&gt;&lt;br /&gt;The &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; system can be adapted to any hierarchy. We just used the state-county hierarchy as an easy way to illustrate how the &lt;strong style="color: #ffa34f"&gt;filter&lt;/strong&gt; system worked. &lt;/font&gt;&lt;br /&gt;</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/128</link><pubDate>Sat, 16 Aug 2008 04:07:14 GMT</pubDate><guid isPermaLink="false">7b698f84e9432af05e2b4c2b72f3dc77</guid></item><item><title>How do I force the need for a subscription to view or register on my site?</title><description>&lt;p&gt;Enterprise Editions only:&lt;br /&gt;&lt;br /&gt;Firstly note that all your price plans will need to be subscription based price plans.  You could conceivably have fee-based price plans but clients in the fee-based user groups/price plans will not be able to view any listing details.  Also note this applies to either classauction, classified ad or auction configurations of Geo software.&lt;br /&gt;&lt;br /&gt;You must first turn on this beta setting to force the need for a client to have a current subscription within the software before they can view a listing details page within your site:&lt;br /&gt;&lt;br /&gt;ADMIN TOOLS &amp; SETTINGS &gt; BETA TOOLS &gt; BETA SETTINGS &gt; "must_have_subscription_to_view_ad_detail"&lt;br /&gt;&lt;br /&gt;Changing this beta setting to 1 and saving should be all that is necessary.  This settings force any browsing client to have a subscription to view the details of a listing.  The only thing required is an active subscription and that subscription could have been purchased under any user group/price plan combination.  This setting allows the clients to browse the categories of your site.  When the client clicks to view the details of a listing they are redirected to login if they currently are not logged in or purchase a subscription if they are logged into your site.&lt;br /&gt;&lt;br /&gt;The following two things are not necessary but help make sure the client purchases or knows they have to purchase a subscription to view listing details on your site:&lt;/p&gt;&lt;p&gt;1) Create a specific page template for the registration success page that redirects to the subscription purchase/renewal page.  Within the page template you create for this purpose should have a meta tag refresh like this one in the html  statement:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;and then attach that page template to the following page in the admin tool.&lt;br /&gt;&lt;br /&gt;PAGES MANAGEMENT &gt; REGISTRATION &gt; "Registration Success Page"&lt;br /&gt;&lt;br /&gt;Once the client successfully registers they will be redirected immediately to the subscription renewal page where they can choose the length of subscription they wish to purchase that has been setup in their user group/price plan.&lt;br /&gt;&lt;br /&gt;2) Place a link in the registration success page text that links directly to the subscription purchase/renewal page.  The following text is only displayed when the client successfully registers:&lt;br /&gt;&lt;br /&gt;PAGES MANAGEMENT &gt; REGISTRATION &gt; "Registration Success Page" &gt; [edit text] &gt; "registration success instructions"&lt;/p&gt;&lt;p&gt;Place a link in this text something like:&lt;/p&gt;&lt;p&gt;http://www.mysite.com/index.php?a=24 &lt;/p&gt;&lt;p&gt;or&lt;/p&gt;&lt;p&gt;index.php?a=24&lt;/p&gt;&lt;p&gt;or &lt;/p&gt;&lt;p&gt;https://www.mysite.com/index.php?a=24&lt;/p&gt;&lt;p&gt;Make the text for the link a "call to action" to purchase their subscription so that they can browse listing details.  Otherwise the client will not be able to view listing details. &lt;br /&gt;&lt;/p&gt;&lt;p&gt;Notes:  &lt;/p&gt;&lt;p&gt;a) If the client does not purchase a subscription immediately after registration they are essentially treated as clients whose subscriptions have expired.&#xC2;&#xA0; They are able to login to the site but will not be able to view listing details until they go to the personal information page in the client side account management tool, click the renew/extend subscription link and purchase/renew a subscription through the software.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;b) The links above are assuming that your geodesic software is installed in the base director of your domain and in some examples that your site domain is mysite.com which it isn't.  Change any of the absolute urls you use are pointing to your domain.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&#xC2;&#xA0;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/16</link><pubDate>Sat, 16 Aug 2008 04:06:28 GMT</pubDate><guid isPermaLink="false">e4b75095fee9c3e09017723bd0552434</guid></item><item><title>registration agreement shows html tags within it</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;In versions before 3.1.*, Html is showing within the registration agreement box. How do I remove it? &lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;br /&gt;&lt;h3&gt;Solution: &lt;/h3&gt;The registration agreeement is displayed within an HTML textarea box.&#xA0; The html textarea box cannot render html as a browser can.&#xA0; You cannot use html within a textarea as that html will display exactly as you have entered it.&#xC2;&#xA0; The only "formatting" you can do within the html textarea is to place "backslash n" (that is&#xC2;&#xA0;a backslash on your keyboard immediately followed by the letter n...no spaces in between them) where you want a carriage return to appear.&#xA0; You cannot put html "&lt;br&gt;" tags within the registration agreement.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;We suggest turning off the wysiwyg editor to edit the registration agreement.&#xA0; You can turn off the wysiwyg within the SITE CONFIGURATION &gt; GENERAL admin page.&#xC2;&#xA0; Place "n" where you want carriage returns to appear. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Once you have finished editing this piece of text you can turn the wysiwyg editor back on to edit other text around the admin tool.</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/107</link><pubDate>Sat, 16 Aug 2008 04:06:12 GMT</pubDate><guid isPermaLink="false">c013bc31aaa7191d29f4a4c4a652733c</guid></item><item><title>When I try to save a template or text, I get a forbidden page (403) error</title><description>&lt;p&gt;The 403 forbidden error is generated by the server, usually because there is a "script" tag in the text that is being submitted, that the server perceives as a possible hacking attempt.  Contact your hosting provider and ask them how to disable the "mod_security" feature.  &lt;/p&gt;&lt;p&gt;On some servers, you may be able to disable the feature by creating a new file, &lt;em&gt;admin/.htaccess &lt;/em&gt;that contain these lines:&lt;/p&gt;&lt;p&gt;&lt;strong&gt; &lt;IfModule mod_security.c&gt;&lt;br /&gt; SecFilterEngine off&lt;br /&gt; &lt;/IfModule&gt;&lt;/strong&gt; &lt;strong&gt; &lt;/strong&gt; &lt;/p&gt;</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/129</link><pubDate>Sat, 16 Aug 2008 04:04:33 GMT</pubDate><guid isPermaLink="false">c6505f499e18fc2a829d496c7d3efcd6</guid></item><item><title>How do I make the HTML button show on the description text editor in 3.0.*?</title><description>&lt;h3&gt;Problem:&lt;/h3&gt; &lt;p&gt;How do I make the HTML button show on the description text editor in 3.0.*?&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;h3&gt;Solution:&lt;/h3&gt; &lt;p&gt;The following steps are un-necessary once you have updated to 3.1, since 3.1 shows the HTML button by default.&lt;/p&gt;  &lt;ol&gt; &lt;li&gt;These steps require making a change in a PHP file.  To ensure that you can restore the original file in case anything goes wrong, &lt;strong&gt;make a backup of the file &lt;em&gt;classes/site_class.php&lt;/em&gt;&lt;/strong&gt;.&lt;/li&gt; &lt;li&gt;Edit the file &lt;em&gt;classes/site_class.php&lt;/em&gt; with a text editor such as WordPad, or an editor that is PHP friendly.&lt;/li&gt; &lt;li&gt;Search for the text:&lt;pre style="border: thin dashed black; padding: 5px"&gt;theme_advanced_disable : 'visualaid,help,styleselect,code,cleanup,image',&lt;/pre&gt;&lt;/li&gt; &lt;li&gt;Replace that line of text with:&lt;pre style="border: thin dashed black; padding: 5px"&gt;theme_advanced_disable : 'visualaid,help,styleselect,cleanup,image',&lt;/pre&gt; Note that what has changed, is that the text "code," was removed from the line.&lt;/li&gt; &lt;li&gt;Save the changes, and upload the edited file.&lt;/li&gt; &lt;li&gt;Go through the place a listing process, and the HTML button should now show on the editor.&lt;/li&gt; &lt;li&gt;If you do not see the HTML button, be sure to clear your browser's cache and refresh the page.&lt;/li&gt; &lt;li&gt;If there are any problems, restore the backup you created in step 1 above.&lt;/li&gt; &lt;/ol&gt;</description><link>http://geodesicsolutions.com/support/helpdesk/kb/article/140</link><pubDate>Sat, 16 Aug 2008 04:04:18 GMT</pubDate><guid isPermaLink="false">f83b34960770c770eafa62f2c5a2ac01</guid></item></channel></rss>
