Dynamo Dan
Dynamo Dan
Same here, on Ubuntu 18.04.
I answered my own question: it's not too difficult. I added some new functions in a fork, here: https://github.com/dynamodan/Export-Paper-Model-from-Blender I am still curious if anyone else has tried to do...
I also have this error on ubuntu 18.04. I do have my certificates up to date and even ran the pip install certifi command within the blender bundled python.
Thanks @diramazioni that worked for me too. It's because the python `requests` package and the `urllib.request` package look in different places, or maybe `urllib` is just lazy and doesn't look...
I still get `/usr/share/blender340/3.4/python/bin/python3.10: No module named pip` You should not have to run anything as root. This seems like basic problems with the way the addon installs and validates.
The problem is that the addon's installation script is looking for pip in blender's site packages. I installed pip there and it took away the "No module named pip" error....
Alright, this depends on some careful cooperation of the WordPressIgniter settings and CodeIgniter's config/routes.php settings. Since both WordPress and CodeIgniter each have their own 404 handling methods, they both need...
It could be a problem with output buffering. I tend to use logging to tackle this kind of problem. Can you write something to a log to see what the...
@superlaziale75 Think of CodeIgniter _always_ running even if it's not a match for the currently loading page in WordPress. It will throw its own internal 404 error on every page...
@ansmn1974 You are probably echoing the function's output. Try assigning the function's return value to the $CI_OUTPUT global variable. (Remember to say `global $CI_OUTPUT` in your function.)