WordPress database error: [Table './ay6u3nor6dat6ba1/kn6_ayu1n9k4_5_actionscheduler_actions' is marked as crashed and last (automatic?) repair failed]
SELECT a.action_id FROM kn6_ayu1n9k4_5_actionscheduler_actions a WHERE 1=1 AND a.hook='aioseo_send_usage_data' AND a.status IN ('in-progress') ORDER BY a.scheduled_date_gmt ASC LIMIT 0, 1

WordPress database error: [Table './ay6u3nor6dat6ba1/kn6_ayu1n9k4_5_actionscheduler_actions' is marked as crashed and last (automatic?) repair failed]
SELECT a.action_id FROM kn6_ayu1n9k4_5_actionscheduler_actions a WHERE 1=1 AND a.hook='aioseo_send_usage_data' AND a.status IN ('pending') ORDER BY a.scheduled_date_gmt ASC LIMIT 0, 1

How to get base url in CodeIgniter | Loop and Break

How to get base url in CodeIgniter

To get the relative address o of your website, you have to first specify base url in application/config/config.php locate the line :

$config['base_url'] = 'localhost/myApp'; // here localhost/myApp is my base url, you can change it to www.example.com

Getting URL in Codeigniter files

echo $this->config->base_url();

and you will get base url as mentioned in config.php file

Share

You may also like...