Jump to content

Search the Community

Showing results for tags 'install'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to ProcessWire
    • News & Announcements
    • Showcase
    • Wishlist & Roadmap
  • Community Support
    • Getting Started
    • Tutorials
    • FAQs
    • General Support
    • API & Templates
    • Modules/Plugins
    • Themes and Profiles
    • Multi-Language Support
    • Security
    • Jobs
  • Off Topic
    • Pub
    • Dev Talk

Product Groups

  • Form Builder
  • ProFields
  • ProCache
  • ProMailer
  • Login Register Pro
  • ProDrafts
  • ListerPro
  • ProDevTools
  • Likes
  • Custom Development

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

  1. Watch this 6-minute video to learn the basics of PAGEGRID. TIPP: You can hold down [SHIFT] while dragging to change the parent of an item. More shortcuts Install options There are two ways to install PAGEGRID: Installing just the module or installing the theme. The theme is more opinionated and comes with pre installed modules to handle SEO, generate a sitemap, or display a cookie banner. If you prefer to have less dependencies, we recommend you only install the module. It’s everything you need to run PAGEGRID and verion 2.0. made it much easier to install. How to install and setup the module How to install the theme
  2. Hi, I have just installed the product and my MySQL setup is using Named Pipes. I found that the install.php had a bit of an issue with this so I made some changes. Hope these'll help somebody and maybe make it into the product. Other than the install script, the rest seemed to work fine with the named pipe. Line 218: has: if(!isset($values['dbPass'])) $values['dbPass'] = ini_get("mysqli.default_pw"); added: if(!isset($values['dbSocket'])) $values['dbSocket'] = ini_get("mysqli.default_socket"); line 233: has: $this->input('dbPort', 'DB Port', $values['dbPort'], true); added: $this->input('dbSocket', 'DB Socket', $values['dbSocket'], true); line 275: was: $fields = array('dbUser', 'dbName', 'dbPass', 'dbHost', 'dbPort'); became: $fields = array('dbUser', 'dbName', 'dbPass', 'dbHost', 'dbPort', 'dbSocket'); line 283: was: if(!$values['dbUser'] || !$values['dbName'] || !$values['dbPort']) { became: if(!$values['dbUser'] || !$values['dbName'] || !( $values['dbPort'] || $values['dbSocket']) ) { line 289: was: $mysqli = new mysqli($values['dbHost'], $values['dbUser'], $values['dbPass'], $values['dbName'], $values['dbPort']); became: $mysqli = new mysqli($values['dbHost'], $values['dbUser'], $values['dbPass'], $values['dbName'], $values['dbPort'], $values['dbSocket']); line 336: had: "\n\$config->dbPort = '$values[dbPort]';" . added: "\n\$config->dbSocket = '" . addslashes($values['dbSocket']) ."';" . This seemed to do the trick for me. Hope it helps somebody. -g
  3. I have just installed PW, with apparent success - but at the very end I got a series of error messages relating to the file Session.php: Warning: session_name(): Cannot change session name when headers already sent in /homepages/15/d465648144/htdocs/4x3/wire/core/Session.php on line 246 Warning: ini_set(): Headers already sent. You cannot change the session module's ini settings at this time in /homepages/15/d465648144/htdocs/4x3/wire/core/Session.php on line 249 Warning: ini_set(): Headers already sent. You cannot change the session module's ini settings at this time in /homepages/15/d465648144/htdocs/4x3/wire/core/Session.php on line 250 Warning: ini_set(): Headers already sent. You cannot change the session module's ini settings at this time in /homepages/15/d465648144/htdocs/4x3/wire/core/Session.php on line 251 Warning: ini_set(): Headers already sent. You cannot change the session module's ini settings at this time in /homepages/15/d465648144/htdocs/4x3/wire/core/Session.php on line 252 The home page of my site displays OK, but when I click on the nav buttons I get errors. Same when I use the admin URL. Help! Chris
  4. After forgetting the class name of the wonderful AdminPageFieldEditLinks module for what feels like the 100th time I decided I needed to give my failing memory a helping hand... Autocomplete Module Class Name Provides class name autocomplete suggestions for the "Add Module From Directory" and "Add Module From URL" fields at Modules > New. Requires ProcessWire >= v3.0.16. Screencast Installation Install the Autocomplete Module Class Name module. Configuration Add Module From Directory Choose the type of autocomplete suggestions list: "Module class names from directory" or "Custom list of module class names". The latter could be useful if you regularly install some modules and would prefer a shorter list of autocomplete suggestions. The list of class names in the modules directory is generated when the Autocomplete Module Class Name module is installed. It doesn't update automatically (because the retrieval of the class names is quite slow), but you can use the button underneath when you want to retrieve an updated list of class names from the directory. Add Module From URL If you want to see autocomplete suggestions for the "Add Module From URL" field then enter them in the following format: [autocomplete suggestion] > [module ZIP url] Example: RepeaterImages > https://github.com/Toutouwai/RepeaterImages/archive/master.zip Awesomplete options The "fuzzy search" option uses custom filter and item functions for Awesomplete so that the characters you type just have to exist in the autocomplete suggestion item and occur after preceding matches but do not need to be contiguous. Uncheck this option if you prefer the standard Awesomplete matching. Custom settings for Awesomplete can be entered in the "Awesomplete options" field if needed. See the Awesomplete documentation for more information. https://github.com/Toutouwai/AutocompleteModuleClassName https://modules.processwire.com/modules/autocomplete-module-class-name/
  5. Done quite a bit of Googling and haven't quite worked out how one would create a field of type repeater and add fields to it via the API in a module. Anyone have any links or examples?
  6. Hi, I have already tried in different ways and many times to migrate but I always have issues at the end. Here's what I have done so far: case 1: 1. Install PW on live server (all normal) 2. Import local DB into live DB 3. Front page site seems to work but I cannot login into admin page case 2 (I'm currently on this stage): 1. Copied all files from local to live server 2. Import local DB into live empty DB 3. Front page works, but any other page and admin page are 404 In both cases: - I have changed config.php info accordingly to live server (DB name, DB user and pwd, userauthsalt code) - Uncommented RewriteBase / and RewriteBase /pw/ lines on .htaccess - applied owner and group permissions to www-data for PW location - applied permissions to folders and files accordingly - applied a2enmod rewrite to apache2 on live server and restarted service I have read some posts (Ryan's too) about migration and it seems to me that I'm doing it fine, don't know what it fails- I'm on VMWare machine, Ubuntu Server 18.04, php 7.2, phpMyAdmin 5.0.1 Hope you can help me, thanks in advance
  7. Hi. I've been using Processwire for a few years now and installed it on a few different shared hosting servers without issues, but I'm now running into an issue on a Fasthosts shared server that I've not seen before. The installation goes ok and I have a working default site profile but I am unable to complete any uploads of images. It just hangs at the progress spinner during the upload. I thought it might be a priviledge issue so have temporarily set the dir / file privs. as 777 / 666 just to test that but it made no difference. I have no errors in the wire log. In server error log I have: set_time_limit() has been disabled for security reasons in ....htdocs/wire/core/ImageSizerEngine.php on line 1035 and i note in the assets/file dir. where the image is being stored the date on the file being created has a year of 1970 and 0 length. If I leave the page this file disappears and nothing has been stored. Does anyone know how I can enable set_time_limit if this is likely to be the problem? Many thanks! Paul
  8. I have been building my site in a sub folder called 'pwire' Can I move the site to my root folder, what is the best way to do it? I had a search around the forums and main site but can't find a reference for this. I figure it might be the settings in index.php in the site folder? Alex
  9. While trying to install 3.0.123, i encountered the following error: Parse error: syntax error, unexpected '[' in /home/naucom5/public_html/wire/core/FunctionsAPI.php on line 469 In cPanel, i extracted the zip file to 'public_html', which created the directory 'processwire-master', and then moved the files from 'processwire-master' to 'public_html' (which previously had 1 unrelated directory). Installation went well choosing Uikit profile, including connecting to database. Compatibility check ok (mod_rewrite error cleared after recheck), successful database connection, config.php saved, unchecked a few cleanup items, then the error message. Any suggestions appreciated.
  10. Note - I've not set this up, I'm not experienced, I'm probably omitting much relevant information as a result so this post will be a bit of a work in progress. The answer may be on the forum here - If it is I can't tell for lack of experience (I've looked). I cannot for the life of me get an install to work and I've tried a lot, and I've asked others who're also struggling but I'll try posting here before another CMS as I've heard it's nice. Info about the server : https://gist.github.com/65086fbc7b5dd03abd0f0461b9c0ec8b I'm using the `stable` version of Processwire. My `htaccess` file is working - you can test here http://rightangle.space/ and click on the admin page to see the internal server error. Here is the htaccess file https://gist.github.com/3b805b8ab3c7978aca90a6e39773da00 Here is the /etc/apache2/apache2.conf file https://gist.github.com/2b2f2518ce7df4af4739413bc967cf56 Here is the /etc/apache2/sites-enabled/000-default.conf file https://gist.github.com/400cc958ff32dfb6df80693fd8531f08 Here's the output of tree -fa /var/www/ https://gist.github.com/a3569becd9889b4b05c4f0d0a8a561d7
  11. I love the option to export fields via the CMS, and wondered about using that export data in a module. Basicly, I'd want to configure a field using the CMS and then paste it's export data in the module code as a string, or save it in a seperate file I can read from the module code. Once I have that string as a variable or file, I'd want to run the same code the import option does... but then from my module code's install method! Is that possible? It would save a lot of time configuring fields through the API.
  12. Dear all, My name is Johannes and this is the first time I'm posting something in this forum. I get following error installing Processwire 2.7 in a subfolder: exception.txt: 2017-09-14 13:37:27 ? ? Missing system template: 'permission' (in /wire/core/ProcessWire.php line 262) error.txt 2017-09-14 13:59:35 ? http://www.domain.com/?/ Error: Exception: Missing system template: 'permission' (in /data/www/www.domain.com/docfinder/wire/core/ProcessWire.php line 262) I have used "processwire-legacy-master.zip". Please see also the screenshots from the installing process: Hoster is Plusserver (formerly HostEurope) on Linux and Apache/mysql. I have tried also to install 2.8.62 but result in the same error. Any ideas? Should I try to install the most recent versin of Processwire? I have to migrate an existing page to this new server, thats why I used the version 2.7 Best Johannes
  13. Hello, I know there are a lot of installing processwire tutorials out there, but here I put mine (with images and other little things) https://dev.to/clsource/installing-processwire hope you like it
  14. Today I was looking online to see what Content Management Systems are out there when I came across ProcessWire and by far the thing that caught my eye the most was the SkyScraper Demo. Until today I'd never heard of ProcessWire but the SkyScraper demo I saw looked so similar to a number of Google Maps based ideas I've had for such a long time. For example creating a website for my local town of places to eat and things to do based on their location. I have a shared hosting company that offers cPanel and when I checked ProcessWire 3.0.61 was available. Is it possible to install ProcessWire through cPanel and then add the profile / files that make the Skyscraper Demo work? or do you have to install everything from scratch? being able to add it after installing on cPanel would be awesome, since it also automated backups, upgrades, etc. I'm very keen to play with the Sky Scraper Demo as I learn best when I have an existing demo site to edit and play with rather than starting from scratch with a totally blank website. Also are there any ProcessWire demo websites worth checking out that are similar to the SkyScraper demo, i.e. sites based on things on a Google Map?
  15. I started a fresh install of PW 3.0.36 (from composer). Went through the installation UI and got an error right after I submitted the admin ID and PWD See screenshot attached. This is the first time I've ever encountered this error message during installation. Anyone seen this before? Thx
  16. I'm not sure that I really follow this page; http://imgur.com/a/hCxqg I've created a database when setting up the server, so I'm presuming that this is what's being asked for here? The page linked for getting setup http://webdesign.tutsplus.com/tutorials/how-to-install-and-setup-processwire-cms--cms-25509 doesn't really mention anything about these fields. After trying to use the user name on the server, and the password that I entered when setting up the mySQL to start with I got the following error (so I had filled in "DB Name"={some name that I thought up }, "DB user" = {name of user on server}, "DB pass" = {pass i set up for mySQL}); http://imgur.com/a/cgFKq After this i tried using db name; {whatever} db user; {name of user on server} db pass; {password for user on server} This didn't work either, so I'm not sure what I'm meant to put here.
  17. i did a blank installation. i had to change .htaccess these were the changes: # Options -Indexes # Options +FollowSymLinks and # <IfModule mod_php5.c> # php_flag magic_quotes_gpc off # php_flag magic_quotes_sybase off # php_flag register_globals off # </IfModule> i had to comment them out but after the last step i get this error. [sat Mar 05 16:07:52 2016] [error] PHP Fatal error: Class 'InputfieldSelectMultiple' not found in /is/htdocs/wp1164483_ZCA9MSF2EZ/www/site/tmp/wire/modules/Inputfield/InputfieldAsmSelect/InputfieldAsmSelect.module on line 7, referer: http://www.*****.***/tmp/install.php
  18. What the difference between these installs/profile (default, classic, blank, beginner, site-languages)?
  19. Good day everybody. For a while a have been looking at ProcessWire, reading the forums, documentation and the beatifull sites all of you make. So yesterday I decided to download and install ProcessWire 2.6.1 master to give it a try myself. Unfortunately the install failed. This is what I did and what happened: - downloaded ProcessWire 2.6.1 and unzipped the document - copied all files with an ftp client to a subdomain of my website (double checked if all files where copied) - created a MySQL database - went in my browser (FireFox OSX and Chrome OSX) to the location of the installer, it showed the welcome page and the "Get Started" button. Pressed Get Started - The next page shows "Site Installation Profile", nothing else. - Asked my ISP to confirm if the minimum requirement for ProcessWire are met, which he confirmed. - After inspection I found the file "info.php" added after my installation trial. content of the info.php file: <?php phpinfo(); ?> Anyone and idea what might be wrong and how to solve it? To see yourself what happens, go to: http://tarapoto.mopro.nl/ Thank you, Leonarro
  20. I've a huge problem after installing updates in my processwire installation. As you can see in the screenshot, everything is labeled "array"! I'm on the "dev" git branch with theses site modules installed: - AllInOneMinify - ProcessTemplateEditor Thanks
  21. When installing ProcessWire out of the box (Softaculous), there is one minor mistake in making it truly https friendly. site/templates/_main.php - the http: has to be removed in order to load the google font accordingly to the site setup https/http. <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title><?php echo $title; ?></title> <meta name="description" content="<?php echo $page->summary; ?>" /> <link href='http://fonts.googleapis.com/css?family=Lusitana:400,700|Quattrocento:400,700' rel='stylesheet' type='text/css' /> <link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates?>styles/main.css" /> </head> Great product! Continue the brilliance.
  22. I've updated PW to 2.5 and had installed CKEditor before. Module is 1.1.9 and editor is 4.4.2. Now I have major problems using CKEditor. How can I deinstall the old module in my sites folder? Or do I have to update "InputfieldCKEditor" in my sites folder?
  23. I have created my static html front page for my website. a pretty basic one. How do I use it on PW? Do I delete files from site/templates directory? and replace it with the html/css files of my basic website? Tried to delete fields and pages in admin which comes with the default installation of PW. But I cant delete them, it says template/field cannot be deleted. Anyway, I really need to know the steps to use my own static html? Thanks for the help
  24. I have copied over the templates-admin folder into the site folder, however, my admin template never changes. Any idea what could be wrong?
  25. Hello there, I am trying to install PW 2.4 on linux webserver I can see the welcome message "Welcome. This tool will guide you through the installation process" When i click "Get started" i am taken to "/install.php" with the following error:- Error: Exception: SQLSTATE[28000] [1045] Access denied for user 'madabout'@'localhost' (using password: NO) (in /home/madabout/public_html/subdomain/wire/wire/core/ProcessWire.php line 143) This error message was shown because /install.php still exists. Error has been logged. I have looked in ProcessWire.php and it seems to me that incorrect mySQL config options have been passed in. But the install hasn't asked me for any mySQL options, and i don't know where to provide them. Could someone please help me with this error? Many thanks, West
×
×
  • Create New...