Welcome Guest, Not a member yet? Register   Sign In
PyroCMS v0.9.7.4 - an open-source modular general purpose CMS

[eluser]jgdovin[/eluser]
K I fixed it... http://onlytechnews.com/news/2009/10/New-CMS-New-Start

Here is what I did.. /application/modules/comments/views/form.php I changed lines 33 and 34..

Origional:
Code:
$vals = array(
    'img_path'     => APPPATH.$this->settings->item('captcha_folder'),
    'img_url'     => base_url().APPPATH_URI.$this->settings->item('captcha_folder')
    );

NOW:
Code:
$vals = array(
    'img_path'     => $this->settings->item('captcha_folder'),
    'img_url'     => base_url().$this->settings->item('captcha_folder')
    );

printing out the $vars array showed that APPPATH and APPPATH_URI were adding an extra unneeded /application/

EDIT: I suppose the same could be done by removing application/ from the settings table. Maybe that is the problem, somehow that got thrown in there on one of the revisions that you arent using. Which way are you all going to go with this so that I may keep mine updated to your standards?

EDIT EDIT: Ok I tried changing the setting on the demo site that did not fix the problem. removing the APPPATH did on my server though.


Messages In This Thread
PyroCMS v0.9.7.4 - an open-source modular general purpose CMS - by El Forum - 10-09-2009, 05:43 PM



Theme © iAndrew 2016 - Forum software by © MyBB