"ENOENT: no such file or directory..." in ember.js - ember.js

I really don't know why I get this errormessage if I want to start the emberjs server.
ENOENT: no such file or directory, stat
'D:\EmberJS\super-rentals\tmp\source_map_concat-input_base_path-Sd8yH8aX.tmp\0\vendor\ember-components\vendor\ic-styled\main.js'
I didn't do anything.
I edit my app and it still works.
After one more edit my app doesn't work anymore.
I searched in github for this issue and in google but I can't find any solutions. Now I am here and I hope somebody can help me with this problem.
Thank you!

Related

Setting up a blog on AWS Cloud9

I'm new to programming, and i've been following the upskill course for about 2 weeks now. Everything was going great untill yesterday. I started the Deep Dive: Build a Blog section that uses Cloud9 and Ruby to build a blog. I have tried many times to follow the exact same path as the instructor but i keep on having the same problem.
The commands that I input in the terminal are the following (I do this on a new environment with the default settings).
$ rails new blog
Then the instructor ask us to change the 'sqlite3' line in the file called "gemfile" into gem 'sqlite3', '1.3.13'. To use the same version as him.
I then inpunt :
cd
cd environment
cd blog
bundle install
bundle update
rails generate scaffold Post title:string body:text
rake db:migrate
rails server
It is at this point that the problem occurs. The instructor terminal's response 3 more lines that i don't have . In my case the output stops at Ctrl c to shut down.
Plus after that the instructor click preview running application and is sent to the "ruby welcome page". He then get rid of a part of the URL to go to the blog. In my case the URL is completely different from his, it looks like that https://c187d78accd944209c8f91023e991d71.vfs.cloud9.us-east-2.amazonaws.com/ (actual URL). and his like that
Please help to solve this i can not see anything in preview page.
Do you guys know what I've been doing wrong ?
Thank you for reading all of these it's my first time posting so i hope it's kind of understandable.
Have a great day
I am trying to solve this problem but i can't solve this.
please help me why i am not see anything in preview page ?

How do I find the public URL of the RStudio connect server?

I am trying to publish an RMarkdown document that I have edited in RStudio. but it's unfortunate that I am quite confused the way I need to go about this publishment.
I am requested to Enter the Public URL of the RStudio Connect server:
I searched through internet, how I can find this URL but I have failed to find it. I even filled the form on https://rstudio.com/products/connect/ but did not yield any positive result.
Kindly help to know what is wrong with my Rstudio connect and what I do to address this issue.
thank you in advance!
Below is the the screenshot of the message I am being given.
enter image description here
I finally found that the error I was experiencing is due to the location of the project location (directory) I am working with which was different from the current directory.
In addition to this, I found that I needed to knit the document to html before proceeding to publishing it.
The issue has been now addressed, thanks!

Joomla Kunena Fourm Remote path issue

I have been trying to fix this without success.
Lately, I am trying to build up a forum using Kunena forum with joomla. I build it all in my local server. When I uploaded the files to the remote server, I got the problem when I access the backend Kunena control panel as follow:
500 - An error has occurred.
load error: failed to find /Applications/MAMP/htdocs/abacdeal1/media/kunena/less/bootstrap/kunena.less
I couldn't find where to change that directory.
Thanks a lot in advance for the help!
I solved the issue as I was having the same problem myself.
Go to root/cache/kunena
In there is a cache file for less which all you need to do is simply delete.
Please re-download the Kunena package from http://www.kunena.org/download, extract files on your PC, open packages folder -> kunena_media_v3.0.0.zip (extract-it) -> open less folder -> open bootstrap and here is "kunena.less". Now, upload this file to /Applications/MAMP/htdocs/abacdeal1/media/kunena/less/bootstrap/ on your server and refresh your site.
Now it must works!
I hope it will works.
PS: when you copy (upload files) from your PC to your own server, some files may not copy correct because of files permissions.
Using Joomla 3.6 and Kunena 5.0.
I built a test site and them moved it over to my production domain name. That caused Load Error Failed to Find Kunena Crypsis.less whenever I clicked on the menu item for Kunena Forum.
My solution was to clear cache in Joomla.

contents of config directory created by scaffold tool

Would someone please explain why directory "config" of the application created by the scaffold tool has favicon.ico file in it. it seems to me that .ico files belong to the "static" directory. why is it there?
thanks
konstantin
We use SO for help questions. please bring these types of question to the yesod mail list.

Confused about the urls in app-engine-patch

In app-engine-patch (http://code.google.com/p/app-engine-patch/) ...
How on earth does the sample application know that the /person url maps to the myapp application?
I'm trying to understand the url structure to everything and
I've looked through the urls and I can't see it anywhere...
Source can be seen on mercurial here:
http://bitbucket.org/gumptioncom/appenginepatch-sample/src/
The application is running here:
http://aep-sample.appspot.com/
If anyone could help me out on this one I'd really appreciate it, thank you.
So I figured it out for anyone that wants to know ...
The url mapping that sends /person to myapp is in the urlsauto.py file under the myapp directory.
You can see it clearly here:
http://bitbucket.org/gumptioncom/appenginepatch-sample/src/tip/myapp/urlsauto.py