Jump to content
We've recently updated our Privacy Statement, available here ×

iReport on Mac OS X


johnthuss

Recommended Posts

iReport on the Mac is pretty awful. Particularly, the keyboard shortcuts (cut and paste) use the control key instead of the command key (in the Expressions editor is where I noticed).

 

Looking at the forum, it looks like this has been the case for at least a couple of years. Is this ever going to get any attention or is it not a concern of the developers? Are you depending on outside contributions to make this better?

 

Thanks,

John

Link to comment
Share on other sites

  • 3 weeks later...
  • Replies 3
  • Created
  • Last Reply

Top Posters In This Topic

Hi gyorgyk,

 

I had the same problem. I'm runing a Mac OS X Leopard 10.5.3.

 

To run iReports you have to do it throw the console.

 

Go to iReport folder. For example:

Code:

$ cd /Applications/iReport-3.0.0/

Then, grant execute access to the iReports.sh script

Code:
[code]
$ chmod u+x iReports.sh

After that, run it

Code:
[code]
$ ./iReports.sh

 

If you have some problem similar to this:

Code:
[code]
/bin/bash^M: bad interpreter: No such file or directory

You have to convert line breaks to unix format.

it can be done in 2 ways.

 

- Solution 1:

With dos2unix. you can install it throw macports

Code:
[code]
$sudo port install dos2unix

And then:

Code:
[code]
$ dos2unix iReports.sh
$ dos2unix bin/startup.sh

 

- Solution 2:

Code:
[code]
$ vi iReports.sh
: set ff=unix
: wq

 

Code:
[code]
$ vi bin/startup.sh
: set ff=unix
: wq

 

At last but not least,

Code:
[code]
$ ./iReports.sh

 

Happy reporting :D

 

Goku2

Link to comment
Share on other sites

  • 2 years later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...