I have installed concerto platform in my computer (Ubuntu 15.04). I am trying to run a simple test but it stops when the second html template is supposed to appear (I've attached the output below).
I have tried to upload RMySQL to current version 10.7 and, after that,restarting apache2 but it is still not working.
Any idea of what can be wrong?
Thanks in advance
Finally a friend had helped me.
If I give full rights to /var/www/concerto/data/1 the problem is solved.
I think something went wrong in my concerto installation when i gave rights to /var/www/concerto/data.
Thank you anyway,
A
Related
I'm developing an R package to be uploaded to CRAN and I keep getting a NOTE when I run
devtools::check_rhub()
The results I'm getting are:
> On fedora-clang-devel (r-devel)
checking HTML version of manual . . . NOTE
Skippping checking HTML validation: no command 'tidy' found
I keep trying to fix it but I'm not sure of where the problem is... also, it runs fine on Windows and Ubuntu.
Does anyone know what I should do? Or is it possible that CRAN will ignore this note?
Thanks in advance.
I tried fixing it by checking for any HTML code that I had, but deleted those.
I tried updating HTML Tidy on my macOS to the newest version, but also nothing changed.
I expect to figure out how to solve this.
This NOTE refers to a piece of system software that is missing on the test platform. You can't fix it by updating any system tools on your local system, as that's not where the problem is. Someone (possibly you?) has already posted an issue on Github, which is the correct place to follow up.
This NOTE should not be a problem for CRAN submission; the only issue is that your HTML is not being validity-checked on Fedora. Presumably any validity problems will be discovered when the HTML is checked on other platforms; the only (unlikely) edge case would be where you have HTML generated by your package that for some reason would fail validity checks only on Fedora.
I was having the same issue on Windows and fixed it by installing the latest version of Rtools (specific for R Devel 4.3). Not sure if Linux uses Rtools or simply has the included programs already installed, but perhaps updating any Linux programs that correspond to the Rtools programs might help.
I notice that the mosaic package was updated a few days ago (1.8.3). Since then, I keep getting an error message that mosaic can't load.
> library(mosaic)
Error: package or namespace load failed for ‘mosaic’:
object ‘compare’ is not exported by 'namespace:mosaicCore'
The package installed, and it works on a PC. I've tried reinstalling R and R studio to be sure but I keep getting the same error. Anyone who has had the same problem or figured out how to fix it?
It works fine on a Mac (it was developed on a Mac).
I'm not sure how you did your installation, but you also need to have an updated version of mosaicCore. Looks like that didn't happen for some reason.
I'd suggest updating mosaicData and ggformula as well, if your update method didn't trigger those already. All four packages went to CRAN last week. If it has been awhile, you might do update.packages().
My daughter met the same problem today.
As per the suggestion here, we install the newest mosaicData, and the problem remains.
Then quit Rstudio, restart Rstudio, after running library(mosaic) again, it mentions that several packages are missing,
After installing the missing packages, everything is ok.
I had other people in my class that had the same issue. Similar to the above answer, i had to:
Uninstall/delete the package ggformula
Update the package mosaicCore
Reinstall ggformula
Reinstall mosaic
That is how i was able to resolve the issue.
i have issue when i run fat jar of actframework which is created using shade plugin.
java -jar jarFile
I still got App not found issue. What is missing ? Appreciate for you help. Thanks.
#user3242789 please fire a bug report on https://github.com/actframework/actframework/issues
Actually this is because your app dir is not set correctly. Checkout http://actframework.org/doc/faq
I am trying to download a simple HTML editor, Aptana,and I keep getting the following error, "Failed to aquire installer_nodejs_windows.msi file:CSC error." Has anyone encountered this before? If so, what's the workaround? Thanks in advance.
Go to https://nodejs.org/en/ and download and install node.js. Try your installation again. There are other users who have had slightly different problem than yours and here's how they solved it.
For the last several days, I've been struggling to get ruby on rails to work on my mac. The main culprit is MySQL. Every time I fix one thing, another error shows up. I upgraded/downgraded MySQL to play nice with ruby, rail and gems, but nothing. My latest error is:
!!! The bundled mysql.rb driver has been removed from Rails 2.2. Please install the mysql gem and try again: gem install mysql.
/!\ FAILSAFE /!\ Wed Aug 05 21:09:23 -0700 2009
Status: 500 Internal Server Error
dlopen(/usr/local/lib/ruby/site_ruby/1.8/i686-darwin9.7.0/mysql.bundle, 9): Library not loaded: /usr/local/mysql/lib/libmysqlclient.16.dylib...
I don't have libmysqlclient.16.dylib; just *.15.dylib. Tried all the techniques, even installed or tried to install ruby-mysql-0.2.6 posted at tmtm.org
FYI: Last error prior to the one stated above had to do with authentication.
Appreciate any help.
Well, this question is a bit old already, but since I got here after getting the same error (but on LINUX), I would like to post my solution for future reference.
I simply had to install ruby-mysql.i686
yum install ruby-mysql.i686
Hope it helps somebody else in the future... tnx
Have you installed Xcode Developer tools? You can download it for free at http://developer.apple.com/.
Whenever I have issues with Ruby and MySQL, I never had Xcode installed. Could be wrong.
Answering my own question.
I don't know why and I don't know how, but took #Garrett's advice and re-installed Xcode. That didn't do anything. Went ahead and upgraded MySQL after that, which I had done before, and voilá! it worked. I'm guessing both re-installations finally got it working somehow. Weird!
Try using the below command . Provide the location of the mysql directory in your Mac .
sudo gem install mysql -- --with-mysql-dir= /usr/local/mysql
It looks like you haven't specified the location of mysql directory .
Good luck !