Support
Problems uploading files or installing extensions/templates
File UploadsOk, first up file uploads for those that aren't clear are the following sorts of things:
A file upload is literally the transmission of data from your computer to the web server that your website runs on. Unlike normal activities like editing text or creating menus which send small amount of data to specific fields, file uploads send much larger amounts of data in a pre-packaged format. Files that can be uploaded can be a variety of types, common ones include:
As file uploads are usually self contained packages they have to be treated with much more care. As such hosting services and most CMS software have limits on what can be uploaded. Some file restrictions that you might encouter include:
Generally the one that causes the most trouble with a CMS website is the maximum file size you're allowed to upload. In Joomla this is controlled by a PHP variable called upload_max_filesize. The value this variable has is usually controlled by your hosting service at the cheap end of town and by yourself in the nicer hosting services. What's my upload_max_filesize?The default PHP value is 2M (2 megabytes), most hosting providers change it from this either up or down. There are a variety of ways to find your websites value:
How can I change my upload_max_filesize?There are a range of ways including using your WHM access to change it, setting a php.ini file up and finally calling your hosting provider. We recommend you read about it because you can cause problems if you do it the wrong way. As a starting point here's a Google search for you.
|
Bug Reports/How to get Help
To help resolve any problems you may be experiencing the following things will be useful:
|
General Joomla Installation Issues
How do I get custom development or general Joomla Support?
|
See People Software is a brand of Craig Phillips Pty Ltd (CPPL). CPPL's core business is:
The best way to get us involved is to drop us a line via our contact form! |
Support Subscriptions
What do I get in a Support Subscription?
|
A support subscription gives you access to the private Subscriber Forum for that specific product. Subscriber Forums are actively monitored and responed to by CPPL during business hours. The CPPL business hours are Monday-Friday 0800-1800 AEST. At this point there are two subscription plans available: As the name of each plan indicates the subscription is valid for 3 or 6 months. The Subscriber Forum provides:
|
EasyTable for J!
Where can I find other versions of EasyTable for J!
Previous VersionIf you click on the "Downloads" menu heading (http://seepeoplesoftware.com/downloads.html) rather that the menu item "Current Easytable.zip" you will get to all the files available for download. Below the sample files you will find the version prior to the current version. Current VersionIf you mouse over the "Downloads" menu heading (http://seepeoplesoftware.com/downloads.html) and then click on the menu item "Current Easytable.zip" you will download page for the current publicly available version. You will find the sample files in the general "Downloads" area. Subscriber and Pre-Release VersionsCurrent Support Subscribers are able to get the latest version of EasyTable from the private Subscribers Forum. You can download these versions as long as your support subscription is current. You will find the sample files in the general "Downloads" area. |
What will the difference be, between the free version and EasyTable Pro
500 - Error: Installation may be corrupt/incomplete
|
500 - An error has occurred.
Failed to open easytable.xml during version check - installation may be corrupt/incomplete. EasyTable performs an quick version check each time the component is opened in the Administrator area of Joomla. If the easytable.xml file can't be found this indicates that the installation was not successfully completed by Joomla or that the file has been deleted. As EasyTable manipulates your database directly we don't take the risk of a faulty installation and simply stop the component from proceeding. SolutionYou can try re-installing the component to rectify the problem, but if this fails you will need to either try the General Joomla Installations troubleshooting steps or contact your hosting provider to determine the cause of the problem. Versions Prior to 1.0FC9If you are using versions prior to 1.0FC9 you will experience a similar error that reads as shown below. 500 - An error has occurred.
Failed to open public_easytable.xml during version check - installation may be corrupt/incomplete. Notice the file that couldn't be opened is prefixed with "public_" (in some very rare cases it could be prefixed with "subscriber_" but this has never been reported). This error occurs because your website can't contact the SeePeopleSoftware.com website to check current version data. Due to a coding bug in all versions prior to FC9 the EasyTable component would mistakenly abort it's execution rather than setting the version display message appropriately. SolutionUpgrade to a more recent version of the EasyTable component. |
Why do letters like é, å, ä, ö disappear?
Quick AnswerThe EasyTable component as mentioned elsewhere, uses the CSV parser built into PHP, which probably follows the RFC for CSV files very closely. According to the RFC any field in a CSV file should only contain text data (remember this is an old standard from before the internet, and text basically means a-z, A-Z, 0-9 and a few special characters). Note that those ranges don't include unicode characters outside of the original ASCII character set How do I fix this?The program that's exporting the data should already do that for you (although some don't). Basically Ó would under normal conversion rules change to either O or Ö based on options your program may support. Some common encoding examples: Ö becomes Ö É becomes É Ë becomes Ë Ó becomes Ó A bit more technically Fields in CSV files are considered to be TEXTDATA, where TEXTDATA = %x20-21 / %x23-2B / %x2D-7E The section below expands out the hex values to their common text equivalents: 20:21 23:24:25:26:27:28:29:2A:2B 2D:2E:2F 30:31:32:33:34:35:36:37:38:39:3A:3B:3C:3D:3E:3F 40:41:42:43:44:45:46:47:48:49:4A:4B:4C:4D:4E:4F 50:51:52:53:54:55:56:57:58:59:5A:5B:5C:5D:5E:5F 60:61:62:63:64:65:66:67:68:69:6A:6B:6C:6D:6E:6F 70:71:72:73:74:75:76:77:78:79:7A:7B:7C:7D:7E
|
Why does my Alias have 'q' on either side of it?
NormallyExample Column Heading creates an alias example-column-heading The ProblemExample Column Heading creates an alias qexample-column-headingq DiscussionThe EasyTable component imports text files in a CSV format. Originally text files were all ASCII files but now with the advent of the Internet and multi-byte character sets there are lots of different encoding formats. Combine this with PHP & server settings and different Operating System platforms and it's very easy to get a file that has been exported incorrectly. If you have a decent text editor you can do a "hex dump" and see what is actually in the file. For example, this recent file looked like this dumped: 00000000: EF BB BF 22 52 65 73 75 Ôªø"Resu All those non alphanumeric characters tell us the file isn't properly encoded. The same file saved out as UTF-8 no BOM looks the way it should: 00000000: 22 52 65 73 75 6C 74 20 "Result |
How do I get back to the list view from a record?
| When you are in the Detail view of a record you will see the table name at the top of the view. Clicking on the table name will take you back to the list view. |
Why can't I see any records from the linked table?
|
Firstly have you read this article? If you have then these are the things to check:
|
Why does the Alias of my fields have an 'a' at the begining?
|
The alias is used to create table columns in MySQL and it is used as the CSS class name for the column and table cell. As a result the first character of the alias must be in the range of A to Z, upper or lower case , or [a-z,A-Z]. If EasyTable finds a column label that starts with a number or other non-alphabetic character it will prepend a lower case 'a' to the alias when creating it. For example; Column Label = '18 to 24' Alias = 'a18-to-24' |
How big can the table be?
|
In a strictly technical sense the table can be as big as your database can handle. In reality you can currently upload a 3,000,000 byte (3 MB) CSV file with the component. Practically we could increase it or remove the limit but that would lead to problems in the EasyTable operation at the current stage of development. However, the 3 MB presumes your Joomla installation is setup on an environment that lets you upload a file that large. We have come across some hosting providers that have strange limits - needless to say we don't use them anymore. To answer the next logical question, we hope in a future version to add support for:
|
Can I change the field "Alias" for a column?
|
No. Now that the short answer is dealt with, here's the slightly longer one. The Alias is created at the time the table is created, that's because we actually create a real table in the backend database your Joomla website is running on. The alias is the actual column name in the table in the database, it's also used to for the CSS class label for the column. To answer the next logical question - yes in a future version you may be able to change the alias. Like all feature requests it really depends on how much time we can afford to spend on the EasyTable component. |
What file format does EasyTable support?
|
EasyTable 1.0 imports data in a CSV file format. The CSV format (RFC4180) is defined here, a more readable summary is on Wikipedia. The key part of the error message occurs at very begining: Data insert failed for table: XX in updateETTDTableFrom()
Possibly your CSV file is malformed EasyTable only supports CSV files and it does this using PHP's method fgetCSV method. If the fgetCSV throws up an error you will see that line "Possibly your CSV file is malformed"
|
Minimum Requirements for EasyTable
|
EasyTable is a Joomla 1.5 Native component it does not work with any 1.0 era versions of Joomla. There will not be a version for Joomla 1.0 (unless you want to pay for it to be written, in which case contact us). Having said that EasyTable 1.0 (and all previous versions) have the following requirements. RequirementsJoomla Version1.5.14 ( although it may work on previous versions of Joomla 1.5 { 1.5.10 does have a known issue with packages that we can't address } ) DatabaseMySQL 5.0+ ( FC1 has run on the last version of MySQL 4.1 so it should work ) PHP Version5.1+ ( it's 2010 people - you'll just have to live with it ).
|
RSS
Feed Entries 
This is a common message that usually results from file or directory permissions on the hosting environment. The easiest way to check if the problem is being caused by permission issues is to use Joomla's built-in "System Info" option in the Help menu.

. If your CSV file has Unicode characters the PHP parser probably drops them (either that, or we're made a mistake).