Commented Unassigned: Feature Request: Allow each user to have their own...
The current SEO Assistant only allows users to save keywords to a shared data store accessed by all users within the currently selected localization.The keyword list is saved in the DataStore...
View ArticleNew Post: Composite 4.3 Function Preview Bug
I just did an upgrade from C4.1 to 4.2 and then 4.3 (i skipped 4.2 Update 1 since i'm assuming 4.3 included it all). When i start editing pages that have functions on them i either see this:...
View ArticleNew Post: Composite 4.3 Function Preview Bug
Hi @burningice No, it has only a few lines fixed in renderingServer.jshttps://package.composite.net:443/packages/19023814-ae8e-4648-9c95-410cffc51f75-ver-1.0.0.zip
View ArticleNew Post: Composite 4.3 Function Preview Bug
Hi napernik, Thanks for the update package. It's stopped PhantonJS crashing in my install... but now it just times-out after 60seconds, leaving me with a preview-less edit function boxes. My C1 logs...
View ArticleNew Post: Data Urls and Previewing
Hi @RogroGengu That's a really cool feature! We're working on the same direction at the moment, and the feature will be available in the next version of C1. We will have a both ways data routing, so...
View ArticleNew Post: Composite 4.3 Function Preview Bug
I should note that the time-outs (logged above) only appear on pages with multiple (somewhat complex) functions. Single functions on other pages render just fine with PhantomJS now.
View ArticleNew Post: Composite 4.3 Function Preview Bug
Admittedly, I do have five functions on one page, so PhantomJS is probably struggling with this. That shouldn't be a problem, we have many more functions on the same page in our Venus starter site. I...
View ArticleNew Post: Composite 4.3 Function Preview Bug
I tried loading the /Renderers/FunctionPreview.ashx? URL in the browser. The console in Firefox is giving a recursive error with: Error: SyntaxError: illegal character Source File:...
View ArticleNew Post: Composite 4.3 Function Preview Bug
That must be the reason for the PhantomJs timeout (as it is based on WebKit, as Firefox and Chrome do). If you can narrow down which js code cases the loop, you'll get the problem fixed. Also, in the...
View ArticleNew Post: Composite 4.3 Function Preview Bug
I'm not sure that my JQuery file is the problem, When I load that function preview, the image that comes out of PhantomJS is:http://pasteboard.co/1BNaWTub.png What it should be displaying...
View ArticleNew Post: Composite 4.3 Function Preview Bug
Thats the way the Function Preview feature works - there is some logic which processes the output from PhantomJS and cuts out the part related to the function and returns that to the editor as the...
View ArticleNew Post: Composite 4.3 Function Preview Bug
I understand, but in my example:http://pasteboard.co/1BNaWTub.png ... the content below the list of courses is coming from another page containing a different function. PhantomJS appears to be joining...
View ArticleNew Post: Composite 4.3 Function Preview Bug
... the content below the list of courses is coming from another page containing a different function. PhantomJS appears to be joining these two unrelated pages together. Hm.... Sounds almost like...
View ArticleNew Post: Composite C1 from external sites
If you have the ID of the image, you can simply resolve the public url like thisvar id = new Guid(""); var media = DataFacade.GetData<IMediaFile>(f => f.Id == id); var url =...
View ArticleNew Post: Composite C1 from external sites
And this would result in the complete URL of that image? How do I obtain the ID of an image? I'm assuming that the ID is given after uploading, so I would need Composite to return this to me right?
View ArticleNew Post: Composite C1 from external sites
I don't know the specifics on how you upload, but if you do it through your own code its actually yourself who assigns the ID when you create a new IMediaFile instance to be added.
View ArticleNew Post: Composite C1 from external sites
I'll have to get started on the upload mechanism, though I've found some information on that part. I'm quite new to this all, it's part of my graduating project, but if I get this right, I can get the...
View ArticleNew Post: Composite C1 from external sites
You own upload will go something like thisPost a file to the serverRead the posted file into memoryCreate a IMediaFile instance and assign the necessary values - id, name, folder, size etc.Add the...
View ArticleNew Post: Composite C1 from external sites
Alright, those seem clear instructions :) Just wondering, at the first point, 'the server', does that refer to my own, or the Composite C1 server? If I get this correctly, I:let user upload file to my...
View Article