Jump to content

huseyin

Members
  • Posts

    78
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by huseyin

  1. I thing it is resolved. Please test. If it is resolved you may uninstall Tracy debugger. The reason was; The "Add Page" under Admin>Pages was unpublished.
  2. Do you allow me to install the Tracy Debugger Module?
  3. Did you made any hook additions like in the 2. second message of this topic:
  4. sorry, wanted to try something and now i cant access the admin page.? at last action i changed the access option for the admin template to "No". See attached image. after this setting the admin login disappeared. Hope this can be reverted from the database.?
  5. My english knowladge is no very well. I have read your first message after and after but did not understand the problem. Either i was not able to anderstand or there is not enough information to describe the problem. Do you get any error message while you try to create page with an other user except superuser role. Any detail could help to understand the problem.
  6. In an old project i can see that i put this into find ....parent=/trash/, include=all,.... Was not able to test it. Hope it helps.
  7. In Turkey we have offically 1 covid-19 case. Today the Govermant has decided to close all schools and universities for 2 weeks. All sports events will be held without spectators. All public servants are prohibited to leave Turkey. Some kind of food is rare at the warehouses. We have not noticed any donws of our work or clients, but expecting bad for the near future.
  8. It is only an example. 1000 peojects have 250 tasks each and no one commen. The question is When i list one project with 250 tasks which approach is better for performance. 1 - have a find with parent where pool is 250 pages large Or 2 - have a find with project id page field filter where the pool is 250.000 pages large
  9. I am sure this asked already but i could not found a clear answer. Assume i have a list of 1000 Projects. Each project has 250 tasks. Should i create; 1 - 1000 project pages and a Tasks parent page with 250.000 tasks subpages (Page Field connection between projects and tasks) or 2- 1000 project pages and 250 subpages for each project page In total there will be the same amount of pages only the structure is different. Which one is better for better performance? With the first approach i would make a find request to 250000 pages with project id filter for each project With the second approach i would list only 250 subpages for each project. So it seems to be better performance with the second one. Is this right?
  10. I recieve SPAM emails with email addresses like **name**@domain.com. For such emails the the module throws error messeges and stops reading further. No emails after this SPAM are downloaded. The error shown in Tracy Debugger is like this : Unknown Selector operator: '=**' -- was your selector value properly escaped? field='email', value='DialVision**@carsvasite.us', selector: 'email=**DialVision**@carsvasite.us, sort=sort, parent_id=29, templates_id=3' (in /wire/core/Selectors.php line 419) How can i bypass this error...
  11. Hello, i have installed Frontend Edit. After this i got errors on the web page. Before the install i could call the title field like "$pageobject->title". After the install the title was rendered in an additioanl ARRAY. Now i need to call the title field like this "$pageobject->data[title]". But even with unstalling the Frontend Edit Module this error was is not corrected. I can go on and change all code but wanted to ask if somebody knows the reason for this and also a easy solution. (Sorry for my bad English)
  12. Hello, i want to build a page for product add and edit. Products have also images. Is there any way i can include the image user interface like on the backend image field. Drag drop images and editing images. Is there any complete manual for such a page. Or any module for editing with page api (not frontend editing)
  13. Is it possible to create cinema seat reservation system based on this module?
  14. Sorry @teppo, i am new here. Will learn the rules... Thank you..
  15. www.kentvitrini.com - It is a City Portal of Corlu (Turkey) , our hometown. After using TYPO3 CMS for more than 10 years for our projects, this is our first PW project. With PW less effort, less stress but much more fun. I am impressed. For Mobile Chrome Users : The site is a PWA (Progressive Web App), so it can be downloaded to the homescreen of the phone for future visits. As it is in turkish let me describe it: It has 3 main data groups - "Haberler" are News - "Firma Rehberi" is a Company Directory - "Etkinlik" are Events As there will be more and more information on the site a Live Search will help the visitors to find everything they need. For trying type "corlu" as search word, after 3 letters the search will be loading results. The Top Menu is "Mega Menu" enabled. Looks pretty good on hover On top (under the main menu) there is mix of all content. It looks like a billboard. Below are "Featured Companies" in random order, so the order of the companies changes with every load of the page. Below (Left) News Below (Left) nearest Events. And below (Sidebar) A summery of all content, Weather, pharmacy on duty. We will add Classified ads and "Who is Who" sections in near future.
  16. Thank you @David Karich, it is late night here in Turkey. Will try this tomorrow, when back at the office.
  17. I looked deeper on the page. The records i was missing after the pagination were in megamenus and these were in owlcarousel contents. This problem is probably a conflict with owlcarousel. owlcarousel has also many js variables named "pagination" May be that is stupit, but this the only thing i could see....
  18. Hello, i tried to use pagination for news entries listing. This worked as expected. But i discovered a problem. While on first page of the pagination everything is OK. After changing to page 2 other data on page are affected. Some datasets have fever amount of results, some are disappeared totaly. Is this a known beginner mistake? What do i wrong?
  19. Hello, I am working on my first PW project (this is also my first post here) We are a 5 person web design and service company in Turkey. The project is a City Portal with News, Events, Company Directory and Classified Ads. Which one of the following is better for performance? Why i am asking this : Using "pages->find" seems to me like a MySql query and using " $data->find" seems to work on already requested data and no MySql request. I dont know how this works in PW. 1-) $data = pages->find("template=news | template=events | template=directory | template=ads"); $news = $data->find("template=news"); $events= $data->find("template=events"); $directory = $data->find("template=directory"); $ads = $data->find("template=ads"); 2-) $news = pages->find("template=news"); $events = pages->find("template=events"); $directory = pages->find("template=directory"); $ads = pages->find("template=ads"); My second question; This project will cover multiple cities. The website visiter will be forced to select a city and this selection will be stored in a cookie for lates visits. The web site should only load content for the selected city Is there any tutorial for such category handling or could anyone give me a short explanation to direct me to the right path. If there is no simple general filter trick so do i need to add a city filter to any find()? Thank you.
×
×
  • Create New...