Your username and password are wrong.

Back

'; login_message($str); } } else { $str = '

Username not found in our record.

Back

'; login_message($str); } } function edit_post($title, $tag, $url, $content, $oldfile, $destination = null) { $oldurl = explode('_', $oldfile); $post_title = $title; $post_tag = preg_replace('/[^A-Za-z0-9,.-]/u', '', $tag); $post_tag = rtrim($post_tag, ',\.\-'); $post_url = preg_replace('/[^A-Za-z0-9,.-]/u', '', $url); $post_url = rtrim($post_url, ',\.\-'); $post_content = '' . "\n\n" . $content; if(!empty($post_title) && !empty($post_tag) && !empty($post_url) && !empty($post_content)) { if(get_magic_quotes_gpc()) { $post_content = stripslashes($post_content); } $newfile = $oldurl[0] . '_' . $post_tag . '_' . $post_url . '.md'; if($oldfile === $newfile) { file_put_contents($oldfile, print_r($post_content, true)); } else { rename($oldfile, $newfile); file_put_contents($newfile, print_r($post_content, true)); } $replaced = substr($oldurl[0], 0,strrpos($oldurl[0], '/')) . '/'; $dt = str_replace($replaced,'',$oldurl[0]); $time = new DateTime($dt); $timestamp= $time->format("Y-m-d"); // The post date $postdate = strtotime($timestamp); // The post URL $posturl = site_url().date('Y/m', $postdate).'/'.$post_url; if($destination == 'admin/posts') { $redirect = site_url() . 'admin/posts'; header("Location: $redirect"); } elseif($destination == 'admin') { $redirect = site_url() . 'admin'; header("Location: $redirect"); } elseif ($destination == 'post') { header("Location: $posturl"); } else { $redirect = site_url(); header("Location: $redirect"); } } } function edit_page($title, $url, $content, $oldfile, $destination = null) { $dir = substr($oldfile, 0, strrpos($oldfile, '/')); $post_title = $title; $post_url = preg_replace('/[^A-Za-z0-9,.-]/u', '', $url); $post_url = rtrim($post_url, ',\.\-'); $post_content = '' . "\n\n" . $content; if(!empty($post_title) && !empty($post_url) && !empty($post_content)) { if(get_magic_quotes_gpc()) { $post_content = stripslashes($post_content); } $newfile = $dir . '/' . $post_url . '.md'; if($oldfile === $newfile) { file_put_contents($oldfile, print_r($post_content, true)); } else { rename($oldfile, $newfile); file_put_contents($newfile, print_r($post_content, true)); } $posturl = site_url() . $post_url; if($destination == 'admin') { $redirect = site_url() . 'admin'; header("Location: $redirect"); } elseif ($destination == 'post') { header("Location: $posturl"); } else { $redirect = site_url(); header("Location: $redirect"); } } } function add_post($title, $tag, $url, $content, $user) { $post_date = date('Y-m-d-H-i'); $post_title = $title; $post_tag = preg_replace('/[^A-Za-z0-9,.-]/u', '', $tag); $post_tag = rtrim($post_tag, ',\.\-'); $post_url = preg_replace('/[^A-Za-z0-9,.-]/u', '', $url); $post_url = rtrim($post_url, ',\.\-'); $post_content = '' . "\n\n" . $content; if(!empty($post_title) && !empty($post_tag) && !empty($post_url) && !empty($post_content)) { if(get_magic_quotes_gpc()) { $post_content = stripslashes($post_content); } $filename = $post_date . '_' . $post_tag . '_' . $post_url . '.md'; $dir = 'content/' . $user. '/blog/'; if(is_dir($dir)) { file_put_contents($dir . $filename, print_r($post_content, true)); } else { mkdir($dir, 0777, true); file_put_contents($dir . $filename, print_r($post_content, true)); } $redirect = site_url() . 'admin/posts'; header("Location: $redirect"); } } function add_page($title, $url, $content) { $post_title = $title; $post_url = preg_replace('/[^A-Za-z0-9,.-]/u', '', $url); $post_url = rtrim($post_url, ',\.\-'); $post_content = '' . "\n\n" . $content; if(!empty($post_title) && !empty($post_url) && !empty($post_content)) { if(get_magic_quotes_gpc()) { $post_content = stripslashes($post_content); } $filename = $post_url . '.md'; $dir = 'content/static/'; if(is_dir($dir)) { file_put_contents($dir . $filename, print_r($post_content, true)); } else { mkdir($dir, 0777, true); file_put_contents($dir . $filename, print_r($post_content, true)); } $redirect = site_url() . 'admin'; header("Location: $redirect"); } } function delete_post($file) { $deleted_content = $file; if(!empty($deleted_content)) { unlink($deleted_content); $redirect = site_url() . 'admin/posts'; header("Location: $redirect"); } } function delete_page($file) { $deleted_content = $file; if(!empty($deleted_content)) { unlink($deleted_content); $redirect = site_url() . 'admin'; header("Location: $redirect"); } } function edit_profile($title, $content, $user) { $user_title = $title; $user_content = '' . "\n\n" . $content; if(!empty($user_title) && !empty($user_content)) { if(get_magic_quotes_gpc()) { $user_content = stripslashes($user_content); } $dir = 'content/' . $user. '/'; $filename = 'content/' . $user . '/author.md'; if(is_dir($dir)) { file_put_contents($filename, print_r($user_content, true)); } else { mkdir($dir, 0777, true); file_put_contents($filename, print_r($user_content, true)); } $redirect = site_url() . 'admin'; header("Location: $redirect"); } } function get_recent_posts() { if (isset($_SESSION['user'])) { $posts = get_profile($_SESSION['user'], 1, 5); if(!empty($posts)) { echo ''; echo ''; foreach($posts as $p) { echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; } echo '
TitlePublishedTagOperations
' . $p->title . '' . date('d F Y', $p->date) . '' . $p->tag . 'Edit Delete
'; } } } // Auto generate menu from static page function get_recent_pages() { if (isset($_SESSION['user'])) { $posts = get_static_post(null); if(!empty($posts)) { krsort($posts); echo ''; echo ''; foreach($posts as $p) { echo ''; echo ''; echo ''; echo ''; } echo '
TitleOperations
' . $p->title . 'Edit Delete
'; } } }