Try looking at: http://www.konakart.com/importexport.php
Ming
Ming
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
## This first bit figures out how many items in the array:
#set( $shlen = -1 )
#foreach( $ost in $order.getStatusTrail() )
#set( $shlen = $shlen + 1 )
#end
## Then we loop through in the right direction (high to low index) and pick out the right item in the internal loop
#foreach( $iter in [$shlen..0] )
#set( $counter = 0 )
#foreach( $osh in $order.getStatusTrail() )
#if ($iter == $counter)
<tr>
<td class="dataTableContent" align="center">$dateTool.format('d-MMM-yyyy HH:mm:ss',$osh.getDateAdded(),$locale)</td>
#if ( $osh.isCustomerNotified() )
<td class="dataTableContent" align="center"><img src="tick.gif" border="0" alt="Yes" title=" Yes "></td>
#else
<td class="dataTableContent" align="center"><img src="cross.gif" border="0" alt="No" title=" No "></td>
#end
<td class="dataTableContent" align="center">$osh.getOrderStatus()</td>
<td class="dataTableContent">$!osh.getComments() </td>
</tr>
#end
#set ($counter = $counter + 1)
#end
#endQuoteShould I uninstall/reinstall KonaKart in the hope that it will pick up the correct parameters? I may have installed KonaKart before MYSQL was configured correctly.
QuoteIs there a way to find the correct databaseand/or connection parameters and then apply them?
QuoteMYSQL server 5.0.45 install and java db
QuoteI had some trouble configuring the database parameters when installing KonaKart and the next window told me the connection failed
QuoteHow does KonaKart interface with an existing web business? is KonaKart a separate URL that links to the business?