rpicms

A CMS for the Raspberry Pi
git clone git://archive.git.mtrnord.blog/RpicmsTeam/rpicms.git
Log | Files | Refs | README | LICENSE

commit 8a46ca7cf553f05553461e352e07dd8d3ec02990
parent 619ce81f702090309720293a51d1d5aba79b386c
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sat, 18 Apr 2015 16:06:14 +0200

start working on Updater

Diffstat:
Minstall/index.php | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/install/index.php b/install/index.php @@ -1,6 +1,6 @@ <!--/** * Module Check -* +* * This script checks for requiered modules. * * @author Marcel Radzio <info@nordgedanken.de> @@ -15,10 +15,10 @@ <?php if (!extension_loaded('mysql')) { if (!dl('mysql.so')) { - print ("MySQL is not installed! Please install this module!"); + echo "MySQL is not installed! Please install this module!"; exit; }else{ - print("MySQL has been successfully loaded"); + echo "MySQL has been successfully loaded"; } } ?> @@ -28,15 +28,15 @@ ################# #Database Config# ################# -unlink('../core/config/connect.db.inc.php'); +//unlink('../core/config/connect.db.inc.php'); ###################### #Blog Basics Config # ###################### -unlink('../core/config/variables.config.php'); +//unlink('../core/config/variables.config.php'); ###################### #temp pass # ###################### -unlink('../core/config/pass.tmp.php') +//unlink('../core/config/pass.tmp.php') ?> <!-- Form to give data to config-generator --> <form action="generate_configs.php" method="post">