List of commits:
Subject Hash Author Date (UTC)
fix(cke): Change include syntax. b7f33d2889810311688e4f39fbf20e46ecb837ad Gabi 2020-03-22 16:29:56
feat(cke): Check query params. b3a97739e100e8a5f612bdf2b04df02c5bb9ccda Gabi 2020-03-22 16:12:31
feat(cke): Htaccess 0516fa010d248f3b3064ad2efa83b62ef512b3a7 Gabi 2020-03-22 16:10:50
feat(cke): Initial PHP structure. 236cf15b8bb7f067063729f607a846ffd25c2fc6 Gabi 2020-03-21 16:59:32
test(cke): Test deploy 1bbd41c287f88269ff8362773212e2509b0741b5 Gabi 2020-03-21 16:19:50
build(cke): CPanel repo 941c0b1d9fe0a66d1bb78bf3dcdd72d64145ae13 Gabi 2020-03-21 16:04:36
About us 2ecf2ec89d59fa0b5bd350e16fc29ecb4d4b1ec8 Gabi 2020-03-12 16:42:44
Initial commit 82b9fdfd39cb6352971417fed862fd0cc0b6a938 Gabi 2020-03-12 15:02:54
Commit b7f33d2889810311688e4f39fbf20e46ecb837ad - fix(cke): Change include syntax.
Author: Gabi
Author date (UTC): 2020-03-22 16:29
Committer name: Gabi
Committer date (UTC): 2020-03-22 16:29
Parent(s): b3a97739e100e8a5f612bdf2b04df02c5bb9ccda
Signer:
Signing key:
Signing status: N
Tree: f75a77de5f74c3e5d6fd4612aa6bd0cb9f3738ad
File Lines added Lines deleted
cke.php 1 1
php/bootstrap.php 1 1
php/common/layout.php 2 2
php/pages/404.php 1 0
File cke.php changed (mode: 100644) (index 43fcfc6..c809e8d)
1 1 <?php <?php
2 include('php/bootstrap.php');
2 include 'php/bootstrap.php';
File php/bootstrap.php changed (mode: 100644) (index d1ea16a..91fa3cd)
... ... define('APPDIR', dirname(__FILE__) . '/');
4 4 // handle request params // handle request params
5 5
6 6 try { try {
7 include ('common/layout.php');
7 include 'common/layout.php';
8 8 } catch (Exception $e) { } catch (Exception $e) {
9 9 echo $e; echo $e;
10 10 } }
File php/common/layout.php changed (mode: 100644) (index 98e65d7..37c2a83)
2 2 <html lang="en"> <html lang="en">
3 3
4 4 <?php <?php
5 include('head.php');
5 include 'head.php';
6 6 ?> ?>
7 7
8 8 <body class="loader"> <body class="loader">
 
30 30 </pre> </pre>
31 31 <?php <?php
32 32
33 include(APPDIR . "/pages/home.php");
33 include APPDIR . "/pages/home.php";
34 34 ?> ?>
35 35
36 36 </body> </body>
File php/pages/404.php added (mode: 100644) (index 0000000..b1f1aa4)
1 <p>File not found.</p>
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/bitvice/cke

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/bitvice/cke

Clone this repository using git:
git clone git://git.rocketgit.com/user/bitvice/cke

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main