Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying to use WordPress functions with php, and i'm having some troubles..

the error message says: Call to undefined method stdClass::set_prefix() in /hd2/www/WWW_BACKUP/www-lalala/blog/wp-settings.php on line 287

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
575 views
Welcome To Ask or Share your Answers For Others

1 Answer

I'm not sure why you would want to integrate the two, as Wordpress is not a development framework. I am making a BIG assumption that you really want to just have it in the same 'directory' and be able to utilize the same database?

I've seen that done before, and it involves simply sharing config files for your database (include wordpress config inside codeigniter, etc).

Just stick CI inside a folder inside your Wordpress directory:

/website/
  /ci/ (codeigniter runs inside here)
  /wp-content/
  /wp...
  ...
  index.php (wordpress)
  .htaccess (combined wordpress / ci functionality)

Then you would just duck inside the /ci folder for CI functionality and redirect back to Wordpress after.


As far as integrating with merge of CODE (ie, wordpress with CI running inside of it or vice versa) that is pointless and most would argue a waste of time.

Wordpress already offers most of the features you would want to build in CI (session tracking / database active querying / basic CRUD functionality / user management).

If all you seek is to utilize some small 'functions' in Wordpress that you get in CI, I would say focus on porting those alone.

Nothing good can come of you merging two applications together like this.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...