Search found 33 matches

by viriisxp
Fri Dec 15, 2023 2:36 pm
Forum: General
Topic: Google adsense implementation and SEO
Replies: 5
Views: 15343

Re: Google adsense implementation and SEO

I've used Bludit for my hobby blog, and it's pretty cool and easy to use. When I wanted to add Google Adsense, it wasn't too hard. I just pasted the ad codes directly into my posts. Sometimes I played around with the HTML to get the ads where I wanted them. SEO-wise, Bludit is okay, but it takes a b...
by viriisxp
Wed Sep 19, 2018 7:34 pm
Forum: General
Topic: view the scheduled post
Replies: 3
Views: 2552

Re: view the scheduled post

ok i have it : // Page number of the paginator, the first page is 1 $pageNumber = 1; // The value -1 tell to Bludit to returns all the pages on the system $amountOfItems = -1; // Only get the pages with the satus published $onlyPublished = false; // Get the list of keys of pages $pages = $dbPages->g...
by viriisxp
Wed Sep 19, 2018 7:08 pm
Forum: General
Topic: view the scheduled post
Replies: 3
Views: 2552

Re: view the scheduled post

I would like to use the system like a calendar : if page date is old than the day of today, it's a past event, and it will appear in past event, and if the date is not yet it's possible to see in "futur event". and only the page in "actualites" (news in french) category only some...
by viriisxp
Wed Sep 19, 2018 6:37 pm
Forum: General
Topic: view the scheduled post
Replies: 3
Views: 2552

view the scheduled post

Hi, i know it's a singular request but . i have this : $categoryKey = 'actualites'; $category = getCategory($categoryKey); foreach ($category->pages() as $pageKey) { $page = buildPage($pageKey); // On récupère la date de l'évènement puis on découpe jour/mois et année $chaine = $page->date(); echo '<...
by viriisxp
Sun Feb 18, 2018 2:19 pm
Forum: General
Topic: Api for V2
Replies: 4
Views: 2625

Re: Api for V2

hi again and thx for your answer, i will try this, but did you think that gonna work for tag ?
by viriisxp
Sat Feb 17, 2018 9:59 pm
Forum: General
Topic: Api for V2
Replies: 4
Views: 2625

Re: Api for V2

yes, i check it. i found some of my solution. Second question, with this api is it possible to grab content by JS ? an other question : i try to do something like this : $categoryKey = 'jeux'; $category = getCategory($categoryKey); foreach ($category->pages() as $pageKey) { $page = buildPage($pageKe...
by viriisxp
Sat Feb 17, 2018 7:50 pm
Forum: General
Topic: Api for V2
Replies: 4
Views: 2625

Api for V2

hi, i would like to update my old version of bludit but in the last version i do something like this for the api : <?php $url = 'https://www.mywebsite.fr/api/show/all/pages/b547d5bed80a3435ba9fac89bcb34ba6'; $result = file_get_contents($url); $data = json_decode($result, true); foreach($data as $pag...
by viriisxp
Mon Nov 28, 2016 6:05 pm
Forum: General
Topic: Bludit v1.5.2 "Learning to Fly"
Replies: 8
Views: 4970

Re: Bludit v1.5.2 "Learning to Fly"

Hi, did it's possible to have an option to be alerted for a new version available ?
by viriisxp
Tue Sep 13, 2016 3:32 pm
Forum: General
Topic: ssl security
Replies: 14
Views: 7072

Re: ssl security

ok, i found it : my .htaccess config : # Enable rewrite rules RewriteEngine on RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*) https://www.mywebsite.fr/$1 [QSA,L,R] Header set Strict-Transport-Security "max-age=15811200" env=HTTPS and my code into home.php : <?php $url = 'http://www.mywebs...
by viriisxp
Tue Aug 30, 2016 6:36 pm
Forum: General
Topic: ssl security
Replies: 14
Views: 7072

Re: ssl security

you don't have a solution for me ?