Plugin could not be deleted due to an error: Unable to locate WordPress Plugin directory
Create separate FTP user for WordPress and set your installation directory as FTP root. Or try to change it for existing user.
Create separate FTP user for WordPress and set your installation directory as FTP root. Or try to change it for existing user.
There’s a tutorial for this exact functionality: https://facetwp.com/proximity-facet-show-post-distance/ The proximity facet is now built into FacetWP core. This tutorial requires at least FacetWP 2.2.7 and Listify 1.0.7. Please upgrade if you haven’t already.
Technically, it’s possible. And it works. You could have a PHP site on a sub-directory like example.com/shop. But, a better practice is to host that PHP site on a sub-domain like shop.example.com. It helps in better maintenance and provides a better structure for organizing the site. On a Nginx server, your config should be something … Read more
Well it depends what is suitable for you, as you said : I’ve added in two WordPress installs in subdirectories, one being a blog page and another being an eCommerce site and now you want to make your static site dynamic with WordPress, you have options, either you can merge all your sites in one … Read more
If they’re important you could take a look at Must-use plugins. They can’t be disabled from the backend.
(Update to answer: 05.27.15) What finally worked is using ABSPATH: $folderPath = “/jobtracking/files/standard/{$projID}”; mkdir(ABSPATH.$folderPath, 0755, true); $filename = basename($_FILES[‘Attach_Files’][‘name’]); $filetype = $_FILES[‘Attach_Files’][‘type’]; $datei = “files/standard/{$projID}/{$filename}”; $target_path = ABSPATH.$folderPath . “https://wordpress.stackexchange.com/” . $filename; if(move_uploaded_file($_FILES[‘Attach_Files’][‘tmp_name’], $target_path)) { mysql_query(“INSERT INTO files (files.name, files.project, files.user, files.added, files.datei, files.type, files.folder, files.visible) VALUES(‘{$filename}’, ‘{$projID}’, 5, UNIX_TIMESTAMP(now()), ‘{$datei}’, ‘{$filetype}’, 0, ‘ ‘)”); … Read more
yes, It is Possible. Create a New folder in your Web-directory like /shop and Install wordpress in there. Thanks
The Media library doesn’t directly pull from the uploads folder. It reads in Attachments, which place their attached media in the uploads folder. If you want to access them through WordPress, you will need to upload them as Attachments.
Ok, figured it out: my first pull from svn was not successful, on second try, the directories are there.
You can try this code define(‘UPLOADS’,”)and also unclick Organize my uploads into month- and year-based folders from media settings.