Topic: If you're having problems installing Open Blog Open Blog 1.2.1
I've run into a couple of problems with the latest install, and here are a few things that might help you during the install:
If you run into problems in Step 2 of the installation where the form is incomplete and stops at the SEO portion, please do the following and rerun the installation:
Find the following code in ./install/pages/install/step_2.php, on line 39:
<td><input type="checkbox" name="enable_seo_urls" value="1" id="enable_seo_urls" class="styled" <?php echo (get_mod_rewrite_status()) ? 'checked="checked"' : ''; ?> /> (choose this if your web server has mod_rewrite module enabled)</td>
Replace it with:
<td><input type="checkbox" name="enable_seo_urls" value="1" id="enable_seo_urls" class="styled" /> (choose this if your web server has mod_rewrite module enabled)</td>
Please rerun the installation which now should have a complete for and will be able to go through all the steps.
If you have installed the system and the rewrite rules are working, but you're unable to login or register a ueser, please do the following:
Find the following line in ./application/config/config.php, on line 26:
$config['index_page'] = "";
Change it to:
$config['index_page'] = "index.php";
AFTER this, find the following line in ./application/config/config.php, on line 151:
$config['enable_query_strings'] = FALSE;
Change it to:
$config['enable_query_strings'] = TRUE;
Once you've done this, please clear your cache and cookies and refresh the page. You should be able to login without further issue as well as register accounts.
Just trying to make the world a better place once <?php ?> at a time.