Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I want to get files (images) in my folder on a ftp in my wordpress site.
How can i do that ?
My path to files on ftp : "/public_html/wp-content/uploads/image.png"
Thanks for the help
If you want WordPress to use the images, you'll have to upload them through the media uploadr. otherwise, you'll have images but no Database associations. I'd strongly advice against an FTP upload.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 days ago.
Improve this question
I have a manhwa website called kmanhwa.com but I have a problem. When people open my website they see original template color then they see the color that I modified from the original.
And when I had try before automatic adsense all template has changed color to the original and I cancelled the auto ads.
For me I don't know resource problem but I think that's start happening when I try to optimise the website with 10web booster and speed boster but I'm not sure.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I've been using Responsive File Manager on Codeigniter framework. It works fine for these past years. But finally found some error when uploading some .jpg files. When i upload it, it keeps processing...
**Do you know why it's error and its solution ** ? Or where can i found the error log ? If i try the jpg files on photoshop and save for web, it can be uploaded.
dialog.php - replace "//blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js" with "//cdnjs.cloudflare.com/ajax/libs/blueimp-load-image/2.18.0/load-image.all.min.js" around line 364
Check out blog https://www.responsivefilemanager.com/support.php
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
I am working on a site http://www.lemongrasshouse.com.au/ i am changing code inside /public_html/lemongrasshouse.com.au/catalog/view/theme/lemongrasshouse/template/common/footer.twig
but its not affecting the site.
Can anyone help me in this matter
Thanks
Somdeb
Have you also edited that twig file via the built in editor in Design > Theme Editor? If so, it will use that one (which is stored in the database) rather than the file itself.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I have to copy a file multiple time in a folder. I have a image in a folder with name 1.jpg. I want to copy same image(1.jpg) up to ten times and rename it with 2.jpg,3jpg and so on. Please help.
Use this:
<?php
$file = '1.jpg';
for($i=2;$i<=10;$i++)
{
copy($file, $i.'.jpg'));
}
?>
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I have thousands of files sitting in a MYSQLi database with extension .BLAH . I need to change the extension for all those files to .BLAH2 .
What would be the easiest way to accomplish this?
Many thanks for reading.
You can achieve this with a simple update set and replace.
UPDATE files set file = replace(file, 'blah', 'blah2')