Welcome Guest, Not a member yet? Register   Sign In
Ionize - Free & Open Source creative CMS
#81

[eluser]Michel-Ange[/eluser]
@harly : http://ellislab.com/forums/viewthread/135274/P15/

Edit : This will be corrected in the version 0.92 by using CI encryption lib.
#82

[eluser]Kip zonder Kop[/eluser]
[quote author="Michel-Ange" date="1259185892"]You're certainly not stupid!
This misunderstood simply show us than what can be evident for us is perhaps not evident for users!
We have to create a little backend documentation !

Quote:Will you have me as a contributer after my drag and drop blooper?

... depends... do you make the coffee ? Smile[/quote]

If you introduce new article tags representing the last modification date of the article and maybe even more meta-data I will get you a coffee for sure.

Actually my question was also a serious one about an account on your project server. Can contributers add tickets and what does it take to be a contributer. Things like that. Basically the future project organization.
#83

[eluser]draconus[/eluser]
This looks like a promising CMS, but i am unable to get it to install. After clicking "Save and Go to Next Step" for step 3/4 of the installer, a blank page appears and it never adds the user to the database. However, the database settings in database.php are correct, and the installer is having no issues creating the ionize tables. Please help me to troubleshoot this. Thanks...

Interestingly, I put an echo 'test'; into the installer.php file throughout the _save_user function and resending until it dissapeared, and the echo stopped appearing right after the encrypt function call. Therefor I assume that the function is damaged in some way.

Code:
function _encrypt($str, $data)
    {
        // Get the Access lib config file
        include(APPPATH.'config/access.php');
    
        $hash = sha1($data['username'] . $data['join_date']);
        $key = sha1($config['encrypt_key'] . $hash);

        return base64_encode(mcrypt_encrypt(MCRYPT_BLOWFISH, substr($key, 0, 56), $str, MCRYPT_MODE_CFB, substr($config['encrypt_key'], 0, 8)));
    }
#84

[eluser]Unknown[/eluser]
It looks like a very promising project, good luck with your work and keep us all informed on its progress and how its use has benefited small community groups.
#85

[eluser]Référencement Google[/eluser]
[quote author="draconus" date="1260006353"]Therefor I assume that the function is damaged in some way.

Code:
function _encrypt($str, $data)
    {
        // Get the Access lib config file
        include(APPPATH.'config/access.php');
    
        $hash = sha1($data['username'] . $data['join_date']);
        $key = sha1($config['encrypt_key'] . $hash);

        return base64_encode(mcrypt_encrypt(MCRYPT_BLOWFISH, substr($key, 0, 56), $str, MCRYPT_MODE_CFB, substr($config['encrypt_key'], 0, 8)));
    }
[/quote]

Make sure your server support the mcrypt extension.
#86

[eluser]2think[/eluser]
Michel-ange & Too Pixel,

Thanks for what looks like a very good CMS. Quick question, is it possible to use it similar to regular Codeigniter? In other words, can we setup our own model, controller, view(s) and call them as we would using Codeigniter or is there some type of front-controller you have and can we override that?

Sorry if this is addressed in the manual but haven't seen it in the online or the PDF manual.

Thanks again for the hardwork and sharing.
#87

[eluser]Référencement Google[/eluser]
[quote author="2think" date="1260049199"]Can we setup our own model, controller, view(s) and call them as we would using Codeigniter or is there some type of front-controller you have and can we override that?[/quote]

The best on Ionize is that yes, you can continue to use CodeIgniter as you want, btw once you've tasted the way Ionize work and once you get that "Yes! moment", you won't want to use it the CI way but the Ionize way Wink
#88

[eluser]draconus[/eluser]
Oh, Jesus, i forgot that my new test server didn't hae any add in libraries. *facepalm* Thanks, that fixed it for the install portion. The install completed successfulyl and gave me a link tot he site and to the admin. I deleted the install folder and went to the main page of the site. Now i would assume since I opted for it to install the test data that i should have a working test site at this point, but the page comes up as blank.

Same for admin.

Please help.

My htacess file is as follows:
Code:
RewriteEngine On
#RewriteBase /

RewriteCond $1 !^(index\.php|themes|install|files|robots\.txt)
RewriteRule ^(.*)$ index.php?/$1 [L]
#89

[eluser]Michel-Ange[/eluser]
Think you have troubles with your test server.
Could you check if you have mod_rewrite ?

My answer could look stupid, but I don't know how is installed your test server, so it is difficult to find out a solution.

Admin part never displays a blank page.
#90

[eluser]draconus[/eluser]
I have snow leopard and am using the built in php and apache. I do in fact have mod_rewrite enabled.




Theme © iAndrew 2016 - Forum software by © MyBB