Coder Social home page Coder Social logo

tiborsaas / iscaffold Goto Github PK

View Code? Open in Web Editor NEW
88.0 19.0 65.0 10.41 MB

A CRUD application generator for CodeIgniter

Home Page: http://tiborsaas.github.io/iScaffold

License: GNU General Public License v3.0

PHP 32.67% JavaScript 1.03% CSS 1.01% ApacheConf 0.01% HTML 65.09% Smarty 0.19%

iscaffold's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

iscaffold's Issues

Setup error on MsSql

Hi,

when trying to setup iScaffold with MSSQL I get an error when creating sf_config table.

The error massage says Wrong syntax in the near of 'sf_config'.

Falsche Syntax in der Nähe von 'sf_config'.

CREATE TABLE IF NOT EXISTS sf_config ( sf_id INT(5) UNSIGNED AUTO_INCREMENT PRIMARY KEY, sf_table VARCHAR(64) DEFAULT '' NOT NULL, sf_field VARCHAR(64) DEFAULT '' NOT NULL, sf_type VARCHAR(16) DEFAULT 'default' NULL, sf_related VARCHAR(100) DEFAULT '' NULL, sf_label VARCHAR(64) DEFAULT '' NULL, sf_desc TINYTEXT NULL, sf_order INT(3) NULL, sf_hidden INT(1) DEFAULT '0' NULL )

Filename: C:\www\iScaffold\system\database\DB_driver.php

Line Number: 330

My Environemnt:
Windows 2008 R2
PHP Version 5.2.17
Apache 2.2
DB: MSSQL 2005 express

Best regards
-Alex

DB select error

Hi Tibor,

First of all, nice to see scaffolding for ci and i like the intro video. I didn't get a word from it :) but that's because i don't speak the language. Bulgarian here. :)

I get this error when i try to select database: (the db exist and it's specified in the database.php as well as the username)

The drop down is white and have some li's but each one of them is:

<a rel="&lt;?=$db?&gt;"><!--?=$db?--></a>

When i try to select something the open config button appears but when i click on it i get this:

A Database Error Occurred
Unable to select the specified database: %3C
Filename: D:\Repository\wamp\www\code\system\database\DB_driver.php
Line Number: 140

And btw i have the output folder writable but it doesn't show up as “The output directory is writable, have fun using iScaffold”

This is windows 7 with wamp. Any advice? BTW the database is empty but i also tried with a DB with tables and i get the same result.

root folder structure and config:

application
   config.php
       $config['base_url']  = 'http://localhost/code/';

   database.php
       $db['iscaffold']['hostname'] = 'localhost';
       $db['iscaffold']['username'] = 'root';
       $db['iscaffold']['password'] = '';
       $db['iscaffold']['database'] = 'code';

output - writable
repo
system
templates
index.php

Any help will be appreciated.

configurator not saving changes

Morning. Thanks again for all your efforts on this project. Looks great. I haven't had a chance to dig around to see what's going on, but the version I downloaded from here isn't writing changes to the sf_config table. Any thoughts?

Installation instructions are incomplete

The installation instructions are unclear.

For example, here is what I tried:

  1. mkdir $HOME/htdocs
  2. cd $HOME/htdocs
  3. unzip ../software/codeigniter.zip
  4. mv CodeIgniter_/_ .
  5. rmdir CodeIgniter*
  6. Edit application/config/config.php
  7. Edit application/config/database.php
  8. unzip ../software/iscaffold.zip
  9. cp -R kowdermeister-iScaffold-b71dd49/* .
  10. mkdir output
  11. chmod 777 output
  12. Browse to http://localhost/~user/

According to the installation instructions, I should have seen a big green line. Instead, I saw a blank page. Please update the installation instructions to show exactly how to install the software.

Configurator - Forbidden

I download iscaffold..

edit database :

db['iscaffold']['hostname'] = 'localhost';
$db['iscaffold']['username'] = 'root';
$db['iscaffold']['password'] = '';
$db['iscaffold']['database'] = 'tesiscaffold'; // Just pick on of your database
// you can select later which you want to use
$db['iscaffold']['dbdriver'] = 'mysql';

Config :

$config['base_url'] = 'http://localhost/iscaffold/';

firts time i can view DB list .. so i change with following Kuporpal in last issue ( DB select Error )
"

  • And change:
  • "

    list DB fixed ....

    I choice tesiscaffold DB an click " Open configurator "

    and warning agains :

    Database table "sf_config" does not exists, click here to create it.

    I click " click here to create it. "

    and when i click it showing :

    Forbidden

    You don't have permission to access /iscaffold/< on this server.

    some body please help.. sorry for my bad english

    N to N relationship

    I want to make a N to 1 relationship for a ticket crud including tickets and many batches. I will use your crud generator to create me admin site but I want to know if the generator can make this or I have to set it up manually to include the batches in the same form.

    Thanks.

    file directory

    i got this error but all the directory is correct...pls help me guys
    Warning: require(/application/libraries/dotenv/src/Dotenv.php): failed to open stream: No such file or directory in C:\xampp\htdocs\iScaffold\index.php on line 9

    Fatal error: require(): Failed opening required '/application/libraries/dotenv/src/Dotenv.php' (include_path='C:\xampp\php\PEAR') in C:\xampp\htdocs\iScaffold\index.php on line 9

    Warning installation error [model_iscaffold]

    Hi, when I tried to create an application with this tools, I receive this message

    A PHP Error was encountered
    Severity: Notice
    Message: Undefined offset: 0
    Filename: models/model_iscaffold.php
    Line Number: 101

    I found the line
    $fields_id = $fields[0];
    and I changed by this
    $fields_id = count($fields) > 0 ? $fields[0]: '';

    Connection problem with sqlsrv driver

    Hi

    I have two databases the first is MariaDB it's works.

    But when I try connect to MS SQL with sqlsrv driver or pdo_sqlsrv driver cannot connect.

    Do you know something about that?

    This is the error

    Unable to connect to your database server using the provided settings.

    Filename: C:\Users\np\Documents\Proyectos\crudIgniter\system\database\DB_driver.php

    Line Number: 124

    And this is my config

    $active_group = 'iscaffold';
    $active_record = TRUE;

    $db['iscaffold']['hostname'] = $_ENV['DB_HOST'];
    $db['iscaffold']['hostname'] = $_ENV['DB_HOST'];
    $db['iscaffold']['username'] = $_ENV['DB_USER'];
    $db['iscaffold']['password'] = $_ENV['DB_PASS'];
    $db['iscaffold']['database'] = $_ENV['DB_NAME'];

    $db['iscaffold']['dbdriver'] = 'sqlsrv';
    $db['iscaffold']['dbprefix'] = '';
    $db['iscaffold']['pconnect'] = TRUE;
    $db['iscaffold']['db_debug'] = TRUE;
    $db['iscaffold']['cache_on'] = FALSE;
    $db['iscaffold']['cachedir'] = '';
    $db['iscaffold']['char_set'] = 'utf8';
    $db['iscaffold']['dbcollat'] = 'utf8_general_ci';
    $db['iscaffold']['swap_pre'] = '';
    $db['iscaffold']['autoinit'] = TRUE;
    $db['iscaffold']['stricton'] = FALSE;

    And the environment is IIS 10 php 7.0.2 for windows and the driver is php_sqlsrv_7_nts_x64.dll

    Thank you
    Cheers

    Installation

    Hi,
    I followed all the steps but when I open iscaffold I have a blank page. I tried to install on Mac with MAMP, I activated 775 permissions for the file in question, but still does not work. I do not know what's wrong. Please help me if you can.

    Thank you.

    Recommend Projects

    • React photo React

      A declarative, efficient, and flexible JavaScript library for building user interfaces.

    • Vue.js photo Vue.js

      🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

    • Typescript photo Typescript

      TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

    • TensorFlow photo TensorFlow

      An Open Source Machine Learning Framework for Everyone

    • Django photo Django

      The Web framework for perfectionists with deadlines.

    • D3 photo D3

      Bring data to life with SVG, Canvas and HTML. 📊📈🎉

    Recommend Topics

    • javascript

      JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

    • web

      Some thing interesting about web. New door for the world.

    • server

      A server is a program made to process requests and deliver data to clients.

    • Machine learning

      Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

    • Game

      Some thing interesting about game, make everyone happy.

    Recommend Org

    • Facebook photo Facebook

      We are working to build community through open source technology. NB: members must have two-factor auth.

    • Microsoft photo Microsoft

      Open source projects and samples from Microsoft.

    • Google photo Google

      Google ❤️ Open Source for everyone.

    • D3 photo D3

      Data-Driven Documents codes.