Skip to content

Tag: octobercms

FPDF string output

I use OctoberCms (laravel). This uses own Filesystem https://octobercms.info/docs/services-filesystem-cdn/ That is why I need to take generated $pdf as a string, and than use Storage::put(‘docs/kek.pdf’, $pdf); But it isn’t works, because Output() anyway returns to $pdf only object. Have you…

How to pass a AJAX call on OctoberCMS

Im using OctoberCMS, the user plugin and I want to send data via AJAX to a controller and save the data in the database (in the column of the logged in user). So I created a new Route in my routes.php And a controller And my jQuery calls But nothing works. If I call /saveHighscore in my browser with dummy

OctoberCMS. How to pass variable from page to component?

I have defined a variable in a page: and I want to pass this variable to a component: but this method does not work. How can I do that? Answer I am guessing that you need to pass builderDetails.record to your component ‘Variations’ and then you want to access that variables inside component &#8216…