Code

Support for MenorahDirectory - Online Video Classes Tutoring Script

Support for MenorahDirectory - Online Video Classes Tutoring Script

Cart 536 sales

DigiSamaritan supports this item

Supported

This author's response time can be up to 1 business day.

Popular questions for this item

If you get “no input file specified” error on goDaddy web host you need to change the .htaccess as follows

<IfModule mod_rewrite.c> 
RewriteEngine On 
# Removes index.php
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC] 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ /index.php?/$1 [L] 
</IfModule> 

I’m getting 404 page not found error after installation.

In this case your server needs the RewriteBase option to be set. Open the .htaccess file in the main folder and add the following line to it:

RewriteBase /

The file should look like this:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
RewriteBase /

If you have installed the application into a sub folder you need to add the sub folder name after the / The .htaccess file should look like this in this case:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
RewriteBase /your_sub_folder/

If you get a 500 Error after the installation try the following as .htaccess

RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|robots\.txt)
RewriteRule ^(.*)$ /index.php?/$1 [L]

Windows Server with IIS

If you are using a Windows web server with IIS installed, the .htaccess won’t work so you need to edit the web.config like this (make sure the rewrite extension is installed on your IIS server ->http://www.iis.net/downloads/microsoft/url-rewrite):
<?xml version="1.0"?>
<configuration>
   <system.webServer>
   <defaultDocument>
     <!-- Set the default document -->
      <files>
        <remove value="index.php" />
        <add value="index.php" />
      </files>
    </defaultDocument>
 <httpErrors errorMode="Detailed"/>
  <rewrite>
         <rules>
            <rule name="Main Rule" stopProcessing="true">
   <match url=".*" />
       <conditions logicalGrouping="MatchAll">
       <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
       <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
       </conditions>
               <action type="Rewrite" url="index.php" />
            </rule>
         </rules>
      </rewrite>
   </system.webServer>
</configuration>

Info ! CRUD operations disabled in DEMO Version

If you get above message while editing your admin settings , please make sure below variable set to FALSE

File Location: application\core\MY_Controller.php

line number : 36

Demo True : $this->is_demo = 1; // it will disable all of system crud operations

Demo False : $this->is_demo = 0; // it will enable all of system crud operations

Update from Version1 to Version 2

Hi , Once you plan to update the system from Version 1 to Version 2 , Please follow the steps below.

Step1: Download the new update from Codecanyon.

Step2: Unzip the files , go to folder “web/application/controllers/Update_db.php” and copy the files.

Step3: Upload the Update_db.php controller to application/controllers in your existing Version 1 Files.

Step4: Run the system like this : http://your-domain.com/update_db

Step5: Replace all your files with Version 2 Files.

Done :)

Note 1: Kindly keep a backup of your old files.

Anything went wrong ? contact us on Skype digital.vidhya / Email digisamaritan@gmail.com .

Want help in upgrading ? contact us in the above email with your cPanel details.

Thanks

Show more

Contact the author

This author will respond to buyers' questions and provides limited support through their own support system.

Item support includes:

  • Availability of the author to answer questions
  • Answering technical questions about item’s features
  • Assistance with reported bugs and issues
  • Help with included 3rd party assets

However, item support does not include:

  • Customization services
  • Installation services

View the item support policy

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey