Wordpress - Integrating custom web application [closed] - php

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I was tasked to create a file upload workflow that integrates with Wordpress.
I created a backend that is called via REST that does a lot of custom workflows. Thus, I cannot use the current plugins.
It is a single page application that accepts a file as well as some metadata.
My current dilemma: I need to integrate this web application within Wordpress and have no clue where to start.

After consulting with someone who's developed with Wordpress before, he recommended to build a plugin. And since I have no experience with Wordpress, he helped me build it. It was literally 3 lines of PHP.
Thank you all.

Related

How to get starting creating a WordPress plugin? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I would like to start writing a WordPress plugin that will allow the user to play a scratch the card game (like the lottery). I would like to ask what programming language I should learn and how to get started. Is anyone with similar experiences and what are the recommendations you can offer ? Thanks in advance for your responses
For Wordpress, you would need to know basic PHP, and also how wordpress works.
For this, I suggest reading Writing a plugin for Wordpress
For the scratch card, you can make this in CSS and JS. For an example, I refer you to Canvas - Scratch Card
ยด
Like they said before, wordpress is using php. So you must learn php and how wordpress is functioning in order to be able to add stuff on your website.
You can look at simple existing plugin to help you. getting started

Is it possible to convert a Wordpress plugin to separate PHP script? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have a Wordpress booking plugin, which has a booking form frontend and dasboard. I would like to know if it's possible to convert a Wordpress plugin to separate PHP script?
Possible? Sure. Easy? Probably not.
The snag is that any WordPress plugin runs off the back of plenty of built-in WordPress functions. From low level (retrieving the site URL) to higher level (accepting inputs, saving data, etc).
If the plugin was very simple, you might try to go through it piece by piece and dissect it from the WordPress backbone that it runs on, but it would be pretty slow going. What I might try instead is use the plugin as a reference point to write your own script.

I dont want the users to log in two times from Wordpress and cakephp [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
im developing a webapp using cakephp and i want to merge it with WordPress ,is there any solution that user will only login once (i dont want the users to log in two times.)
Wordpress's codex.wordpress.org is big friend about anything related to the Wordpress system . you can import Wordpress system into your web app by looking at the following link:
Integrate wordpress with your app
Wordpress says :
In order to transform regular PHP pages into ones that utilize WordPress, you need to add either of the following code snippets to the start of each page.
<?php
define('WP_USE_THEMES', false);
require('./wp-blog-header.php');
require('/the/path/to/your/wp-blog-header.php');

Yii2 advanced structure(need another application like frontend/backend) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I've started recently working with yii2.Using the basic app is easy but what I need to do now is to create an advanced template which has more that frontend and backend.I need it to also have midend and one more compoenent(same as frontend/backend folders).I have been trying to search on the internet but I did not find anything usefull.
I would be grateful if any of you guys can help me out here.
Best regards,
Marius
Copy the backend folder to a new folder, search for "backend" in the project and replace / add a link to the new folder you have created.
There are not so many places, there is one in common/config/bootstrap.php and the rest I believe are in the new "backend" folder. Remember to change the namespaces of controllers / models etc.
I have made this recently, it is easier then you think.

Backend CMS to upload small documents on a webpage [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have a website I'm working on for a friend where he wants to update it periodically, by adding text to a website. Is there some sort of CMS that could help him do this, without him having to edit the html by hand? I've already written the html, so I don't think something like wordpress would help. But I really have no clue, I'm brand new to web dev.
I've already written the html, so I don't think something like wordpress would help.
You can easily transform your static HTML layout and pages into a WordPress theme. But there are many other CMSs out there (small ones if you only need some basic features).
For this project I would go with WordPress, it's well-documented, easy-to-use and the community is great.

Categories