-
Posts
2,318 -
Joined
-
Last visited
-
Days Won
2
Everything posted by pwired
-
Sighhh .... remembering the ? times when the internet was without government control .....
-
How are all the different drivers for all the hardware stored and made available for download ?
-
so true, I also like this one: https://teamtreehouse.com/discover
- 8 replies
-
- 1
-
-
- self improvement
- mooc
-
(and 2 more)
Tagged with:
-
The hamburger menu is not written in stone or something. You can make it work in any way you want: slide in top to down, left to right, appear in, popup, etc. etc. and thus make it adapt and functional to any web page layout.
-
Hi, Just curious about how you guys are using Fonts in Processwire ? 1. Do you use absolute paths to the font location ? That would not be handy if you have to move the website around. But on the other hand, it would not be that much work to rewrite the absolute paths. 2. Do you use relative paths to the font location ? But then you can not set the url path in the external css file and have to use inline style and use something like url(<?= $font ?>) 3. Would you use <style> </style> to declare a font family and if yes where would you do that, on a template file or a view file holding the html format ? Thanks in advance.
-
That makes me thinking about writing your own scripts that drive cPanel SSH Commands. Maybe with AutoHotKey for windows. That would be a cool way to automate and task schedule backups, down and uploads.
-
Maybe I still haven't enough websites on my shoulders to see the use of it, so I should install and evaluate it. What about scripting your cpanel over the web ? Does anyone know if there exists a scripting language for automating cpanel tasks ? I don't mean cronjobs but something like cUrl.
-
If duplicator fails there is no sweat at all. Simply upload your site folder and database. I never got it why duplicator has an advantage over manually uploading your site folder and database. The manual down and upload is compatible with all versions of processwire I also don't see any time saving when using it.
-
You are not giving us much info here so the first 3 things I can think of are these: server time out ? mysql max_allowed_packet too low ? try to downgrade the php version ?
-
Hi, If you are looking for the grid only part of Bootstrap, there is no need anymore to compile this for your self. I noticed that Bootstrap has already split up the files in the download package. In the dist folder you can find the following files: bootstrap-grid.css = 37 kb bootstrap-grid.min.css = 29 kb And here is the css to give a bootstrap container any width you want: .container{ max-width: 1300px; /* use any width for your container without less or sass */ width:100%; }
-
- 4
-
-
Hi, and welcome, You can get any image from any page with the $pages variable. Basic use is like this: $image = $pages->get('/path/to/page/')->imagefield-> Examples: $mypage = $pages->get('/path/to/mypage/'); $myimage = $mypage->images->get("name=myimage.jpg"); You can also use shorthand rules or hanna code to write more compact code More here: https://processwire.com/api/variables/pages/
-
I just wonder for how many of you this isn't any surprise ? I didn't know any better than that back-ground images are only used with <div> tags. But today I bumped into a html template where I saw highly surprised that both a <a> and a <span> tag where css configured with a background-image .info a { background: url(../images/msg-icon.png)1px 2px no-repeat; } .info span { background: url(../images/c-icon.png) 0px 0px no-repeat; } Doing so the content inside the <a> tag has an email icon on the left and the <span> tag a mobile phone icon on the left. To be honest I never saw this before in websites, tutorials, the forum, etc. so I guess this is a case where one out of habit uses css in a limited way
-
LoL but it´s good to see that processwire is increasingly being picked up
-
Looking at the source page of the surveysampling site the <li> <ul> <p> <div> tags are flying in all directions. Maybe somewhere the coder forgot to use /n
-
The CKEditor of Processwire allows for using your own html tags. You just have to go to settings in the field where you are using the CKEditor and add your tags there. You can find many posts in the forum showing how to do that.
-
Some things to check that are usually overlooked: 1. Your internet provider could have changed some settings on their side. In that case you have to reboot your router. 2. Your internet provider can have a temporary dns problem. Configure your network adapter from dynamic to a static dns, e.g. the one that google provides (8.8.8.8 and 8.8.4.4) and see what happens. Open up a cmd or terminal window and ping a few different public ip's to check your internet line. 3 Uninstalling an Anti Virus program or a vpn can leave an abandoned virtual adapter or private settings in your network adapter.
-
Not sure what you mean with automated way but the CKEditor allows for using customized css under the Source button in the menu bar. Using UIKits lightbox css there should do the trick doesn't it ?
-
Are you paying for your hosted ssl ? Here's a good and free ssl service: https://letsencrypt.org/ They also explain how to set it up.
-
The wire render pattern (by clsource) is just another example of how you can use the amazing potential of Processwire. Instead of the $viewBag you can use any other $dataBag as you see fit that not need to be updated inside _main.php Processwire now also has the region() function and fields can use a template for even more file and code organization.
-
This might help: https://processwire.com/blog/posts/august-2014-core-updates-4/#database-backup-capability-now-in-the-core https://processwire.com/blog/posts/august-2014-core-updates-4/#database-backups-module
-
Ok, thanks for the info.
-
Hi, When I install a Processwire setup I always notice a config installed inside the config.php file. Example: $config->installed = 1524137464; I actually missed what this config is fore and also do you need to adapt it´s value when you move your site folder to another Processwire setup ?
-
Has anyone noticed that Piwik has changed it´s name into Matomo ? From the matomo website:
-
Can we still make websites without the EU hunting us down ?
-
You have a backup of your website and database, right ? So, delete everything in the root and database of your Host and then do a fresh new processwire installation. That will tell you if your Host has any restrictions yes or no. As soon as you can do a fresh new processwire installation on your host, you can compare both the .htaccess and the config.php files with the ones you have in your website backup.