Menu

Home

Serpent's Byte

Welcome!

This is the last Release of this Script under the Name MaterializedCMS. You can do with it whatever you want.

In very near Future we are going to Release an Version of this Script wich is much more stable and with much more Features.

But when we throw it out it will have another Name you should check our Projects from time to time if you are interested in the Final Version of this CMS.

This is the Alpha but the next throwout will be alot greater than this version thats why we are going to give it another name.

NOTE: This Content is compatible with the new Release wich is coming soon.


Discussion

  • Serpent's Byte

    Serpent's Byte - 2022-09-30

    Please go to web.config and Edit the IP and Domain Name to make everything work fine:

        <security>
            <requestFiltering>
                <fileExtensions applyToWebDAV="false">
                     <add fileExtension=".csv" allowed="false" />
                     <add fileExtension=".cfg" allowed="false" />
                     <add fileExtension=".dev" allowed="false" />                            
                </fileExtensions>
            </requestFiltering>
          <authorization>
            <!-- Deny all users access to the root of the website, since it
                 contains this web.config -->
                <remove users="*" roles="" verbs="" />
            <add accessType="Deny" users="*" />
          </authorization>          
        </security>
    
        <!-- REWRITE SECTION -->    
        <rewrite>
    
          <!-- Custom Servername -->
          <outboundRules rewriteBeforeCache="true">
          </outboundRules>
    
          <rules>
                <rule name="CanonicalHostNameRule1" stopProcessing="true">
                    <match url="0.0.0.0" /> **<!-- ENTER YOUR SERVER IP -->**
                    <conditions>
                        <add input="{HTTP_HOST}" pattern="0.0.0.0" /> <!-- ENTER YOUR SERVER IP -->
                    </conditions>
                    <action type="Redirect" url="enteryourdomain.com" /> **<!-- ENTER YOUR DOMAIN NAME -->**
                </rule>
    
            <!-- ###################################
                 #                                 #
                 #          Other Stuff            #         
                 #                                 #
                 ################################### -->
    
                <!-- Rewrite Robot.txt to Robot.php to add php code inside -->
                <rule name="Rewrite Tool - robots.txt to robots.php" stopProcessing="true">
                    <match url="^robots\.txt$" />
                    <conditions logicalGrouping="MatchAll">
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="robots.php" />
                </rule>
    
                <!-- Redirect HTTP to HTTPS --> 
                <rule name="HTTPS force" enabled="true" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                    <add input="{HTTPS}" pattern="^OFF$" />
                    </conditions>
                    <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" />
                </rule>
    
                <!-- Redirect Server IP to Domain Name Canonical FIX -->
                <rule name="IP to Domain Redirect Hit" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTP_HOST}" pattern="0.0.0.0" /> **<!-- ENTER YOUR SERVER IP -->**
                    </conditions>
                    <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" />
                </rule>
    
     
  • Serpent's Byte

    Serpent's Byte - 2022-09-30

    After that open your Domain in browser like http://yourdomain.com/install

    If the installer wont work you can setup the MySQL or MariaDB Login manually.

    But soon we are going to release the newest Version of this Script.

    Also please keep in mind its an Alpha release so there are maybe some bugs or uncompletet theme parts.

    These will be fixed in the newest Version wich is already done but we release it if it is fine to us.

    GEOIP also dosnt work no more we dont know why and we might remove that feature for now.

     
  • Serpent's Byte

    Serpent's Byte - 2022-09-30

    Also check /System/Config/Defines.cfg and see if your Database Connection is setup correctly.

    ###############################################################################
    # 
    #                     DATABASE CONNECTION INFORMATIONS
    #
    # NOTE: Insert the Database Information like DB Name, User, Pass & Host below!
    #
    ###############################################################################
    
    # Database connection settings #
    
    // Funktioniert ab PHP 7
    define('RDSB_DATABASE', array(
        'EnterUrDBName', // Set Databasename
        'localhost', // Set Hostname
        'EnterUrDBUsername', // Set Database Username
        'EnterUrDBPassword' // Set Database Password
    ));
    //echo RDSB_DATABASE[1]; // gibt "localhost" aus
    
     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.