-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can't make it work #39
Comments
Did you register the routes? |
yes,i follow your instruction |
it's something like |
i change it into but still getting the same error.... >< |
What url is giving a 404? |
what do you mean by absolute path? |
An absolute url, not a relative url. But what url gives you the 404? |
view-source:http://localhost/bkculv/public_html/admins/artikel/1/elfinder/tinymce still don't understand what you mean by absolute url... can a little example? |
If you use the Laravel url helper, is should create an absolute url ('http://domain.com/elfinder/tinymce'). Now you are using relative urls, so the url is appended to the current url. You can use a leading / to make it relative the root, but that doesn't work for you because you have your app in a subfolder. |
so what should i insert into file:? i tried file: url('elfinder/tinymce') but when it not even showing file browser modal/windows/dialog |
Then you probably haven't configured your paths for you Laravel app right. Sorry I can't really help you with this information, please try to understand how urls/routes work/are generated. And you better use a vhost or something so you don't have to have 'bkculv/public_html/' in your urls. |
well i'm newbie in laravel and still learning it... |
okay, i manage to make it works ahahhaa but after i tried to use it and upload images and put in into my article, when i want to show it in it parse wrong image file path... instead of http://localhost/bkculv/public_html/files/wallhaven-76098.jpg , it parse http://localhost/files/wallhaven-76098.jpg what do i miss? |
You should try to make a vhost configuration, so that you can use http://bkculv.local instead of http://localhost/bkculv/public_html/ |
but is it will work if i publish my website/project into shared hosting? |
On shared hosting you probably also have 1 domain for you app, not a subfolder, right? |
yes... |
okay thank you, after reading about vhost i already get sense what is going on ahhahahaa... so once again thank you for your friendly and fast respond and also for your great component/plugin(it's called that right?) |
so i tried to integrated it into laravel 4.2 and getting
Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException
here is my setup:
tinymce.init({
selector: "textarea",
theme: "modern",
skin: 'light',
plugins: [
"advlist autolink lists link image charmap print preview hr anchor pagebreak",
"searchreplace wordcount visualblocks visualchars code fullscreen",
"insertdatetime media nonbreaking save table contextmenu directionality",
"emoticons template paste textcolor colorpicker textpattern"
],
toolbar1: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image",
toolbar2: "print preview media | forecolor backcolor emoticons | fontselect fontsizeselect",
image_advtab: true,
templates: [
{title: 'Test template 1', content: 'Test 1'},
{title: 'Test template 2', content: 'Test 2'}
],
file_browser_callback : elFinderBrowser
});
and i put my tinymce file in public_html/js
The text was updated successfully, but these errors were encountered: