Wow, you seem to be on top of this. I don’t remember ever seeing someone patch a script so quickly. Also, I noticed that you used the same <dl> setup for your views - did you get that idea from me?
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
December 01, 2008 6:14am
Subscribe [160]#211 / Dec 20, 2008 1:00pm
Wow, you seem to be on top of this. I don’t remember ever seeing someone patch a script so quickly. Also, I noticed that you used the same <dl> setup for your views - did you get that idea from me?
#212 / Dec 20, 2008 3:10pm
To upgrade from 1.0.3 to 1.0.5 do I simply just replace permissions and user_temp files?
#213 / Dec 20, 2008 8:54pm
dexcell:
I just checked ChangeLog and it says that you (also) “Moved system/plugins to application/plugins.”.
But, I don’t have any plugins directory in applications folder.
Does it need to be created or should it already be there? I will create it but just wondering if it should already be there
#214 / Dec 20, 2008 10:02pm
To upgrade from 1.0.3 to 1.0.5 do I simply just replace permissions and user_temp files?
No, from 1.0.3 you also need to update the DX_Auth.php and view files
#215 / Dec 20, 2008 10:04pm
http://ellislab.com/codeigniter/user-guide/general/plugins.html
You can create a plugin folder in /application.
#216 / Dec 20, 2008 10:05pm
dexcell:
I just checked ChangeLog and it says that you (also) “Moved system/plugins to application/plugins.”.
But, I don’t have any plugins directory in applications folder.
Does it need to be created or should it already be there? I will create it but just wondering if it should already be there
Yes, you need to create plugins directory.
But, actually it doesn’t really matter, you can leave it in system/plugins if you want to.
#217 / Dec 20, 2008 10:08pm
Wow, you seem to be on top of this. I don’t remember ever seeing someone patch a script so quickly. Also, I noticed that you used the same <dl> setup for your views - did you get that idea from me?
Thanks 😊
It was from CL Auth 😊
#218 / Dec 20, 2008 11:24pm
It was from CL Auth 😊
Hmmm… I wonder if CL Auth got it from me. 😉
#219 / Dec 21, 2008 1:29am
It was from CL Auth 😊
Hmmm… I wonder if CL Auth got it from me. 😉
lol :D
#220 / Dec 21, 2008 6:59am
Hi guys, in DX_Auth.php line 385, I forgot to uncomment the line when trying something.
Change this
//if ($auto = $this->ci->input->cookie($this->ci->config->item('DX_autologin_cookie_name')) AND ! $this->ci->session->userdata('DX_logged_in'))
if ($auto = $this->ci->input->cookie($this->ci->config->item('DX_autologin_cookie_name')))to
if ($auto = $this->ci->input->cookie($this->ci->config->item('DX_autologin_cookie_name')) AND ! $this->ci->session->userdata('DX_logged_in'))Anyway, i uploaded the fixed one.
#221 / Dec 21, 2008 9:08am
I have installed dx_auth as per instructions and my captcha image is not appearing. I have checked that gd library is installed and double checked the directories listed in the guide. What could be wrong? I am not getting the image missing box, i dont get any <img
#222 / Dec 21, 2008 10:57am
I have installed dx_auth as per instructions and my captcha image is not appearing. I have checked that gd library is installed and double checked the directories listed in the guide. What could be wrong? I am not getting the image missing box, i dont get any img
edit your .htaccess file 😉
RewriteCond $1 !^(index\.php|css|img|js|captcha)
#223 / Dec 21, 2008 10:59am
Edit it to what?
this is what it currently contains:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|img|images|css|js|captcha|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ index.php/$1 [L]
#224 / Dec 21, 2008 11:01am
Edit it to what?
this is what it currently contains:RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|img|images|css|js|captcha|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ index.php/$1 [L]
I added
RewriteCond $1 !^(index\.php|css|img|js|captcha)
...the captcha to the edit there and it started working for me…hmmm
here is my file
RewriteEngine on
RewriteCond $1 !^(index\.php|css|img|js|captcha)
RewriteRule ^(.*)$ /dx-auth-test/index.php?/$1 [L]
#225 / Dec 21, 2008 11:03am
I changed the second last line to the one you provided but it still doesn’t work.