Purchase Task Cron Mailer Pro

A custom ProjectFork process delivering task email notifications to users via cronjob.

Read me prior to purchasing!

All pricing in AUD

Purchase iCal Calendar Subscription Pro

A custom panel for ProjectFork 3.0.x providing export of Project Calendar to iCal

All pricing in AUD

Purchase PF Project Status Module

A configurable Joomla module that displays your Projectfork Project percent completed Status with animated progress bar.

This is a Joomla Module compatible with Joomla 1.7.x

All pricing in AUD

Purchase PF Task Times CB Plugin

A configurable Community Builder plugin that displays your Projectfork task times in your CB profile and allows you to export to CSV.

This is a Community Builder Plugin compatible with Joomla 1.7.x, CB 1.7.x and requires Projectfork (3.0.x) to be installed.

All pricing in AUD

Purchase Project and File Uploads Limiter

A custom ProjectFork process and Joomla plugin that limits the number of Projects a user can create and the number of files a user can upload.

File upload limits work with both Filemanager and Filemanager Pro
All pricing in AUD

Purchase PF Assigned Tasks CB plugin

A Community Builder plugin that displays your Projectfork assigned tasks in your CB profile.

This is a Community Builder Plugin compatible with Joomla 1.7.x, CB 1.7.x and requires Projectfork (3.0.x) to be installed.

All pricing in AUD

Purchase Reports Dashboard Pro Stable 1.0.3

Reports Dashboard Pro for ProjectFork v3.0.x and Joomla 1.5, Joomla 1.6 and Joomla 1.7
Read me prior to purchasing!

All pricing in AUD

Coming Soon: Reply By Email and Project Export/Import

Reply By Email: A custom ProjectFork process that will enable users to reply to comments and discussions directly from their inbox! No longer will you need to log into Projectfork to reply to a posted comment!

Due for release Mid February 2012!


Project Export/Import: A custom ProjectFork process that will enable users to export/import their Projects, tasks, milestones to/from Excel.

Due for release Late February 2012!


Welcome, Guest
Username Password: Remember me
  • Page:
  • 1

TOPIC: accents problems

accents problems 1 year, 11 months ago #30

  • gabbo
  • OFFLINE
  • Fresh Boarder
  • Posts: 12
  • Karma: 0
Hi, i´m from México, and I have problems with the special characters like:

á, é, í, ó, ú, Á, É, Í, Ó, Ú, and the Ñ and ñ

The problem is when the dropdown selector choose a State with those characters send me an error message like this: input not autorized

The thing weird is that the countries selector shows fine the characters... but the problems came when the state selector shows the states... they came with simbols, not characters... any ideas?

Re:accents problems 1 year, 11 months ago #33

  • angek
  • OFFLINE
  • Administrator
  • Posts: 206
  • Karma: 4
I understand what you are saying and can verify that this is a problem with the validation routine (regex). I'll post a quick fix for it here shortly for testing purposes then release a new version.

Re:accents problems 1 year, 11 months ago #35

  • angek
  • OFFLINE
  • Administrator
  • Posts: 206
  • Karma: 4
using your cpanel or whatever other means you have to access the files on the server navigate to: components/com_comprofiler/plugin/user/plug_countryandstatefield and open the countrystatefield.php file.

There are 2 places where validation takes place: once for the selected Country and once for the selected State.

find this line (should be around line 137):
$validated = preg_match('/^[A-Za-z- _\']+$/', $value);

and replace it with:
$validated = preg_match('/^[A-Za-z- _\'\x{00C0}-\x{00FF}]+$/mu', $value);
making sure that the above code is all on a single line.

now continue searching for the same line (should be around line 189) and again replace it with:
$validated = preg_match('/^[A-Za-z- _\'\x{00C0}-\x{00FF}]+$/mu', $value);


Please let me know if this fixed the accented character problem for you and I will release a bug fix version.
Last Edit: 1 year, 11 months ago by k0$t@$.

Re:accents problems 1 year, 11 months ago #37

  • gabbo
  • OFFLINE
  • Fresh Boarder
  • Posts: 12
  • Karma: 0
i made the changes... but the problem persist... one question. I must change the characters like this á for any special code in the states.js file?

Re:accents problems 1 year, 11 months ago #38

  • gabbo
  • OFFLINE
  • Fresh Boarder
  • Posts: 12
  • Karma: 0
ok ok... i have to use unicode in the javascript file... thankyou very much!!!!

Re:accents problems 1 year, 11 months ago #39

  • angek
  • OFFLINE
  • Administrator
  • Posts: 206
  • Karma: 4
gabbo wrote:
ok ok... i have to use unicode in the javascript file... thankyou very much!!!!

Re:accents problems 1 year, 11 months ago #40

  • gabbo
  • OFFLINE
  • Fresh Boarder
  • Posts: 12
  • Karma: 0
It works!!! Thank you very much for your help!!!
  • Page:
  • 1
Time to create page: 0.38 seconds