Jump to content

zoeck

Members
  • Posts

    382
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by zoeck

  1. I think you just need the permissions ? Here is also a documentation: https://processwire.com/api/user-access/permissions/ Add Members? Just use the Admin Panel!
  2. Just switch to Here ? https://developer.here.com/plans 250k transactions per month for free....
  3. Had the same problem... now i switched to the Leaflet Map Version... and im very happy with it ?
  4. Just look inside the .htaccess file in your pw root directory ? # ----------------------------------------------------------------------------------------------- # 1. Don't show directory indexes, but do follow symbolic links # 500 NOTE: Some cloud hosting companies don't allow +FollowSymLinks. # Uncomment +SymLinksifOwnerMatch and comment +FollowSymLinks if you have 500 errors. # If that doesn't resolve the error, then set it back to +FollowSymLinks. # ----------------------------------------------------------------------------------------------- Options -Indexes Options +FollowSymLinks # Options +SymLinksifOwnerMatch Just write a # before "Options +FollowSymLinks and delete the "# " from "# Options +SymLinksifOwnerMatch"
  5. Are you using the default installation of Xampp or have you set a new SQL password? Are you using the xampp root user? The message actually only says that the logon data is incorrect, or the user has no rights to access the database.
  6. Could you post which plugins you use? I am currently setting up my VS code ? Has the PHP + HTML mix problem been fixed?
  7. That's exactly what I thought when I tried the trial version... I think I will switch from Sublime to VSCode...
  8. Is there a planned release Date for the new Version with UIKit Admin Theme support? I would like to buy the module, but without UIKit support I still have to wait ?
  9. Hm, i think the MediaManager Module looks interesting... ? The Jquery File Upload Module is used by the MediaManager... i think it's perfect for my site ? (with the MediaManager Module...) /edit: oh, there's one problem, no UIKit Admin Theme support until now ? i think i have a look at the Jquery File Upload...
  10. But this is not necessarily an answer to my question ? Are you using PHPStorm (with PW)?
  11. Somebody using PHPStorm for Processwire programming ?? I am currently using Sublime Text 3 and have now taken a look at VisualStudio. Can PHPStorm do more than VSCode?
  12. Hello, everybody, I am creating a website with a picture gallery. Each gallery has its own page and a picture field (just a title field and the image field). In Picture Field, there are over 100 pictures (~200-250 pictures). Now I had to realize that Processwire is getting extremely slow here. Uploading the images (approx. 500kb per image) also takes a very long time (local web server, not online). The display after everything has been uploaded is also very slow. Is there a way to work around these problems or to make it all faster? (i already used the image zip upload function... but theres the following error: "Input variables exceeded 1000") The function "Use client-side resize when possible" is activated. I'm using the newest 3.0.108 DEV Version I hope you can help me here ?
  13. I think it's not possible, because different systems, use different salt algorithms... I think it's only possible when you hook the login, implement the login/salt system from the old system and after a successful login attempt with the old data - update the pw passwort with the entered and checked password ? (it's not so easy...)
  14. Check your "/site/config.php" file! look at the Mysql Database connection parameters, the error message say that the mysql database parameters are wrong (or your sql server config ? ) -> the sql server refuses the connection...
  15. http://cheatsheet.processwire.com/system-configuration/session/config-sessionfingerprint/ ?
  16. I don't see a newsletter field ? but normally you'll find it in /site/templates/ and there should be a "_main", "_footer" or something with the layout in it (you can use own filenames here...)
  17. Do you know the findMany() function ?? https://processwire.com/api/ref/pages/find-many/
  18. I only have the "Search Problem" when i click into the search field ?
  19. correct ? Thats my problem, you cannot remove the password field in the LoginRegister Module (and also it's not possible to remove the email adress) (only inside of the php code of the module ? )
  20. The Password is saved hashed... you cannot get it with phpmyadmin or ftp... But with the code from bernhard, you set a new password with this line: $admin->setAndSave('pass', 'yournewpassword'); And on your site, the new password should be "yournewpassword" ? Just test this password with your admin account (and change it!!!)
  21. Hi, I'm having some minor problems with my Processwire Intranet page, i created a small module to sync active directory users with Processwire (login and profile informations) via LDAP. My user profile has more information than the active directory domain, and I want the user to be able to change the informations by himself on the intranet site. At this time, i just sync the user informations inside of the page tree like this: Now the big question is how can I make it, that the user can change the profile information on this Pages? Or is it easier when i add the informations to the user profile? I already checked the "LoginRegister" Module, but there's one problem - the users are not allowed to change the password via the intranet site (the passwords are linked via LDAP). I hope you can help me ? Thanks!
  22. I use Laragon on Windows... before Laragon, i used XAMPP, but Laragon is much nicer ?
  23. Your code looks good... i think the problem is your json file, i tested it with this json Data: [ {"ID":"1","user_login":"myname","user_pass":"$P$BKVS\/30bpzejiORa9nGupsAur7g0P\/","user_nicename":"mynicename","user_email":"email@email.it","user_url":"","user_registered":"2016-07-28 16:13:39","user_activation_key":"","user_status":"0","display_name":"myname"}, {"ID":"2","user_login":"myname2","user_pass":"$P$BKVS\/30bpzejiORa9nGupsAur7g0P\/","user_nicename":"mynicename","user_email":"email@email.it","user_url":"","user_registered":"2016-07-28 16:13:39","user_activation_key":"","user_status":"0","display_name":"myname"} ] You need the Start "[" and End "]" (and no comma after the last entry! ? )
×
×
  • Create New...