FAQs

Changing the main logo

The code is at /application/views/templates/headers/main_header.php around line 70

Change it similar to the code below, locate your new logo at /images/newlogo.png

<a class="navbar-brand" href="<?php echo base_url()?>"><img src="<?php echo base_url()?>images/newlogo.png" /></a>
Errors when using non-latin alphabets
Enter these queries in PhpMyAdmin :
SET collation_connection = 'utf8_general_ci'

... then for your database :
ALTER DATABASE db CHARACTER SET utf8 COLLATE utf8_general_ci
(Replace “db” by your db name)

... finally, execute these queries :
ALTER TABLE user CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE user_info CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE admin CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE pm_conv CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE pm_message CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE captcha CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;

Answer inspired from this thread on StackOverflow.
I have the error “No input file specified.”. What should I do ?

Please read and update the OKDate by following this guide. It’s a weird issue that happens sometimes with the Godaddy hosting.