-
Posts
33 -
Joined
-
Last visited
Everything posted by naldrocks98
-
Hi there what do you mean "Render inline images in body and signatures (using string replacements for the image urls - prepending the site URL), also floating images are working" Currently im using wire mail as my email setup and i create an html email with images included but.. whenever i view it in microsoft outlook the image were block. is there a way to unblock the images in outlook in wiremail setup like the php mailer when using images you have to upload the images within the phpmailer folder? Thanks for the answer in advance.. Here's the Screenshot in outlook..
-
Hi guys.... Is it possible to render a hanna code inside a hanna code? for better use? thanks in advance..
-
Module Comments Manager Enhanced (proof-of-concept)
naldrocks98 replied to kongondo's topic in Modules/Plugins
-
Module Module: RuntimeMarkup Fieldtype & Inputfield
naldrocks98 replied to kongondo's topic in Modules/Plugins
you'r edit post work.. thanks by the way... LostKobrakai -
Module Module: RuntimeMarkup Fieldtype & Inputfield
naldrocks98 replied to kongondo's topic in Modules/Plugins
Also did not work on url variables... i tried this but can't get to work... Here's my url output thefilipinodoctor/search/?keyword=Supranueron -
Module Module: RuntimeMarkup Fieldtype & Inputfield
naldrocks98 replied to kongondo's topic in Modules/Plugins
Hi there? is this possible? if ($page->url=='/search/') { $title = $input->get['keyword']." "; } return $title; I cannot return the value of $input->get['keyword'] even though it exist in the url? -
Nothing happens is still saving in default location the file I saved it in site folder the name of file is ready.php i'm using Adobe dreamweaver cs5.. $this->addHookBefore('WireLog::save', function($event) { // this part turn on red.... but the changes i've made it is ok..? like wire('config')->initialLogPath = wire('config')->paths->logs; to $config->initialLogPath = $config->paths->logs;
-
Is it possible to change only the specific logs like the one i created and will not affect the other logs like error...?
-
Follow up Question: How to change the save location of logs.... The default save location is inside /site/assets/logs/ I added another folder inside /site/assets/logs/tfdencoding/
-
Thanks adrian Big help... (",)
-
Hi there, i using logs as my page hits logs, now, i want to get all the values of the created log file but it display only 100 values $items = $this->wire('log'); $items = $items->getEntries('animalabc_logs', $options); How to add " limit (integer) " Base on this https://processwire.com/api/variables/log/
-
Import images from file system using the PW API
naldrocks98 replied to seddass's topic in Getting Started
$society->removeAll(); // add this line $society->society_logo->add("http://www.thefilipinodoctor.com/medsoc_logo/".$get_soc['logo'].""); $society->save(); Thanks.. BernhardB I edit your code bec. there's an error $society->removeAll(); to $society->society_logo->removeAll(); By the way thanks to you... you solved my problem... How about file upload like doc, pdf ? -
Import images from file system using the PW API
naldrocks98 replied to seddass's topic in Getting Started
Good Day! i have a problem when using your code @ryan it duplicates the upload of image even though my field image is set only to one image.. $society->society_logo->add("http://www.thefilipinodoctor.com/medsoc_logo/accp.jpg"); $society->save(); Thanks for the advance help... -
Hi there, When Creating Pages via API in Processwire.. Is there a way to create the specific page id of the page you created not auto increment. Example: I have a existing page: page_id = 4254 I delete this page and created again the page.. it generate a new page id but i want to use the old page id 4254 in this new created page? Is this possible?.. Thanks in advance..
-
I get this error when i used the sample code for mail $mail = wireMail(); $mail->from('naldrocks98@gmail.com', 'Raynald Jan Umali'); $mail->to('enald@localhost.com'); $mail->subject('The park is open'); $mail->bodyHTML("sample"); // Add an attachment //$mail->attachment($somePage->files->first()->filename); $count = $mail->send(); what is the possible way to get fix this? thanks in advance
-
is it possible to change the location of the save file of the logs Example: i have a existing folder in logs folder i would like to create a log file inside the created folder it this possible.. /site/assets/logs/tfdencoding/ Thanks in advance? Follow Up Question: Getting the value of logs via api script...
-
nice post...great use
-
Question? Is it possible within a certain hanna code there is also a hanna code include...?
-
hi pwFoo this error i shown in my module? here's the part in the module when it becomes error public function ___install() { $fg = new Fieldgroup(); $fg->name = self::$tempUploadPage; $fg->add('title'); $fg->save(); $this->message('FormHelperExtra temp file storage Fieldgroup "' . self::$tempUploadPage . '" created.'); $t = new Template(); $t->name = self::$tempUploadPage; $t->flags = Template::flagSystem; $t->noParents = 1; $t->fieldgroup = $fg; $t->save(); $this->message('FormHelperExtra temp file storage Template "' . self::$tempUploadPage . '" created.'); $storage = new Page(); $storage->template = $this->templates->get($t); $storage->name = self::$tempUploadPage; $storage->parent = $this->pages->get('/admin/'); $storage->title = self::getModuleInfo()['title'] . 'StoragePage'; // <--- here's the error part $storage->addStatus(Page::statusHidden); $storage->save(); $this->message('FormHelperExtra temp file storage Page "' . self::$tempUploadPage . '" created.'); } Parse Error: syntax error, unexpected '[' (line 170 of D:\home\www\tfdold\public_html\animalbitecenter\site\modules\FormHelper\FormHelper\FormHelperExtra.module) This error message was shown because you are logged in as a Superuser. Error has been logged.
-
Module FrontendUser: login, logout and register users / members
naldrocks98 replied to pwFoo's topic in Modules/Plugins
it works for me... i just change all the empty(wire('session')->get('registerStep')) to $session = wire('session'); !isset($session->registerStep) there alteast 4 errors are there.... -
another question sr. cstevensjr i can't find in my module how to add the lister is this available in the pro version?